HTML JavaScript DHTML

/*
JavaScript Bible, Fourth Edition
by Danny Goodman 
Publisher: John Wiley & Sons CopyRight 2001
ISBN: 0764533428
*/


MARQUEE Object Properties

// one function does all!
function setMARQUEEAttr(select) {
    if (document.all && document.all.myMARQUEE) {
        var choice = select.options[select.selectedIndex].value
        if (choice) {
            document.all.myMARQUEE.setAttribute(select.name, choice)
        }
    }
}



MARQUEE Object Properties






This is the MARQUEE element object
 you will be controlling.





Select a behavior: 

    
    Alternate
    Scroll
    Slide



Select a background color: 

    
    Red
    Green
    Blue
    Some Hex Triplet Value



Select a scrolling direction: 

    
    Left
    Right
    Up
    Down



Select a scroll amount: 

    
    4
    6 (Default)
    10



Select a scroll delay: 

    
    Short
    Normal
    Long