Main.mxml
资源名称:Flexi.zip [点击查看]
上传用户:szxykj
上传日期:2009-10-05
资源大小:322k
文件大小:1k
源码类别:
FlashMX/Flex源码
开发平台:
Flex
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
- xmlns:arcadiocarballares="com.arcadiocarballares.*"
- paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0" viewSourceURL="srcview/index.html">
- <mx:HBox width="100%" height="100%"
- paddingBottom="10" paddingLeft="10" paddingRight="10" paddingTop="10">
- <mx:VBox width="40%" height="150">
- <mx:HBox width="100%" height="100%" backgroundColor="#EEEEEE" horizontalAlign="center">
- <arcadiocarballares:Flexi id="myFlexi1" url="http://www.google.es"/>
- </mx:HBox>
- <mx:HBox>
- <mx:Button label="Hide" click="myFlexi1.hideIFrame()"/>
- <mx:Button label="Show" click="myFlexi1.showIFrame()"/>
- </mx:HBox>
- </mx:VBox>
- <mx:VBox width="40%" height="150">
- <mx:HBox width="100%" height="100%" backgroundColor="#EEEEEE" horizontalAlign="center">
- <arcadiocarballares:Flexi id="myFlexi2"/>
- </mx:HBox>
- <mx:HBox>
- <mx:Button label="Hide" click="myFlexi2.hideIFrame()"/>
- <mx:Button label="Show" click="myFlexi2.showIFrame()"/>
- </mx:HBox>
- </mx:VBox>
- </mx:HBox>
- </mx:Application>