I recently upgraded to CS3 and AS3, and this is the first site i have built in flash since the upgrade.
Im not a big actionscript guy, and now im running into problems.
I have a site, and every page for the site is layed out in the main timeline.
my preloader (AS3) loads, then the first page plays until stop.
What I want to happen is when a user clicks a button, I want to play the next 15 frames, then gotoAndPlay the first frame for whichever button was clicked.
in AS2, i would do something like:
but_home.onPress = function () {
advanceFrames();
}
function advanceFrames () {
var frameNum:Number = 0;
onEnterFrame = function () {
if (frameNum <= 15) {
nextFrame();
frameNum++
}
else {
delete this.onEnterFrame;
gotoAndPlay(48);
}
}
}
but this gets me nowhere in AS3. If I change my publish settings to AS2, this seems closer to working (though its still not working right) but my preloader wont work.
where am I going wrong?