だから私はこの拡張可能なバナーを持っています。そして、すべてがそれで大丈夫です、しかし私が私たちのシステムでそれをテストしているとき、それは拡大していません。そしてここに問題があります。私たちのシステムはフローティングにこのJavaScriptを使用しているため:getURL("javascript:expandEaFloating('"+_level0.id+"')");
しかし、これはAS2であり、AS3に必要です。コードは次のとおりです。
import flash.external.ExternalInterface;
import flash.events.Event;
stop();
b1_btn.buttonMode = true;
b1_btn.addEventListener(MouseEvent.MOUSE_OVER, aBanner2);
b1_btn.addEventListener(MouseEvent.MOUSE_OVER, openBaner);
function openBaner(e:Event){
ExternalInterface.call("expandEaFloating('"+root.id+"')");
}
function aBanner2(e:Event){
this.gotoAndStop(2);
}