Flash Question
- Started
- Last post
- 6 Responses
- nosaj
Is there away to change the framerate of a movie and have the items on the timeline adjust without having to do it manually?
For example, I have a bunch of linear animations made at 24FPS. I want to convert them to 30FPS but don't want to go in and have to tweak the timeline so the movie is the same length.
- Fariska0
short answer: NO
long answer: with flash cs3/as3 you can convert the animation to actionscript ant then (i guess) play with the timing.Had the same problem some week ago: and the solution was pen and paper: write down the timings and have fun
- YAYPaul0
If you are doing timeline tweening i believe the only way is via manual edits.
- nosaj0
Frig, thanks folks...
- kult0
Actionscript. ;)
- enjine0
yes, in actionscript 3.0, frameRate is a property of stage:
stage.frameRate = 31;
and that will set your movie to play at 31 fps
- right, but that will also speed up a timeline animationflashbender
- do people even read the questions here?********
- no. apparently not.enjine
- chrisRG0
you can try to work around it with the Timer class in AS3 or setInterval in AS2, look the functions and u'll get the idea
function newFPS( clip:MovieClip ){
clip.gotoAndStop(clip.nextFrame...
}var n:Number = setInterval((1000 / 30), newFPS, yourMovieClip);