flash??
flash??
- Started
- Last post
- 1 Response
- ********
I want to load external movie1 into an mc that is masked. movie2, movie3, etc is loaded on top of the previous layer.
I can't get it.
BEFORE YOU tell me to do a search on google, please make sure you understand what I'm trying to do, and that is to:
load mcs into ascending levels while they are masked.thanks.
- unfittoprint0
If you mask the mc dinamically, everytime you load something into it it will lose its mask. You'll
have to 'setmask' it again...
hmm, try something like:reMask = function(){
clearInterval(maskLoop)
maskLoop = setInterval(function(){
if (targetMC.getBytesLoaded() == targetMC.getBytesTotal() ){
targetMC.setMask(maskMC);
clearInterval(maskLoop);
};
},30);
}//and then when calling load...
targetMC.loadMovie("external.swf...
reMask();