If you have just one crawler on the page:
Code:
marqueeInit.ar[0].direction = 'right'
will make it go to the right and:
Code:
marqueeInit.ar[0].direction = 'left'
will make it go to the left.
So you could have links like:
HTML Code:
<a href="#" onclick="marqueeInit.ar[0].direction = 'right'; return false;">></a>
and:
HTML Code:
<a href="#" onclick="marqueeInit.ar[0].direction = 'left'; return false;"><</a>
You can use images or buttons instead, and if you prefer use onmouseover instead of onclick.
As I say, this works for 1 crawler, or the first crawler. For a second crawler, change the [0] to [1], for a third to [2], and so on.
If you want more help, please include a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks