Flash animation tutorials actionscript
Use Actionscript 3.0 in Flash to script your animation frame rates to put the animation speeds under the control of the viewer.
<CODE>
test_txt.text = “FPS = “+stage.frameRate;
btn1.addEventListener(MouseEvent.CLICK, goNormal);
function goNormal(event:MouseEvent):void {
stage.frameRate = 30;
test_txt.text = “FPS = “+stage.frameRate;
}
btn2.addEventListener(MouseEvent.CLICK, goCrackhead);
function goCrackhead(event:MouseEvent):void {
stage.frameRate = 60;
test_txt.text = “FPS = “+stage.frameRate;
}
btn3.addEventListener(MouseEvent.CLICK, goBionic);
function goBionic(event:MouseEvent):void {
stage.frameRate = 90;
test_txt.text = “FPS = “+stage.frameRate;
}
Flash animation tutorial will explain to you how to use tools and make a tutorial easy way to learn and create.In this tutorial we use Adobe Flash to make interesting animation effect without using ActionScript. Some Flash animation may use only a few lines of simple.
















































[...] Create a Simple Flash Preloader using basic actionscript [...]