Flash and Forms

Status
Not open for further replies.

eddysweb

New Member
Messages
63
Reaction score
0
Points
0
hey guys

i have a little bit of a problem here, see i have a web form, you no the one, standard <form> with input boxes all that stuff, anyway i want the submit button to be a flash button, i think it can be done but i don't know anyone with enough flash knowledge to help me. So any help would be greatly appreciated.

thx, eddy
 

Thewinator

New Member
Messages
256
Reaction score
0
Points
0
That is quite easy.
Make the button in flash and give it the following code
(action script 2.0)
Code:
on(release){
	getURL("javascript:document.getElementById('yourform').submit();");
}
 

eddysweb

New Member
Messages
63
Reaction score
0
Points
0
hey

thanks, i used a little modified version of this and it works great

thx heaps, eddy
 
Status
Not open for further replies.
Top