This is my first and vital post, I really need some help on this one folks. What I am trying to accomplish is use a password that will open up another swf with the correct password in the same window. I have been getting close to figuring it out but can not seem to make it work. Your help is greatly appreciated.
here is an example of what i am talking about.....
on (release, keyPress "<Enter>"){
if (password eq "warriors") {
createEmptyMovieClip("empty_mc", this.getNextHighestDepth())
empty_mc._x = 0
empty_mc._y = 0
loadMovie("home.swf","empty_mc");
}
} else if(password eq "forum"){
getURL("http://www.gmail.com");
} else if (password eq "private"){
gotoAndStop("private");
} else {
gotoAndStop("wrong");
}
}




Bookmarks