ボタンをクリックしてフラッシュ水槽に魚を追加したい..このコードを試しましたが、ボタンをクリックしても魚のアニメーションがアニメーション化されません..そして、アクションスクリプト3を使用しています..
function fl_MouseClickHandler_2(event:MouseEvent):void
{
// Start your custom code
// This example code displays the words "Mouse clicked" in the Output panel.
trace("Mouse clicked");
addChild(f3);
addChild(eat) ;
addChild(hello) ;
addChild(f2) ;
addChild(f1) ;
// End your custom code
}
f1,f2,f3,eat,hello is my fishs..
これは私の無限スクロールコードです..すべての魚は別々のレイヤーにあります..各レイヤーにこのコードを入れました..インスタンス名と関数を変更するだけです.
f3.addEventListener(Event.ENTER_FRAME, fnewm);
function fnewm(evt:Event)
{
if(f3.x + f3.width <= 0) //movieclip is outside left side of stage
{
//set new position
f3.x = stage.stageWidth;
}
else
f3.x -= 5;
}