(quick intro about myself) I am fairly new to ActionScript but i’d like to say i am fairly competent in php, that having been said i want to apologise for this lame request for help, I have been trying to work with the tutorial that Freddythunder posted, I must be stupid clearly but the set example he supplies doesn’t work once you compile/publish it, it doesn’t work.
i’ve been debugging the php and from my vague knowledge of flash and actionscript i added a dynamic text box to return the var that i need to handle an if instance… so the problem doesn’t lie in there. if you aren’t aware of the tutorial you can find it here.
i have come to the conclusion that the problem lays here in the ActionScript set on the first frame of the movie.
[AS]this.onEnterFrame = function() {
if(_root.checklog == 1){
_root.gotoAndStop(2);
}
if(_root.checklog == 2){
_root.gotoAndStop(3);
}
}
[/AS]
now i dont really understand what the “onEnterFrame” does and maybe that isn’t the right command to be using … i also noticed a stop(); at the very beginning of the frame… obviously this tells flash not to proceed with the movie… but would it not also stop the rest of the commands being read after it?.. I would really like to hear back with any ideas any one has… i do apologise for my ineptity.