📄 box2.html
字号:
<script>// When an ActionScript function is exported with ExternalInterface.addCallback,// we can just call it as a method of the Flash object.function draw() { var flash = window.movie || document.movie; // Get Flash object return flash.drawBox(100, 100, 100, 50); // Just invoke a function on it}// These are functions Flash will call with ExternalInterface.call()function flashReady() { document.f.button.disabled = false; }function reportMouseClick(x, y) { alert("click: " + x + ", " + y); }</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -