How Do I Edit Music

Started by: 270 | Replies: 4 | Views: 388

270

Posts: 643
Joined: Oct 2012
Rep: 10

View Profile
Mar 21, 2013 7:57 PM #921747
Well how would i make music start at like 11 seconds in flash not another program.
Imada
2

Posts: 1,518
Joined: Aug 2012
Rep: 10

View Profile
Mar 21, 2013 8:46 PM #921789
Sorry, I dont think you can. Why not in another program?
Zed
2

Posts: 11,572
Joined: Feb 2009
Rep: 10

View Profile
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.
Camila
2

Posts: 10,258
Joined: Feb 2012
Rep: 10

View Profile
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)
270

Posts: 643
Joined: Oct 2012
Rep: 10

View Profile
Mar 22, 2013 1:38 AM #922066
thanks :)