loadVariablesNum issue!
loadVariablesNum issue!
Out of context: Reply #2
- Started
- Last post
- 6 Responses
- unfittoprint0
you should use the new loadvars objects inside the loaded movie.
myVars = new loadVars()
loadVars.onLoad= function(sucess){
if(sucess){
trace("yesss!!")
}else{
trace("shit!")
}
};myVars.load("mytext.txt");
//Remember: if the loaded movie is not in the same directory as the main movie you'll have to include the path to the txt file, like:
"myText.txt" to "folder/myText.txt"