They simply created a var in the mainmovie so the submovie cannot be viewed seperatly,..
To do so, create a variable in your mainmovie, like ie:
Code:
onSelfEvent (load) {
checkvar = "abcdef123"
}
then in your submovie use an if conditional to see if the var excists, like:
Code:
onSelfEvent (load) {
if(_root.checkvar != "abcdef123"){
fscommand("Quit",);
}
}
Note that this is not the best save way to protect content
cause with the proper software, the var can easily be distracted from the mainmovie.
For a more secure methode, you mite want to considder php.
