I am trying to make an image viewer that will dynamicly load images based on the value of a variable ImageName. Unfortunetly, I’m having a problem loading the variable using the loadVariables function.
For some reason, my variable name ImageName is not imported until the second time through the Scene. The only code I have so far is this:
Okay, I think I may be on to something but I’m not sure.
Once I get the variable from a text file using this.loadVariables(“text.txt”); I then load ima image into an MC like this: ImageHolderMC.LoadMovie(var_from_textfile);
Now, should I be checking to see if the Movie has been loaded before prceeding further? Maybe my movie only works the second pass through because it’s not loading the image fast enough? Anyone know about this?
Yes, “ImageName” comes from the text file. ImageName is the name of a .jpg file. How would I ensure that the jpg has loaded before continuing to play the main timeline?