|
-
Apr 4th, 2003, 01:45 PM
#1
Thread Starter
Addicted Member
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!
-
Apr 4th, 2003, 03:02 PM
#2
Frenzied Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|