[flexcoders] Re: flashvars hate me

2008-04-02 Thread jari.huuskonen
This is what I did to use flashvars: AS for (var i:String in Application.application.parameters) { if (i=='woo') woo=Application.application.parameters[i]; } html AC_FL_RunContent( ... flashvars,'woo=jabadabaduuhistoryUrl=history.htm%3Flconid=' + lc_id + '', ... ) --- In

[flexcoders] Re: Determining if there has been any user input on a page

2007-02-01 Thread jari.huuskonen
I've done this like below. 1. In each Input field, check box, combo etc. I listen to the change event like this change=editData(event.target) 2. I've got a global variable to hold info of all changed items public var editedObjects:Array = new Array(); 3. editData function public function