Rand has flash question, thanks in advance if anyone has the patience to read and answer

Out of context: Reply #1

  • Started
  • Last post
  • 4 Responses
  • unfittoprint0

    the best way is to make a symbol [thumb] that contains an empty MC [image holder, and the 'waitingMC' on top.

    you could write on the thumb MC something like:

    checkLoad = function(targetMC){
    if(targetMC.getBytesLoaded() == targetMC.getBytesTotal() && targetMC.getBytestotal >4){
    clearInterval(checkLoop);
    waitingMC._visible=false;
    target.useHandCursor=target.enab...
    }
    check = function(target){
    clearInterval(checkLoad)
    target.useHandCursor=target.enab...
    checkLoop = setInterval(this,"checkLoad", 200, target);
    }

    //start
    check(holderMC);

View thread