Interactive InDesign Fade in/out buttons work only once in the SWF file

I have an animation sequence with a release button with fade effect to scroll on a chart image overlays. I used a trick of forum of ceating a rectangle empty, the box and the picture, stating the Group fade, and then I assign to the out button. This all works fine except when you click on the sequence of keys and the content that the Fade In button work even more, you can call the fade out as many times as you want. Definition of the animation loop or play more than once does not work. I thought it was a question of order or a layer group or maybe I need some kind of Reset button? Ideas for a software fix or work around?

The only problem is that we are talking about CS6. There is no 'Animation' and ' Options: Reverse ' buttons in CS6.

Tags: InDesign

Similar Questions

  • Buttons work only once or twice

    Hi guys, I'm still new to Flash and I really need help. Here is the story:

    so I do a simple digital comics right now, that shows one or two signs/pictures/drawings at a time with only 3 buttons to navigate (a next button, an exit button and a page selection button). Here is some info:

    -J' use CS6

    -J' I use simple tweenings for each photo (fade in/out, queries, etc.)

    -J' have it will publish in 2 formats, .exe and .apk for android

    -J' have 7 scenes, 1-6 for the main comic and scene 7 for the selection menu of page (within a clip)

    -I only use video clips of 2, one for the intro animation and another for page selection menu I mentioned above

    -because I'm still a noob, I always use excerpts of code (sorry)

    -J' I mostly only use these code snippets: stop at this image, click here to go to frame and to play, click here to go on stage and play.

    -for the exit button, I use this code:

    button_e.addEventListener (MouseEvent.CLICK, fl_MouseClickHandler);

    function fl_MouseClickHandler(event:MouseEvent):void

    {

    fscommand ("QUIT");

    --utiliser use for the next button, copy the following code:

    button_1.addEventListener (MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_3);

    function fl_ClickToGoToAndPlayFromFrame_3(event:MouseEvent):void

    {

    gotoAndPlay (frame number);

    }

    for the page selection button, I use this code:

    b_page.addEventListener (MouseEvent.CLICK, fl_ClickToGoToScene_40);

    function fl_ClickToGoToScene_40(event:MouseEvent):void

    {

    MovieClip (this.root) .gotoAndPlay (1, "scene 7");

    }

    Now, here's the problem:

    The page selection button worked fine initially. Then I click on the next button several times (lets say, from page 1, stage 1, I clicked the next button several times until I got to page 6, scene 2). Then I click the page selection button that opened the clip. Inside of this video clip is several buttons another, each of them takes me on different pages. For example, I clicked on a button linked to page 7 (inside the scene 2). Furthermore, the code goes like this:

    b_7.addEventListener (MouseEvent.CLICK, fl_ClickToGoToScene_3);

    function fl_ClickToGoToScene_3(event:MouseEvent):void

    {

    MovieClip (this.root) .gotoAndPlay (500, "Scène 2");

    }

    Still no problem detected. Then I continue to click the next button to read the rest of the comic strip. At this point, the page selection button (and the exit button) has stopped working. Clicked on it so many times and nothing happened. So, just like what I wrote in the title, it does only once or twice.

    Any suggestions?  (I wanted to download the .fla so you guys can take a look, but the size is too much )

    Screenshot:

    http://S25.postimg.org/azarwqvzj/screenie.jpg

    Thank you!

    put the button of your first scene on its own layer at the beginning of the stage and set its name.  extend his chronology up to the end of the scene.  test.  all the problems?

    If not, add additional keyframes in the layer of the button according to the needs of your project, making sure NOT to remove the button no keyframes.  test.  all the problems?

    If this is not the case, do the same for the other buttons in the other scenes.

    If you want your button to NOT appear in some frameworks do NOT for this key frame.  set its visible property to false or using removeChild.

  • PREVIOUS FLV Playback button works only once...

    Hi all..

    I have a FLVPlayer who plays a video and once the video is finished playing, is the BACK button. When you click the REPLAY button the movie again... Everything works fine, except the REPLAY button does work once... sense, once the film played only once and BACK button is cilcked to play again, after that the film is done playing for the 2nd time - the button does not appear... Fact, anyone has an idea on why it's perhaps? any help would be great appreciated. Thanks advance! Here is the code:

    Fl.video import. *;
    import flash.display.MovieClip;

    var myVideo:FLVPlayback = new FLVPlayback();
    var mybtn:myBtn = new myBtn();
    var staticpic:staticPic = new staticPic();
    logo: Logo of var = new Logo();

    myVideo.source = "BatterypoweredFCM.f4v";
    myVideo.skin = "SkinOverPlaySeekStop.swf";
    myVideo.skinAutoHide = true;
    myVideo.skinBackgroundColor = 000.
    myVideo.skinBackgroundAlpha =. 5;
    myVideo.width = 960;
    myVideo.height = 540;

    DropShadow
    function init() {}
    var dropShadow:DropShadowFilter = new DropShadowFilter();
    dropShadow.distance = 4;
    dropShadow.angle = 90;
    dropShadow.color = 000.
    dropShadow.alpha =.5
    dropShadow.blurX = 10;
    dropShadow.blurY = 8;

    logo.filters = new Array (dropShadow);
    }

    mybtn.x = 515;
    mybtn.y = 259;
    mybtn.Alpha =. 8;

    staticpic.x = 480;
    staticpic.y = 270;
    staticpic.Alpha =. 4;

    logo.x = 37;
    logo.y = 11;

    myVideo.addEventListener (VideoEvent.COMPLETE, completePlay);
    mybtn.addEventListener (MouseEvent.MOUSE_UP, proofreading);

    function completePlay(e:VideoEvent):void {}
    addChild (mybtn);
    addChildAt(staticpic,0);
    removeChild (myVideo);
    }

    function replay(e:MouseEvent):void {}
    addChildAt(myVideo,0);
    myVideo.play ();
    mybtn. Visible = false;
    staticpic. Visible = false;
    }

    addChildAt(myVideo,0);
    addChildAt (logo, 1);

    init();

    because you do not visible mybtn and you're never change that.  use:

    Fl.video import. *;

    import flash.display.MovieClip;

    var myVideo:FLVPlayback = new FLVPlayback();

    var mybtn:myBtn = new myBtn();

    var staticpic:staticPic = new staticPic();

    logo: Logo of var = new Logo();

    myVideo.source = "BatterypoweredFCM.f4v";

    myVideo.skin = "SkinOverPlaySeekStop.swf";

    myVideo.skinAutoHide = true;

    myVideo.skinBackgroundColor = 000.

    myVideo.skinBackgroundAlpha =. 5;

    myVideo.width = 960;

    myVideo.height = 540;

    DropShadow

    function init() {}

    var dropShadow:DropShadowFilter = new DropShadowFilter();

    dropShadow.distance = 4;

    dropShadow.angle = 90;

    dropShadow.color = 000.

    dropShadow.alpha =.5

    dropShadow.blurX = 10;

    dropShadow.blurY = 8;

    logo.filters = new Array (dropShadow);

    }

    mybtn.x = 515;

    mybtn.y = 259;

    mybtn.Alpha =. 8;

    staticpic.x = 480;

    staticpic.y = 270;

    staticpic.Alpha =. 4;

    logo.x = 37;

    logo.y = 11;

    myVideo.addEventListener (VideoEvent.COMPLETE, completePlay);

    mybtn.addEventListener (MouseEvent.MOUSE_UP, proofreading);

    function completePlay(e:VideoEvent):void {}

    addChild (mybtn);

    addChildAt(staticpic,0);

    removeChild (myVideo);

    }

    function replay(e:MouseEvent):void {}

    addChildAt(myVideo,0);

    myVideo.play ();

    removeChild (mybtn);

    removeChild (staticpic)

    }

    addChildAt(myVideo,0);

    addChildAt (logo, 1);

    init();

  • The button works only once?

    The problem:

    Play the animation, and after clicking the button once it no longer works. The button takes you to the frame labeled "shake". I want to continue to make you "shake" whenever he's in a hurry, but it's not.

    The installation program

    I have a button inside a clip - actually its 2 inside. The first MC crosses and stops on the stop(); framework and that you click on the button that sends the playback head to the section titled "shake" which plays the next MC with the same button inside. I put the button action on its own layer on the first image. The length of this sequence of buttons from the first keyframe of the action is the length of time to the other MC 2.

    The Code

    mcButton.shakeButton.addEventListener (MouseEvent.CLICK, onClick);

    function onClick(event:MouseEvent):void {}

    gotoAndPlay ("shake");

    }

    What I found

    I searched the forum/web and in all cases that I met the problem above the toggle button is not the length of the visible button or other event listeners are in conflict with it. I don't know if one of them is my question. For 1 length of the frame of my button is so much time to the MC, which is the total length of the main timeline. If TI where a conflicting event listener to turn off that button should not play at all, because the event even listeners play before it than those who play after him. If I'm scratching my head for a direction.

    Are the 2 above known issues I found the problem that I have or do you know if it's something else?

    Thanks in advance!

    The second mc is nowhere in sight when this code runs within the Framework 1.  If the code for frame 1 is supposed to aim at the second mc to assign an event listener, it cannot.  Either the mc must be moved when the code is or the code should run when the mc is.  If you get no error messages, I have to wonder why.

    Functions and variables can be shared spread along a timeline in how you allocate this layer, but the code that runs, like play(), stop() etc, addEventListener() when you enter a frame, it happens that within this framework and does not extend to other images.

    What you can do, is have the second mc start frame 1 and make it invisible in this framework and then more later to frame 33 visible Tower.  Otherwise, you must have the event listener for the second mc code down into the fabric of 33.

  • the Random var button works only not with the switch statement

    I have a button randomly on the erasure of the scene in. I'm testing button that fades in, because I have different URL according to the button it is on. Here is the code that I use, and which generates no errors... just does not work. I am unable to find the correct key, but do not work my switch statements. I don't know if it's one thing to syntax or another problem. Thank you!!

    var currentImage:MovieClip;

    var arrGrowing:Array = new Array (resume_mc, magazine_mc, suitcase_mc, monopoly_mc, superhero_mc, hat_mc,

    chair_mc, books_mc, lightbulb_mc);

    for (var i = 0; i < arrGrowing.length; i ++) {}

    arrGrowing [i] .alpha = 0;

    arrGrowing [i] .buttonMode = true;

    arrGrowing [i] .addEventListener (MouseEvent.CLICK, onButtonClick);

    }

    function initLoop (): void {}

    currentImage = arrGrowing [Math.floor (Math.random () * arrGrowing.length)];

    var exitTween:Tween = new Tween(currentImage,"alpha",Regular.easeOut,0,1,12,false);

    }

    function onButtonClick(e:MouseEvent):void {}
    switch (currentImage) {}
    case resumes:
    var url: String = "http://www.yahoo.com"; ""
    var req:URLRequest = new URLRequest (url);
    navigateToURL (req, "_self");
    break;
    }

    I don't see where CV refers to any thing implied by your code.  There is a resume_mc if that's what you're trying to test.

  • reversal cc Dreamweaver button works only once to open the page.

    I have a button in dreamweaver on this page www.binarymarketing.com and when I click it, it does the correnc thing and opens the page.

    But if I go back to the page, reload it or open it again. It does not open the page.

    The url is displayed at the bottom right, as if it is recognized, but the link does not open.

    Any information would be helpful.

    Thank you.

    Pat Hamer

    Do not use FRAMES!

    [Valid] Validation of the markup of http://www.binarymarketing.com/ - W3C Markup Validator

    Change. OK, I see what is happening.  YouTube image creates some problems.

    and your underlying code has many errors of validation in it.  Try to fix those first.

    View the results of the http://homesculptor.com/bannersvalentus/Vallandpage/indexValland-3.html - Nu Html Checker

    Nancy O.

  • all the buttons work only not on the monitor source except the space bar

    I just downloaded a trial of adobe first cc 2015 but unable to do all the regular stuff in my source window. all buttons are unresponsive except the space bar (it will play the file). I can also drag the video in the timeline, but still unable to make other edits using the buttons... any ideas anyone?

    Try this:

    Restart your computer, hold down the shift + alt key while opening the first up to the Welcome screen.

  • My button function seems to work only once

    When I say Flash back executives that the buttons stop working, in other words, the button works only once. I tried to trace to find the problem and when I say to return images it won't function.  I use the Flash CS4 actionscript 3.

    hap.addEventListener (MouseEvent.CLICK, clickFunction2);
    trace ("addEventListener worked!");
    function clickFunction2(evt:MouseEvent):void {}
    trace ("clickFunction2 worked!");
    this.gotoAndPlay (191);
    trace ("gotoAndPlay worked!");
    }

    sad.addEventListener (MouseEvent.CLICK, clickFunction3);
    trace ("addEventListener worked!");
    function clickFunction3(evt:MouseEvent):void {}
    trace ("clickFunction3 worked!");
    this.gotoAndPlay(1,"sadness");
    trace ("gotoAndPlay worked!");
    }

    ang.addEventListener (MouseEvent.CLICK, clickFunction4);
    trace ("addEventListener worked!");
    function clickFunction4(evt:MouseEvent):void {}
    trace ("clickFunction4 worked!");
    this.gotoAndPlay(1,"anger");
    trace ("gotoAndPlay worked!");
    }

    rewind.addEventListener (MouseEvent.CLICK, clickFunction5);
    trace ("addEventListener worked!");
    function clickFunction5(evt:MouseEvent):void {}
    trace ("clickFunction5 worked!");
    this.gotoAndPlay(120,"happiness");
    trace ("gotoAndPlay worked!");
    }

    your buttons probably don't exist when you edit images.

    to remedy this, do not use the timeline to eliminate your pimples.  removeChild() to remove them when you change pictures and when you return to the frame where you want your buttons to appear, use addChild().

  • Topics appear twice in the list of topics, however, each does exist only once in the project.

    Some subjects appear twice in the list of topics, but each exists only once in the project files. What are the causes for this and what can do to prevent it? I am using HR 11.0.4.291. I deleted the CPD file.

    Here is an example:

    Change in all files in a folder specific to say the first element. There may be two files in the same folder that Windows does not allow that. My guess is that the duplicates are in different folders and change the folder will help you find the original and the duplicate.

    Also open both the list of topics. Should be the red squares in it? If Yes, you have sort of a release in the source.

    Post back with what you find.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Export interactive PDF in indesign, with the animation of the edge to the SWF file?

    Hello

    I have an interactive pdf in indesign with animation, works very well when they are exported to the swf file.

    I need to use more complex animations that Indesign has, so I created some new features of Adobe Edge animate, exported save them as a file .oam and then put them in the Indesign file.

    If I use the Preview on the animation tab I see indesign animations and the edge, but if I export it to a SWF file is - this only animation to indesign working, and if I export to epub file is only the edge animation work.

    Somehow it is possible to export so that the two works of animation types. and it is possible to do it in a SWF file.

    I have Creative Cloud 2014 for both programs

    Thank you!

    NO.

  • vcbMounter works only once

    I use the following commands to mount the files from a virtual computer to back up these directories:

    vcbMounter h esx-mgmt - u secretuser - an ipaddr:file1 - r S:\secretdirectory\file1-files t file secretpassword Pei - san m

    Then the backup application creates the backup. Once the backup is complete, the following command is executed:

    vcbMounter h esx-mgmt - u secretuser secretpassword Pei - U S:\secretdirectory\file1-files

    This procedure works only once. When I run a second time, I get the following error message:

    ~ Error: did not find VM specified by ipaddr:file1 ~.

    Also vcbVmName no longer works.

    vcbVmName h esx-mgmt - u Administrator PEI s password ipaddr:file1

    No match found VMs.

    "Tip: If you are looking for a machine virtual address DNS IP/name cannot succeed if the virtual machine is turned on and running VMware Tools or is listed in the file cache VM name specified using the"

    -c"option.

    Workaround for the time being, I have found is to connect to this server from file1 and then close again. After this process, I can still make a backup.

    Any suggestions?

    Its a bug between VMware Tools and VCB. Check out this KB->http://kb.vmware.com/kb/1008709

    Dave Convery

    VMware vExpert 2009

    http://www.dailyhypervisor.com

    Prudent. We do not want to make of this.

    Bill Watterson, "Calvin and Hobbes".

  • Modules of working only once

    It has been some time now that I noticed my addons not working not not on Mozilla TO in Ubuntu. Addons are installed properly and, indeed, they appear when I use mozilla sync in other computers.

    Today I tried the suggested troubleshooting here https://support.mozilla.org/en-US/questions/982460
    It works only once. I can install my addons again, but as soon as I close firefox and reopen the addons disappear from the top bar and the customization window. Even when I try to change preferences for Ghostery I get only blank a screen so addons are absolutely not working in Ubuntu

    Note that the OP is using the developer edition (39 Firefox) and not the regular version.

    Have you checked for problems caused by one or more of the extensions that may not be fully compatible with OF?

    Create a new profile as a test to see if your profile is the source of the problem.

    See "create a profile":

    If the new profile works then you can transfer files from a profile already used in the new profile, but be careful not to copy files corrupted to avoid transporting more problems.

  • "Messenger Service, or the Net send command not working only not on the service remote computerhe.

    Messenger Service, or the Net send command not working only not on the remote computer, despite the messenger service is started "it works only if I restart the service.
    operating system is windows xp
    service pack 3

    Hi Charbel,

    Have you done a recent software or hardware changes to the system?

    This problem occurs because the Messenger service is disabled. The Messenger service must run on the destination computer to activate the NET SEND command.

    Because the service is already started, and you must restart the service, you can try to stop the service, change the startup type to automatic and start the service. Check if it helps.

    Please refer to the article to define the service as automatic:

    Programs or services that use the alerts service or the Messenger service do not work as expected after you install Windows XP Service Pack 2

    For more information, see the article:

    The NET SEND command may not work correctly on a computer that is running Windows XP Service Pack 2

    Hope the helps of information.

    Let us know if you need help with Windows related issues. We will be happy to help you.

  • Follow-up of the steps to install the hp wireless printer and it worked only once. Now he says it is "offline."

    Original title: the computer geek

    Follow-up of the steps to install the hp wireless printer and it worked only once. Now he says it is "offline." Convenience store said that it cannot solve the problem. That's happened?

    Hello

    1. What is the brand and model of the printer?
    2. don't you make changes on the computer recently before this problem?
    3. What is the full and exact error message?

    Step 1: The procedure below can help you to fix this problem.

    a. Click Start > Control Panel > printer and faxes
    b. now right-click on computer and select the printer to use online

    Step 2: Update printer drivers.

    To install new or updated printer drivers to update
    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/print_drivers_install_updatew.mspx?mfr=true

  • My account is active, but Adobe PDF Export ask me to sign up again. The system worked only once on my PC, using the Vista operating system.

    My account is active, but Adobe PDF Export ask me to sign up again. The system worked only once on my PC, using the Vista operating system.

    You must connect prove you are currently subscribed.

Maybe you are looking for