Question
Actionscript 2.0 Tutorials for FORMS
Hi Out There:
Does anyone have info on how to make forms actually work on a website? I work in Flash Professional 8 as a designer/animator, but am at a total dunce when it comes to forms. My desired fields are set up as follows (actually copied and pasted from my fields movie), and tabs great when sitting at my computer. But there it all ends.
//stops things from goofing up.
stop();
//NOTE: if buttons are components, set their actions by cliking on them and adding action script
//sets tabindexes for components
InName.tabIndex=1
InOrg.tabIndex=2
InStreetAddress.tabIndex=3
InCity.tabIndex=4
InState.tabIndex=5
InZip.tabIndex=6
InEmailAddress.tabIndex=7
InEnquiry.tabIndex=8
InSend.tabIndex=9
//the following sends the viewer to my excuse page pending the day (if ever)
//I get things working.
InSend.onRelease=function(){
gotoAndStop("excuse");
};
InCancel.onRelease=function(){
gotoAndStop("Out");
};
Does anyone have info on how to make forms actually work on a website? I work in Flash Professional 8 as a designer/animator, but am at a total dunce when it comes to forms. My desired fields are set up as follows (actually copied and pasted from my fields movie), and tabs great when sitting at my computer. But there it all ends.
//stops things from goofing up.
stop();
//NOTE: if buttons are components, set their actions by cliking on them and adding action script
//sets tabindexes for components
InName.tabIndex=1
InOrg.tabIndex=2
InStreetAddress.tabIndex=3
InCity.tabIndex=4
InState.tabIndex=5
InZip.tabIndex=6
InEmailAddress.tabIndex=7
InEnquiry.tabIndex=8
InSend.tabIndex=9
//the following sends the viewer to my excuse page pending the day (if ever)
//I get things working.
InSend.onRelease=function(){
gotoAndStop("excuse");
};
InCancel.onRelease=function(){
gotoAndStop("Out");
};