Attribute for <MARQUEE ...>
LOOP = INFINITE | number of loops

Usage Recommendation
use it if you use <MARQUEE ...>

LOOP sets how many times the marquee should loop. The default value (i.e. if you don't put a LOOP attribute at all) is INFINITE, which means that the marquee loops endlessly.

This code creates a marquee that loops twice:

this code produces this
<MARQUEE LOOP=2>
Hello
</MARQUEE>
Hello

One of the problems with LOOP is that the content disappears after the last loop. To set the marquee so that the content is visible when the looping is done set BEHAVIOR SLIDE:

this code produces this
<MARQUEE LOOP=2 BEHAVIOR=SLIDE>
Hello
</MARQUEE>
Hello





About the Author
Copyright 1997-2002 Idocs Inc. Content in this guide is offered freely to the public under the terms of the Open Content License and the Open Publication License. Contents may be redistributed or republished freely under these terms so long as credit to the original creator and contributors is maintained.