Hi,
In the body part of my indexPage I have placed a tag, <!-- Net:Marquee -->, which refers to a procedure called Marquee :-)
For my client I created a file which contains texts and the date periods when to publish them as a marquee.
They own a business which is rather season depenend. Valentines day, Mothers day, Easter, Christmas, Spring, whatever.
For every period oof the year there is a text to "marquee"
The code in the procedure, besides retrieving the right text is
packet = '<div id="wb_Marquee1" style="background-color:#FFFFFF;z-index:0;" align="left">'
packet = clip(packet) & ' <marquee direction="left" height="25" scrolldelay="90" scrollamount="6" behavior="'
packet = clip(packet) & choose(myBehaviour,'Scroll','Slide','Alternate')
packet = clip(packet) &'" loop="0" style="background-color:#FFFFFF;" id="Marquee1">'
packet = clip(packet) & '<font style="font-size:15px" color="#000000" face="Arial">'&clip(myText)&'</font></marquee></div>'
do sendPacket
You have to replace the choose(myBehaviour,... by whatever suits your purpose.
myText contains the text you want to "marquee" .
.
Hope this is what you are looking for.
Kind regards,
Rene Simons