I have three flashbuttons made in livemotion(does not support forms) which passes variables to my php script (with javascript) with a form.
What I want is when I press the flashbutton the form in my php sript is auto submitted.
Can this be done??
of course... (everything can be done!!) simply use js for that: document.your_form_name.submit() But test it on netscape and play around with it if it doesn't work well (I had some problems getting it to work in netscape...) But this solution worked in 95% of my pages...
Thanx it was just what I needed.
I entered this in livemotion as behavior and it worked great:
var js = document.form.button.value = "e-mail"; document.form.submit();
If you know it it's so simple.