as HELP!!!
- Started
- Last post
- 4 Responses
- mic
Could anyone please help with the following code:
on (release) {
if (this._parent.currMovie == undefined) {
this._parent.currMovie = "klanten";
this._parent.holder.loadMovie("k...
} else if (_parent.currMovie != "klanten") {
if (this._parent.holder._currentfra... >= holder.midframe) {
this._parent.currMovie = "klanten";
this._parent.holder.play();
this._parent.gotoAndStop(44);
}
}
}The problem is that it wont do this._parent.gotoAndStop(44); why is this?
- UndoUndo0
>= holder.midframe
where is this? relative to the position of the script? try using this.holder.midframe
- mic0
the midframe is in the loaded swf...
there is no problem with that. its just that the swf containing the "holder" mc has to gotoand stop(44)
- UndoUndo0
but this is part of yr condition. try and trace out the value of holder.midframe, if you get a result you know thats not the problem
- mic0
I think i found the problem, thanx a lot anyway!