给你的 Flash 动画增加一个 JavaScript 类,可以直接在 Flash 里面调用一些简单实用的 JavaScript 功能。(注意,Flash 文件要放在浏览器里面才可用)
JavascriptInstance = new Javascript("javascript");
Javascript instance Methods:
- setScript("javascript");
- load("url"); // 载入脚本
- run(["javascript"]);* // 运行脚本
- statusBar("string");* // 状态条文字
- windowSize(width,height);* // 窗口缩放
- windowPosition(x,y);* // 窗口定位
- windowScroll(x,y);* // 滚动窗口
- openNewWindow("url,"name","attributes");*
* 可以直接使用的(不需要创建实例)
js = new Javascript("alert('hello');");
js.run();
js.setScript("alert('world');").run();
js.statusBar("hello, I\'m your statusBar");
js.windowSize(400,400);
Javascript.windowPosition(0,30);
Javascript.windowScroll(0,200);
Javascript.openNewWindow("
http://www.ibm.com","home","width=550,height=400");
externalJS = new Javascript(); // 外部脚本
externalJS.onLoad = function(){
this.run();
}
externalJS.load("myjavascript.js"); // 运行外部脚本