Results 1 to 4 of 4

Thread: Pausing up-down message scroller with Img?

  1. #1
    Join Date
    Oct 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Pausing up-down message scroller with Img?

    Is it possible put one or plus images in "Pausing up-down message scroller"??

    http://www.dynamicdrive.com/dynamicindex2/crosstick.htm

  2. #2
    Join Date
    Oct 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    i hope the answer for your problem is YES. you can put images since it accepts <img> tags.
    simple edit this section
    Code:
    messages[0]="<font face='Arial'><a href='http://www.dynamicdrive.com'>Click here to go back to Dynamicdrive.com frontpage</a></font>"
    messages[1]="<font face='Arial'><a href='http://javascriptkit.com'>Visit JavaScriptKit for award winning JavaScript tutorials</a></font>"
    messages[2]="<font face='Arial'><a href='http://www.codingforums.com'>Get help on scripting and web development. Visit CodingForums.com!</a></font>"
    messages[3]="<font face='Arial'><a href='http://www.freewarejava.com'>Looking for Free Java applets? Visit Freewarejava.com!</a></font>"
    messages[4]="<font face='Arial'><a href='http://dynamicdrive.com/link.htm'>If you find this script useful, please click here to link back to Dynamic Drive!</a></font>"
    write like this
    Code:
    messages[0]="<font face='Arial'><a href='http://www.dynamicdrive.com'>Click here to go back to Dynamicdrive.com frontpage</a></font>"
    messages[1]="<img src=pic1.gif></img>"
    messages[2]="<img src=pic2.gif></img>"
    messages[3]="<img src=pic3.gif></img>"
    messages[4]="<img src=pic4.gif></img>"
    note:: don't use bigger images for scrolling... Max 150x105
    good luck

  3. #3
    Join Date
    Oct 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thank you so much!

    ....last thing...and to change the font colour and or bold/italic...?
    Last edited by pureandeasy; 10-18-2005 at 12:01 PM.

  4. #4
    Join Date
    Oct 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    messages[0]="<font face='Arial'><a href='http://www.dynamicdrive.com'>Click here to go back to Dynamicdrive.com frontpage</a></font>"

    to..
    messages[0]="<font face='change to other fonts'><a href='http://www.dynamicdrive.com'><i>Click here to go back to Dynamicdrive.com frontpage</i></a></font>"

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •