flash help

Out of context: Reply #1

  • Started
  • Last post
  • 5 Responses
  • unfittoprint0

    don't use sections.

    use a movieclip and load the different section into it....

    ....or have different section MC's on stage and use an alpha transition loop...

    something like

    changeAlpha = function(section1, section2){
    moviealpha = section1._alpha
    moviealpha+= -moviealpha/4
    section1._alpha=moviealpha
    section2._alpha= 100- section1._alpha
    }

    fade= function(section1, section2){
    clearInterval(alphaLoop)
    alphaLoop = setInterval(this, "changeAlpha", 30, section1, section2);
    }

    //a button event example...

    triggerButton.onPress= function(){
    fade(Contacts, Portfolio)
    }

View thread