Input Forms in Adobe Edge Animate
hi all...
i stuck in form designed website entirely designed in adobe edge
the code form placed on stage. textboxes referred in code inside symbols. here sample:
var name = sym.getsymbol("uploadmetal").$("inputname") <--- accessing textbox inside symbol
name.html("");
inputname = $('<input />').attr({'type':'text','value':'', 'id':'name'});
inputname .css ('font-size', 12);
inputname .css ('width', 170);
inputname .css ('background-color', '#ffffff');
inputname .appendto(name);
i repeated process build input fields.
now followings cant figure out:
1 - submit data , perform form validations, there no form tag/name. should same process , create textbox , append each field form?, understand structure of html based form, wrapped <form/> tags mixed marshal arts model in edge got me confused, feel m coding jquery many buttons access css properties, still trying figure out.
2 - submit button not regular <input type=submit>, instead m using symbol act custom button, made button scratch, if build movieclips in flash. how can perform onsubmit jquery functions sending or validations then? how can tell form consider button, or click/mouse state submit form action ?
More discussions in Edge Animate CC
adobe
Comments
Post a Comment