Flash CS6 Tutorial: How to create a Flash Gallery in Actionscript 3.0

Опубликовано: 16 Июль 2026
на канале: Cr8tiveSWEET
14,627
69

///// Replace each word inside the quotation marks with the label name you assigned the frames with./////

stop()

btn1.addEventListener(MouseEvent.CLICK,play1);

function play1(event:MouseEvent):void{
gotoAndStop("peacock");
}

btn2.addEventListener(MouseEvent.CLICK,play2);

function play2(event:MouseEvent):void{
gotoAndStop("seal");

}

btn3.addEventListener(MouseEvent.CLICK,play3);

function play3(event:MouseEvent):void{
gotoAndStop("horse");

}

btn4.addEventListener(MouseEvent.CLICK,play4);

function play4(event:MouseEvent):void{
gotoAndStop("bird");

}