Editing your code manually. This is what the code would look like if you were to use two mouseover buttons. Replace the "yoursite" with your own site and the "....gif" with your own images. Replace the "yourlink' with the page or site you would like to link to - See the linking instructions above. <SCRIPT LANGUAGE="JavaScript"> <!-- Begin loadImage1 = new Image(); loadImage1.src = "http://yoursite.synthasite.com/resources/BlueOver.gif"; staticImage1 = new Image(); staticImage1.src = "http://yoursite.synthasite.com/resources/Blue.gif"; loadImage2 = new Image(); loadImage2.src = "http://yoursite.synthasite.com/resources/GoldOver.gif"; staticImage2 = new Image(); staticImage2.src = "http://yoursite.synthasite.com/resources/Gold.gif"; // End --> </script> <a href="yourlink" onmouseover="image1.src=loadImage1.src;" onmouseout="image1.src=staticImage1.src;"> <img name="image1" src="http://yoursite.synthasite.com/resources/Blue.gif" border=0></a> <a href="yourlink" onmouseover="image2.src=loadImage2.src;" onmouseout="image2.src=staticImage2.src;"> <img name="image2" src="http://yoursite.synthasite.com/resources/Gold.gif" border=0></a> If you need more than six buttons you can copy the code above and paste it into notepad and edit it as follows: (htmlbasix.com only allows you to generate the code for 6 buttons max.) If you needed say 12 buttons you would need to upload 24 images to your file manager in SynthaSite. ( 12 "static button images" and "12 mouseover button images" ) You will notice the above code is in two sections. The First section is between the <!--Begin and the //End--> The Second section is after the </script> Copy the First section 6 times (6x2=12). Number your images as follows: "....Image1", "....Image2", to "....Image12" You need to do the same wth the Second section, also numbering from "...image1" sequentially to "...image12" Your code should have the following structure: <SCRIPT LANGUAGE="JavaScript"> <!-- Begin ... Image1 ..... ... Image2 ..... ... ... ... Image12 ... // End --> </script> ... image1 ..... ... image2 ..... ... ... ... ... Image12 ... |








