I got a question with some script

okay…so, i have been having this issue with loading in this external swf file.

so, i did the trace thing, and this is what i got:

[quote[
_level0.whoweare.instance26.clients.pcontainer
[/quote]

i’m not quite sure i understand what this means.

i put the trace command on a button that is supposed to transition to another selection which does this:

on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “cramer2”;
pcontainer.loadMovie(“cramer2.swf”);
} else if (_root.currMovie != “cramer2”) {
if (pcontainer._currentframe >= pcontainer.midframe) {
_root.currMovie = “cramer2”;
pcontainer.play();
}
}
}

so, i’m not sure if i need to add some diffrent (lack of a better word) targets to make this bad boy work. :ninja: