Results 1 to 2 of 2

Thread: info in status bar???

  1. #1

    Thread Starter
    Addicted Member herpysz's Avatar
    Join Date
    Mar 2002
    Location
    Europe>Moldova>Kishinev
    Posts
    176

    info in status bar???

    hi! i need to make a runing text line in the status bar of internet explorer??? how??? in vb script.

    or just text in status bar???
    thanks!
    Next regards from Herpysz!

  2. #2
    Frenzied Member Memnoch1207's Avatar
    Join Date
    Feb 2002
    Location
    DUH, Guess...Hint: It's really hot!
    Posts
    1,861
    onMouseOver="self.status='This text goes into the status bar.'; return true;"
    onMouseOut="self.status='';"

    This is normally used for links, to give the user more information about the page they are about to visit.
    Example:
    <A HREF="nextpage.html"
    onMouseOver="self.status='This page is tremendous, click here'; return true;"
    onMouseOut="self.status='';">
    Click here to go to the next page</A>

    Example :-
    The code for this link go back a page is
    <A HREF="javascript:history.back()"
    onMouseOver="self.status='Click here to go back a page'; return true"
    onMouseOut="self.status='';">go back a page</A>

    You can also use it to put text permanently in the status bar. This page, when loaded, will display "I am not a number I am a free man!" because the <BODY> tag has this code for the onLoad event. When the mouse moves over the link, it will change. When the mouse moves off the link, the status bar is cleared.

    heres the link to the information provided above Click Here
    Last edited by Memnoch1207; Apr 4th, 2003 at 03:11 PM.
    Being educated does not make you intelligent.

    Need a weekend getaway??? Come Visit

Posting Permissions

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



Click Here to Expand Forum to Full Width