Jump to content

Flash


1123581321

Recommended Posts

Hi,

 

I'm using adobe flash CS4 professional, version 10.0 and was wondering how to get a still or freeze frame - whatever it is, in order to get a frame or sequence of frames to hold for a certain period. you know what i mean.. ?

 

thanks.

Link to comment
Share on other sites

  • 7 months later...

So, you want it to wait for a certain period of time?

 

It can be done using ActionScript and Timers. Try this:

 

import flash.events.TimerEvent;

stop();

var sleepTime:Timer = new Timer(5000);

sleepTime.addEventListener(TimerEvent.TIMER, moveOn);

function moveOn(event:TimerEvent) {
play();
}

 

EDIT: Sorry, didn't check the post date, didn't realise that threads so old would be on the first page...

Edited by Kookas
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.