Jump to content
xisto Community
Sign in to follow this  
warbird1405241485

Help With Interactive Button someone know how to make such a button..

Recommended Posts

I think this is for a web-page?? In that case you should do it this way:

First of all you have to make to buttons, almost looking the same, but with another text or background color. Do this with any kind of program. (I suggest Adobe Photoshop). Then do the following:

Put this code in the header of the html-file:

button1_up = new Image();button1_up.src="images/button1_up.gif"button1_down = new Image();button1_down.src = "images/button1_down.gif"


And this code on the place you want to have the button in the <body>:

<a href="link.htm"     onMouseOver = document.images["link"].src="images/button1_down.gif";     onMouseOut = document.images["link"].src="images/button1_up.gif";><img src="images/button1_up.gif" border = 0 name = "link"></a>

Share this post


Link to post
Share on other sites

If u're using frontpage its a piece of cake...Just go to Insert-> Interactive Buttons and choose from a variety of options. If u want to use your own image, then u'll have to use its inbuilt DHTML editor which will allow you to change what happens when a person:-a) places the cursor over the button:) clicks the buttonU will have to define all the custom images yourself. 1. First enable the DHTML view toolbar in frontpage.2. Then select the button and choose the option you require i.e. Mouse Hover, Mouse Click. 3. In actions choose the one that lets you change the image(Forgot exact name though) and specify the file(s).If u still face any problems...then reply.Hope i was helpful.

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.