simple. im loading a bunch of buttons w/ sound effects on them, and i want the buttons to appear as they load, so say i have five buttons. i assume that i make five frames and on each frame, put one more button then the last (first frame has 1 buttons, 2nd frame has two buttons, etc). whats the actionscript that basically says “if frame 2 is loaded, go to frame 2 and stop” i know this junk is easy, i just havnt had the time to learn actionscript yet.
ifFrameLoaded([scene,] frame) {
statement(s);
}
Eg.
if FrameLoaded (3) {
gotoAndPlay(3);
}
put that on frame 1, on frame 2 to put a gotoAndPlay(1); on frame 3 put the stuff to be loaded.
Although from what you wrote, your buttons would appear anyway as they load naturally through streaming.
well, in what im really doing, there is over 100 buttons all with sounds on the mouse over, so essentially what im trying to do is make a big loading bar thats made of buttons. in theory it would work, i suppose, am i wrong?