How could hide several areas of text caption on multiple slides at the same time?

I have a simulation of flash card whereupon entering the slide, you see a text box. When you click a button, the detailed answer is given below.

I initially put in place of the slides so that the first text box is visible and the second one (the answer) is invisible, with press button giving a command to "show" the second hidden text box.

The problem is that if a user starts again from the beginning, the responses are already showing.

I want the slides of "reset" from the beginning so that they behave in the same way they did the first time.

I tried the following:

1. in the title of the 'Actions' dialog for the slide, I changed the action appropriate 'input' to hide the text box. The problem is that it sometimes takes a while to do, and you can see the answer for the blink of an eye. Not good.

2. then, I tried an advanced action that set all the slides to hide the text box, but it only worked to the one being programmed.

I am using Captivate v5.5.

Any ideas or tips to solve this problem?

Thank you!!!

Two ideas:

  • Place a box of highest point on the upper guide layer so that it covers the areas of text for the first second or so of the slide, and then use your advanced Actions.  This means that the initial presence of flash boxes does not see because sometimes located under the highlight box.
  • Postpone your text boxes by half a second or more on the timeline.  Then during the advanced Actions work that should be hidden, the object has not yet appeared. Again not Flash.

Tags: Adobe Captivate

Similar Questions

  • Navigation pane: how to hide in a single folder and show in another at the same time?

    I have Windows 7 with the latest updates of downloadale. I need to have some application folders containg icons in a folder without the navigation pane, while having others with the pane. If I hide the pane in a folder, it is applied to all the ohters. I have tried all possible information available (property, notice, put on the page...) without success.

    Hello

    I wish to inform you that it is not possible to do this with a single folder. The navigation pane settings will affect all the files in Windows Explorer.

  • How to display multiple images at the same time in CS6?

    How to display multiple images at the same time in CS6?

    Hello

    If you go to window > reorganize you can choose from several display options. Below, I have chosen two horizontal spaces since I have two images, but you can select other options if you have more than one image.

  • How to select multiple cells at the same time?

    Hello

    How to select multiple cells at the same time? What is the keyboard shortcut?

    Thank you to.

    Flo, a french guy.

    Hold down the CMD key when you select the cells.

  • How read datalog multiple files at the same time?

    Hello friends...

    can someone help me to show how read datalog multiple files at the same time?

    Here is the example of my case.

    I have 500 files in a folder. each file contains a waveform and its setting.

    and then I want to do a card spectral these files, because these files have been saved in the order.

    the point is to know how to read these 500 files at once? I made a program to read these files, but the program can read these files in one by one. So it is very uncomfortable to read 500 files one by one. can someone help me solve this problem? Thank you. I hope you can show me the program. Thank you again...

    Hi jojo,

    Well, in the range of functions daughter, you will find a function to list the contents of the folder. This allows to get the names of all the files datalog, and then use a loop FOR to read.

    No one is obliged to provide 500 names of files manually - that's why we use a programming language to let the computer do the stupid work

  • Can I download multiple files at the same time? How?

    Can I download multiple files at the same time? How?

    Hi sday706,

    If you're referring to Acrobat.com, you can certainly.

    1. Sign in to your account on https://cloud.acrobat.com/files with your Adobe ID and password.
    2. Click the icon of the file download (the cloud and arrow icon) at the top right.
    3. Select the files you want to download. Shift-click to select contiguous files. Or Ctrl + click (Windows) or command-click (Mac OS) to click on non-contiguous files.
    4. Click on choose.

    Please let us know how it goes.

    Best,

    Sara

  • How to share the Image and the text on Facebook and Twitter at the same time?

    Hi, I made a text box enter the text and also produce the selector to choose the image.

    So I text and the imagePath.

    How to share this text and image for facebook and twitter at the same time?

    (the example is like checkin on Foursquare app for BB10)

    [* If you use the invocation sharing, I can't pick one, ex: come share on facebook]

    Thank you

    It is not currently supported.

    http://supportforums.BlackBerry.com/T5/native-development/share-text-and-photo-for-the-same-invocati...

  • How can I delete all text messages from my watch at the same time

    Can how I delete all messages at once on my Apple Watch?

    Hello

    It is not possible to delete all the messages in your Apple Watch at the same time.

    To delete messages:

    -On your watch, open messages (via the home screen, accessible via a simple press on the digital Crown) > when you view the list of conversation, by sweeping left on a conversation > tap Delete / Trash.

  • How to support multiple users at the same time?

    Hi all

    I have a Labview program that controls a parser via GPIB connector. When the user uses the software, user B must wait is made. But in fact, the parser is not very busy, when the user uses the software.

    I want A, B, C and D of the user may use the software at the same time. just as we can open several Web sites at the same time.

    How can I program the software, so that software can be opened several times? Do you have any examples?

    Thank you very much.

    Steven

    Parallel SALVATION,

    you want to use the same material in different forums at the same time? What happens if the user uses a different device as user B setting?

    There could be problems to access the port of connection (GPIB card) at the same time too...

    It's the same usual problem, you'll have to any shared resource. Instead of calling the same software several times at the same time you should make your software up-to-date with multiple users...

  • How to drag and drop multiple movieclips at the same time

    Hello world

    I'm a new actonscript 3 and adobe flash CC user and I am building an application but I have been stuck for several days. I have looked everywhere and tried everything I could think of, but I can't yet find a solution to my problem that I thought were pretty basic.

    Basically, let's say I have a rectangle and a circle on the stage. Once I did of the movieclips and assigned an instance name to each of them, I want to be able to perform a drag and drop the Rectangle so that both the rectangle and the circle become movable at the same time.

    For now, I have a mouse down events listener associated with the instance of rectangle, a method startDrag assigned to the rectangle instance and another assigned to the circle. But in this configuration, when I click on and drag the rectangle, only the circle is mobile (only the last line in the code is taken into account).

    I don't know if what I'm trying to achieve is feasible, but any help will be greatly appreciated, thank you!

    The startDrag() method can only work for one object at a time, so in your case the Treaty the last of them, designated the task.  This approach is to temporarily to plant the two objects in a container and then drag the container.

    rectangle.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag);  When I click on the rectangle

    var dragMC:MovieClip = new MovieClip();
    addChild (dragMC);

    function fl_ClickToDrag(event:MouseEvent):void

    {
    dragMC.addChild (rectangle);        move objects in the container
    dragMC.addChild (circle);
    dragMC.startDrag ();
    }

    stage.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop); When I release the mouse button

    function fl_ReleaseToDrop(event:MouseEvent):void

    {
    dragMC.stopDrag ();
    Rectangle.x += dragMC.x;         Adjust the positions of the objects to their new location
    Rectangle.y += dragMC.y;
    Circle.x += dragMC.x;
    Circle.y += dragMC.y
    addChild (rectangle);                 move back to the scene objects
    addChild (circle);
    dragMC.x = dragMC.y = 0;       reset the benchmark for the dragMC
    }

    All this stuff of repositioning in the Drop function is necessary because when you drag the container, the positions of the content are still on their original coordinates inside the container.  So when you drop them they will resume their x / y positions in their new parent, meaning they go back where they were.  Reposition them where they have been trained to take into account the change in the position of the dragMC.

  • How can I download multiple files at the same time?

    Hello

    I have a question. I send a customer a link to a location in my cloud. There are several pictures inside and I don't want him to download each of them separately. Is there a way download them all at the same time? I sent a feature request on this subject for more than a year, but it seems that there is still no solution for this. Or have I missed?

    Thanks in advance!

    mchl

    Currently the only way is to zip file and the client download this way until something changes.

  • How to open multiple photos at the same time?

    How can I keep several photos opened at the same time as the default? I have to keep opening
    "get in the window".

    You should be able to create a new workspace with your windows arranged the way you like them.

  • How to run a window of data acquisition and another pane at the same time

    Hello

    I have a main window for data acquisition and in front panel there are four Sub Vi. When the main window of data acquisition is running and at the same time if I run the Subvi - main window stops data acquisition and the secondary window starts to run. But I want to launch the window of acquisition of primary data and the pane at the same time. Please give me a solution for this...

    Thanking in advance.

    Nikhil

    Hi Nikhil,

    My explanation has answered your question. Take a look at the image as an attachment. Let us know if you have any other questions.

  • JuUST recently signed to Hotmail, virginmobile cell, how can I better my email a larger # address to send at the same time then?

    Planning of arbitrators for 3 leagues of softball. I need to be able to send an email to 12 or 13 at the same time. When I try says to check the account via cell phone. I use virginmobile which isn't on your list. If not, how can I send a large group of e-mail? I hope that will not need to come back to AOL so

    Hi JeffZook

     

    Because the problem is with Windows Live Hotmail, I would recommend checking resources specific to Microsoft Windows Live. Please visit the links below to find a community that will provide the support ask you in the right direction for Windows Hotmail related issues.

    http://windowslivehelp.com/forums.aspx?ProductID=1

     

    I hope this helps.

  • How can I move two anchor points overlapping of distinct objects at the same time?

    Please refer to the picture for clarification:Capture.JPG

    Pink and blue objects in the image are distinct forms that have the same number of vertices/inkings. The forms have been generated with ArcGIS and exported to a. File to HAVE it. I need to move the anchor points of these two forms, so that they create a trail that follows the outline of the layer of the topography, but it seems that I can only move the anchor of a shape at the same time. Is there a way to pass the two anchors both (anchors that overlap, one of each shape)?

    I should also add and subtract some of the anchor so while making it so each anchor is not a 'corner '.

    I want to essentially merge or merge the anchor points of the two forms while maintaining the two colors, so that they share a border.

    Any help will be a life saver! I can try to clarify if it is not supposed. Thanks in advance!

    -Jake

    Jake,

    You can click on selection of object through only in preferences, then after the first deselect all ClickDrag (click outside paths) with the tool directly on each game Selection and then ClickDrag to move (you can simply go to set).

Maybe you are looking for