Skip to main content
jp98610231
Known Participant
December 16, 2017
Answered

inactive buttons in test mode after fade is placed

  • December 16, 2017
  • 19 replies
  • 891 views

I have placed a fade on the time line but when I go to test mode the fade works but my buttons are no longer active.

I am using adobe animate 2017. Does anyone know of any other way I can do a transition?

    This topic is closed to new replies. Start a new post to keep the conversation going.
    Correct answer Colin Holgate

    SORRY, you now have permission.


    Your fade function is like this:

    function fl_FadeSymbolOut_3(event:Event)

    {

       movieClip_4.alpha -= 0.01;

       if(movieClip_4.alpha <= 0)

       {

           movieClip_4.removeEventListener(Event.ENTER_FRAME, fl_FadeSymbolOut_3);

       }

    }

    and I had said to make it be this:

    function fl_FadeSymbolOut_3(event:Event)

    {

       movieClip_4.alpha -= 0.01;

       if(movieClip_4.alpha <= 0)

       {

           movieClip_4.removeEventListener(Event.ENTER_FRAME, fl_FadeSymbolOut_3);

           gotoAndStop(10);

       }

    }

    19 replies

    jp98610231
    Known Participant
    December 16, 2017

    The button stays in place after fade but is not clickable

    after placing the fade and I run a test I get many error messages if I remove I have none and im able to click my button in test mode.

    im away from my computer for a few hours, tell me where I can upload file to.

    Colin Holgate
    Inspiring
    December 16, 2017

    You would use dropbox or google drive, or any other file sharing service that you have access to.

    jp98610231
    Known Participant
    December 17, 2017

    Hi who should I send file to ie, email?

    jp98610231
    Known Participant
    December 16, 2017

    IM USING ACTION SCRIPT

    and would like my mobile phone to fade out, i have created a separate button which i have placed on top, the alpha is on a rectangle which i placed over the phone to fade out and reveal the phone but when i test the button does not work but the fade does.

    Colin Holgate
    Inspiring
    December 16, 2017

    So, does the button fail before it has faded? When you do a test movie are there any errors showing in the Output panel?

    Would you be able to put the FLA online somewhere for us to try?

    Colin Holgate
    Inspiring
    December 16, 2017

    In the case of HTML5 Canvas you can't have zero alpha interactive buttons. Change the fade from 100 to 0 to be 100 to 1.