You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2022/06/01 13:44:07 UTC

[GitHub] [royale-asjs] yishayw opened a new issue, #1202: States - excludeFrom ignored

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: issues-unsubscribe@royale.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [royale-asjs] yishayw closed issue #1202: States - excludeFrom ignored

Posted by GitBox <gi...@apache.org>.
yishayw closed issue #1202: States - excludeFrom ignored
URL: https://github.com/apache/royale-asjs/issues/1202


-- 
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: issues-unsubscribe@royale.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [royale-asjs] yishayw commented on issue #1202: States - excludeFrom ignored

Posted by GitBox <gi...@apache.org>.
yishayw commented on issue #1202:
URL: https://github.com/apache/royale-asjs/issues/1202#issuecomment-1144444866

   Closing this, states were referenced with the wrong case (stateB instead of StateB).


-- 
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: issues-unsubscribe@royale.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org