Staredit Network

Staredit Network -> Miscellaneous -> HTML Help?
Report, edit, etc...Posted by Oo.Slit.oO on 2005-12-24 at 22:05:32
How do you do an HTML like this...I want to have a picture, on the picture you are suppose to click on it, like a link, this is jus image maping I know how to do that, but I want a sorta...Log in box under the pic, so when the person clicks that spot on the image, it'll bring a letter or number down to the login box lookin thing.
-EXAMPLE
say its a picture of a phone, someone click on the number "1" and it would bring the number "1" down to the script box thing, the login box looking thing...? I need to learn how to do this, ahaha...If theres a tutorial on this somewhere jus post a link to it please
Report, edit, etc...Posted by Shmeeps on 2005-12-24 at 22:14:37
I would probably say to make the buttons activate a Javascript to put the numbers into it. Invision does it with smiles. I don't know the code off the top of my head, but you can probably find a good script somewhere on the internet.
Report, edit, etc...Posted by Oo.Slit.oO on 2005-12-24 at 23:17:17
yeh but invision is different..the whole image is jus the emoticon so when the whole image is click it does that...i want it so if you click a certain part of the image it will do that...
Report, edit, etc...Posted by MillenniumArmy on 2005-12-25 at 02:35:50
HTML? I'd do it with Macromedia Flash.
Report, edit, etc...Posted by Rantent on 2005-12-25 at 03:41:08
Webmonkey
Sweet Applescripts

These two sites are help.
Report, edit, etc...Posted by Syphon on 2005-12-25 at 09:46:38
Make every number a different picturea nd slice it together with javasript.
Report, edit, etc...Posted by Centreri on 2005-12-25 at 18:14:10
This is done in Javascript, as said before...
Probably something like
function WriteI()
{(input text in form);
}
I don't know the code from the top of my head, but then in the <img src="vateva"/> tag, also put the javascript 'onclick', so it will look like
<img src="I.gif" onclick="WriteI()"/>
Next Page (1)