| jsifontes18@gmail.com 2006-04-20, 6:55 pm |
| Hi, Im relatively new with flash and don't know much about actionscript
i bought a template for a website and it has a contact form on it, i
really can't figure out what to do to make it send the form to an email
address please help!
this is the code that comes standard on the button:
on (rollOver) {
gotoAndPlay("t1");
}
on (releaseOutside, rollOut) {
gotoAndPlay("t2");
}
on (release) {
_parent.t1 = "";
_parent.t2 = "";
_parent.t3 = "";
_parent.t4 = "";
_parent.t5 = "";
_parent.combs.comb1.setSelectedIndex(0);
_parent.combs.comb2.setSelectedIndex(0);
_parent.combs.comb3.setSelectedIndex(0);
_parent.combs.comb4.setSelectedIndex(0);
_parent.combs.comb5.setSelectedIndex(0);
_parent.combs.comb6.setSelectedIndex(0);
}
|