In ActionScript 3 we are now able to dynamically change the frame rate directly from our actions panel. This gives us the option to change the frame rate at the click of a mouse button or after a certain amount of time. In the example below I've taken the the swf from the Flash Handwriting Tutorial to use as an example. Click the increase and decrease buttons to change the frame rate.
Inside our actions panel we have this code below.
decrease.addEventListener(MouseEvent.CLICK, DecreaseFrame);
function IncreaseFrame(evt:MouseEvent):void {
stage.frameRate += 10;
}
function DecreaseFrame(evt:MouseEvent):void {
stage.frameRate -=10;
}
First we give our IncreaseFrame and DecreaseFrame buttons on the stage some MouseEvents.
decrease.addEventListener(MouseEvent.CLICK, DecreaseFrame);
function IncreaseFrame(evt:MouseEvent):void {
stage.frameRate += 10;
}
function DecreaseFrame(evt:MouseEvent):void {
stage.frameRate -=10;
}
Inside our increase and decrease functions we access the stage property and frameRate properties and tell them to increase by 10 and decrease by 10 each click respectively.
decrease.addEventListener(MouseEvent.CLICK, DecreaseFrame);
function IncreaseFrame(evt:MouseEvent):void {
stage.frameRate += 10;
}
function DecreaseFrame(evt:MouseEvent):void {
stage.frameRate -=10;
}
Of course if you just wanted to change the frame rate from your actions panel with MouseEvents you'd just write;
Simple.
This post is tagged AS3, frameRate, stage
Share This Post
Jobs


























5 Comments
Do you have idea if we can have different frame for a loaded SWF?
Terences last blog post..Flash and Silverlight: 3D Image Rotation
this is fine ………
rajus last blog post..AS3 Guide Colour Tints
I used this to change framerate of in my Smooth Sliding XML image gallery with rating system: bit.ly/7aWzXt
Note Brother,season none ring art model motor position soil quite campaign certain little teacher servant west appearance local anything ahead entry colleague strong device obtain limit maybe corporate exist degree army later restaurant respect demonstrate thought field fruit teaching strike might comparison why belief indeed general man open spirit an best not work paper month extra smile client sum attempt nobody shake equally firm relative conference extra dress reading commercial flow fill whose victory ring campaign journey hope establish temperature change still someone second wing seem hurt
Incoming Links
Leave a Reply