Hey all,
Just trying to do something that seems like it should be simple-
ActionScript Code:
<mx:Script>
<![CDATA[
[Bindable]
private var low:String = application.parameters.low;
/* (left out for debugging)
[Bindable]
private var high:String = application.parameters.high;
*/
ExternalInterface.call("console.log", low);
]]>
</mx:Script>
That's just in the base Application element. for some reason, I get the error:
1120:Access of undefined property low
Any ideas why? I've tried removing the [Bindable], changing it to the public variable, getting rid of the word private, everything! Something I'm just not seeing?
Many thanks
Edd