Hi I could really use some help here!!!
Your time spent here will bring you beaucoup good karma.
I have level 0 “main.swf” with an empty movie clip.
In the same folder I have “passwordPage.swf”
and “brush.swf”.
I have been able to use getURL code with the password to open my browser and load “brush.swf”. I have also been able to load movies into the empty movie clip in “main.swf”. This is not what I want, but I think it proves that the rest of the stuff was put together right.
What I want is for the password to load “brush.swf” into “main.swf” empty movie clip.
The part I think I need to replace is commented.
stop();
var externalVars = new LoadVars();
externalVars.onLoad = function() {
secretcode = this.content;
};
externalVars.load(“code.txt”);
ok_btn.onPress = function() {
if (_root.thePassword.text == _root.secretcode) {
// _root.getURL(“brush.swf”);
} else {
_root.gotoAndStop(2);
}
};
thePassword.password = true;
But wait, this is not enough. I also need to gotoAndPlay "brush.swf, scene 2 " (no sweat) then return to “brush.swf scene 1” while still in the main empty movie clip.
Thank you to whoever you are.
Colleen