The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
anyway, how do you make buttons works? for my previous websites i've only use links, they seem to have been fine until now, i'm using more HTML stuff. With the buttons so far, i've just put a kink behine it so when the buttons clicked it will go to the link, that's a pretty raw way of doing it, but I think it works (I havn't tried it yet) anyway, i'll be grateful for any help :)
Just to let you know, in the code that goes between the and tags, you can have multiple rollovers by just adding the neccessary code. For example :-
When you have the
image_out = new Image(468,60); image_out.src = 'image_out.gif';
image_over = new Image(468,60); image_over.src = 'image_over.gif';
You can add as many rollovers as you want, just by making a big list of them. Like this
image_out = new Image(468,60); image_out.src = 'image_out.gif';
image_over = new Image(468,60); image_over.src = 'image_over.gif';
imagetwo_out = new Image(468,60); imagetwo_out.src = 'imagetwo_out.gif';
imagetwo_over = new Image(468,60); imagetwo_over.src = 'imagetwo_over.gif';
imagethree_out = new Image(468,60); imagethree_out.src = 'imagethree_out.gif';
imagethree_over = new Image(468,60); imagethree_over.src = 'imagethree_over.gif';
Hope this makes sense. Oh yeah, before I forget, don't use actual numbers (1234567890) in your images when using this script because it goes all funny and the script doesn't work, just letting you know.
Put this in between your and tag
And then put this where you want your image to be in your website

This might seem a little confusing just looking at it so I'll tell you what some of it means and how to use it.
First of all, just copy the bit that goes in between the and the straight into your code. Then, you have to create two images, one that the user will see when the page loads, the "_out" image and then one that they will see when they move the mouse over, the "_over" image.
After you have done this, you will have to change all of the sizes in the code to the size of your buttons.
When you have done this, you just have to change the information in the tag to what you where you want your button to go to when clicked, and the name you want to show up when the user rollsover your button.
I hope this helps and just ask me if you have any problems with it.
yeah sorry are for links (I knew that) but I have no idea how to make these rollovers, I guess on Dreamweaver they're made for you? or a bit easier?
> I don't like javascript, can't I make a small 2 frame .gif and control it with
> an or another type of link?
Not that I know of, I think the