如何加载Ranorex Module 到你的Flash 应用
1. 启动 Adobe Flash CS3/CS4/CS5 并且打开你的应用
2. 将下列代码添加到你的ACTIONS (按F9):
1. import flash.net.URLRequest;
2. var rxloader : Loader = new Loader();
3. stage.addChild(rxloader);
4. rxloader.name = “__rxloader”;
5. rxloader.width = 0; rxloader.height = 0;
6. rxloader.load(new URLRequest(“RanorexAutomation.swf”));
3. 拷贝RanorexAutomation.swf 文件, 它在你Ranorex安装目录的Bin 目录下,到你的web服务器上 ( .swf 文件所在处)
4. 在支持的浏览器中运行你的应用 (Internet Explorer, Firefox, Chrome, Safari)
5. 如果你从本地驱动器运行你的flash应用,添加你的输出目录到flash player信任的位置,如下:
1. 打开下面的链接 http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.html#119065
2. 添加你的项目输出目录
如何加载Ranorex Module 到你的Flex/AIR 应用
1. 启动 Adobe Flex Builder 或者 Flash Builder ,并且打开你的workspace
2. 添加下列代码到你的’applicationCompleteHandler’ 函数或者初始化代码中:
对于 Flex 3:
1. var rxloader : Loader = new Loader();
2. Application.application.rawChildren.addChild(rxloader);
3. rxloader.name = “__rxloader”;
4. rxloader.width = 0; rxloader.height = 0;
5. rxloader.load(new URLRequest(“RanorexAutomation.swf”));
对于 Flex 4:
1. var rxloader : Loader = new Loader();
2. FlexGlobals.topLevelApplication.parent.addChild(rxloader);
3. rxloader.name = “__rxloader”;
4. rxloader.width = 0; rxloader.height = 0;
5. rxloader.load(new URLRequest(“RanorexAutomation.swf”));
3. 拷贝RanorexAutomation.swf 文件, 它在你Ranorex安装目录的Bin 目录下,到你的web服务器上 ( .swf 文件所在处) 或者你的AIR应用所在的地方.
4. 在支持的浏览器中运行你的应用 (Internet Explorer, Firefox, Chrome, Safari)
5. 如果你从本地驱动器运行你的flash应用,添加你的输出目录到flash player信任的位置,如下:
1. 打开下面的链接 http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.html#119065
2. 添加你的项目输出目录