loading in flash: help
loading in flash: help
Out of context: Reply #10
- Started
- Last post
- 18 Responses
- unfittoprint0
you could make something like:
this.createEmptyMovieClip("conte... 5);
checkLoad = function(){
if(contentMC.getBytesLoaded() == contentMC.getBytesTotal()){
clearInterval(loadLoop);
} else {
textBox.text = (contentMC.getBytesLoaded()/cont...
}
};contentMC.load("content.swf");
loadLoop = setInterval(this, "checkLoad", 30);
and like mirola said, see if you're not using unnecessary embed caracthers in your loader's text...