This are the codes to make your contents move:
Slide-in: the text slides in from the left, then stays where it is:CODE
<marquee behavior="slide" direction="left">TEXT</marquee>
Of course, you can modfy the direction...
And to modify the speed you can add the scrollamount after the direction, like this:
CODE
<marquee behavior="slide" direction="left" scrollamount="1">TEXT</marquee>
1 is the slower version, and 20 is the maximum.
Continuous scrolling, from the left:CODE
<marquee behavior="scroll" direction="left">TEXT</marquee>
Text bouncing:CODE
<marquee behavior="alternate">TEXT</marquee>
Scrolling upwards:CODE
<marquee behavior="scroll" direction="up">TEXT</marquee>
Stop the mouvement whit the mouse (click and hold the mouse down!):CODE
<marquee behavior="scroll" direction="left" onmousedown="this.stop();" onmouseup="this.start();">TEXT</marquee>
Stop the mouvement with the mouse (but without clicking!):CODE
<marquee behavior="scroll" direction="left" onmouseover="this.stop();" onmouseout="this.start();">TEXT</marquee>
If you have any problems you can always use a marquee generator, like this one:
http://www.code-generator.net/myspace/mysp...e-generator.cfmAnd to create a falling text:
http://www.quackit.com/myspace/myspace_cod...t_generator.cfm