yishayw opened a new issue, #1202: URL: https://github.com/apache/royale-asjs/issues/1202
In the following app I expect the second trace statement to fail ``` <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" applicationComplete="init()" width="100%" height="100%" currentState="stateB" xmlns:s="library://ns.apache.org/royale/spark" xmlns:mx="library://ns.apache.org/royale/mx"> <fx:Script> <![CDATA[ private function init():void { trace(currentState); trace(b2); } ]]> </fx:Script> <mx:states> <mx:State name="StateB" /> <mx:State name="StateA" /> </mx:states> <mx:Button id="b1" label="yes"/> <mx:Button id="b2" label="no" excludeFrom="stateB"/> </mx:Application> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
