Flex4.5以IFrame形式嵌入网页

 1、 首先下载flex-iframe-1.5.1.zip (可选择其他版本),下载地址:

https://github.com/flex-users/flex-iframe/downloads

解压,将IFrame.as、IFrameExternalCalls.as拷到自己的Flex工程中去,注意根据包路径修改as文件的包路径。

 

2、编写代码

<common:IFrame id="footer" source="http://localhost:8080/include/footer.jsp" width="100%"  height="100%" horizontalCenter="0" verticalCenter="0" /> 

 

注:common:IFrame,是因为IFrame.as、IFrameExternalCalls.as的包路径保存为com.xxxx.xxxx.common,然后,编写代码时,直接输入IFrame利用FlashBuilder4.5的编码提示功能自动输出出来。


注意:

a  修改两个类的包名

b  IFrame.as、IFrameExternalCalls.as类中用到

FlexGloabls.topLevelApplication只有4.5以上版本中才用到,原来的Application.application是之前版本用的,4.0之上的版本不用了。



你可能感兴趣的:(iframe,Flex)