Feb 17, 2001 #1 TMI Technical User Joined Jul 13, 2001 Messages 3 Location US I am trying to do a vbscript mouseover so that i can change an img src file to another img src file in html...how would i do this?
I am trying to do a vbscript mouseover so that i can change an img src file to another img src file in html...how would i do this?
Mar 4, 2001 #2 Duke383 Technical User Joined May 16, 2000 Messages 5 Location US TMI, I not an experience programmer, but as I have surfed the web for tips and tricks I have found a few sites the do mouseover in Javascript (http://www.inforhiway.com/javascript/index.htm, http://www.wsabstract.com, and hotwired.lycos.com/webmonkey/index.html). You can use these scripts within vbscripts and they should work. Upvote 0 Downvote
TMI, I not an experience programmer, but as I have surfed the web for tips and tricks I have found a few sites the do mouseover in Javascript (http://www.inforhiway.com/javascript/index.htm, http://www.wsabstract.com, and hotwired.lycos.com/webmonkey/index.html). You can use these scripts within vbscripts and they should work.
Jul 25, 2001 #3 TazzMann Programmer Joined Jul 25, 2001 Messages 79 Location US Try this: You actually need two functions: <script language=vbscript> function Image1_onmouseover() Image1.src = "Picture2.jpg" end function function Image1_onmouseout() Image1.src = "Picture1.jpg" end function </script> TazzMann Upvote 0 Downvote
Try this: You actually need two functions: <script language=vbscript> function Image1_onmouseover() Image1.src = "Picture2.jpg" end function function Image1_onmouseout() Image1.src = "Picture1.jpg" end function </script> TazzMann