代码之家  ›  专栏  ›  技术社区  ›  Roger Far

Flex 4停止embbedswf

  •  0
  • Roger Far  · 技术社区  · 14 年前

    我有一个Flex 4.1脚本:

    <fx:Script>
        <![CDATA[
            [Embed(source="res/swf/user.swf")]
            [Bindable]
            private var SWFClass:Class; 
    
            [Bindable]
            public var userClip:MovieClip = new SWFClass();
    
            protected function test_clickHandler(event:MouseEvent):void
            {
                trace("click");
                userClip.gotoAndPlay(1);
            }
        ]]>
    </fx:Script>
    
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:SWFLoader id="userClip1" autoLoad="true"  trustContent="true" source="{userClip}"  />
    <mx:Button id="test" click="test_clickHandler(event)" x="100" y="200"/>
    

    我做错什么了?

    1 回复  |  直到 14 年前
        1
  •  0
  •   James Ward    14 年前