-----Original Message-----
I looking to make a rollover through a link in which it
will make a picture appear on a specific point of my
choosing on the page.Can this be done with FrontPage.
Thanks
Nino
The Behaviors feature in FrontPage 2003 can do this
entirely through the GUI.
If you have an earlier version, try this:
First, switch to HTML view and add a name= attribute to
the picture you want to change. For example:
<img src="lark1.jpg" name="rovpic">
Then, add a script to your <head> section such as:
<script language="JavaScript">
var rov1 = new Image(); rov1.src = "images/lark1.jpg"
var rov2 = new Image(); rov2.src = "images/lark2.jpg"
</script>
where images/lark.jpg and images/lark2.jpg are the two
different picture versions you want.
Finally, surround the mouse-sensitive content with a
hyperlink such as the following:
<a href="javascript:;"
onmouseover="document.rovpic.src = eval('rov2.src');"
onmouseout="document.rovpic.src = eval('rov1.src');">
Your content goes here.</a>
Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------