How Do I Edit Music
Started by: 270 | Replies: 4 | Views: 388
Mar 21, 2013 7:57 PM #921747
Well how would i make music start at like 11 seconds in flash not another program.
Mar 21, 2013 8:46 PM #921789
Sorry, I dont think you can. Why not in another program?
Mar 21, 2013 9:01 PM #921801
Set your music to sync rather than stream. On the first frame of your animation add the code gotoAndPlay(132) (if you're using 12fps, or (220) if you're on 20fps, you get the idea). Then start animating on the 144th (or 220th (or whatever)) frame.
You probably need something like
On(enterFrame){
gotoAndPlay(whatever)
}
I've forgotten a lot about ActionScript.
You probably need something like
On(enterFrame){
gotoAndPlay(whatever)
}
I've forgotten a lot about ActionScript.
Mar 21, 2013 10:00 PM #921849
Is exatcly what Zed said but I don't know if yiu have to put
on(release) {
gotoAndPlay(the frame you want)
};
Instead of on(and the frame here)
on(release) {
gotoAndPlay(the frame you want)
};
Instead of on(and the frame here)
Mar 22, 2013 1:38 AM #922066
thanks :)