Create a button with an advanced action to start a video and associated text on the timeline.

I need help. I have a video on a slide that I want to start only when the learner clicks a Play Video button.  When that button is clicked, the video should start and the associated text captions with their timings should start then as well.  Is this possible with advanced actions?  If so, can anybody help me with those actions?
The slide would work like this:
Upon entry to the slide, narration is playing, and a text box appears on the screen.  It tells them to "click the play video button to begin".  Nothing should happen until they click the play video button.
When they click the button, the advanced action would start the video, and the associated text boxes appear as each "step" in the video goes by.  It's a procedure with step by step instructions.

You are very correct.  I am making it too complicated!  I believe I will do exactly what you said.  If I still want to have a button that says Play Video, I could just have that button advance to the next slide.  The learner will probably not even know they are on a different slide.  Thanks for making me see that clearly.  Sometimes I get too caught up in trying to do something one way.  Thanks for the help! 

Similar Messages

  • With the recent iMovie update whenever I import videos and drag them into the timeline they become delayed. The sound and visual pieces don't match. What do I do?

    can you help?

    Don't know why this should happen, but you can detach the audio and manually synch it. What are the properties of these clips?

  • Im trying to create a fading button with a fading action.

    I can't figure out how to create a fading button with an additional action to it. I'll do my best to lay out how the actions should work: [red = not working]
    Button > roll over> fade> (that part I have down perfectly) click button> button temporarily replaced with text> roll out of text > process repeated in reverse for smooth fading.
    Every time I set up all these actions and get it the way I want, I run into a bunch of problems:
    Text box holder and text can not be over the button. (Where I need them to sit) When they sit over the button it blocks it from doing any of its specified actions. So I'll make the text box and text a hidden item, then they lose their transition and start flickering when they are interacted with.
    This is basically the last piece of my clients new site and I just need to figure this one little thing out. Please help if possible!

    Try to group the elements so they work together.

  • Creating a delay on an advanced action

    Other than using the timeline, does anyone know of a way to create a delay
    in an advanced action?
    What i'm trying to do is when the user clicks a button, have an object appear, then have it move to the next slide. If i place both actions in an advanced action, the user never sees the object because it appears and moves to the next slide at the same time.
    I do not want to use the timeline for this, because it is relative to when the user pushes a button, and everyone reads and reacts at a different pace. Thanks so much if anyone has any creative ideas!

    Hello,
    Perhaps use 'micro-navigation'? It means using the timeline to put the object later than the pausing of the click box, and use the advanced action to navigate to the frame where the object appears, and add the statement Continue (so that the playhead moves on). Be sure to set the exit action of the slide  to Continue instead of the default No action. Now the user will see the object for the duration of its particular timeline and the playhead will move smoothly to the next slide after that duration is finished.
    More information about 'micro-navigation'? It is a term I used for my latest blog post:
    Micro-navigation in Adobe Captivate
    Lilybiri

  • How can i create a button with a dynamic picture?

    How can i create a button with a dynamic picture using
    mcLoader.loadClip
    I did create one with it doesnt seem to be working. It loses
    all its
    functions (eg onPress onRelease)
    Thanks

    I solved thep roblem anyway creating a mc.. then creating
    another MC withing
    the first MC and i change the picture on the second MC. And i
    apply the
    propierities to the first MC , and works
    If i have troubles with mu sistem on the future I will use
    yours!
    Thanks!
    "the fleece" <[email protected]>
    escribi� en el mensaje
    news:e67i88$jlf$[email protected]..
    > the image loading will remove any properties or
    functions the mc had.
    >
    > you need to apply them in the onLoadInit function
    >
    > mclListener.onLoadInit = function(target_mc:MovieClip) {
    > target_mc.onRollOver=blah blah
    > };
    > var image_mcl:MovieClipLoader = new MovieClipLoader();
    > image_mcl.addListener(mclListener);
    > image_mcl.loadClip(blah, blahblah);
    >
    >

  • How to create a button with the drop-down menu?

    I want to create a button with the drop-down menu, which is like the 'back' on the tollbar in IE. I heard JPopupMenu can reach the certain result, but the button hadn't a down arrow. Who can help me?

    i have made something like this :
    //======================================================================
    package com.ju.guiutils
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.util.Vector;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import javax.swing.plaf.basic.BasicComboBoxUI;
    * @version 1.0 14/04/02
    * @author Syed Arshad Ali <br> [email protected]<br>
    * <B>Usage : </B> ButtonsCombo basically performs function button + JComboBox, if we have different options for
    * <BR>same button then we can use this ButtonsCombo.
    *<BR> By the way there is no button at all in <I>ButtonsCombo</I>
    public class ButtonsCombo extends JComboBox {
    //===================================================================================
    * Create ButtonsCombo with default combobox model
    public ButtonsCombo () {
    super ();
    init ();
    //===================================================================================
    * Creates a ButtonsCombo that takes it's items from an existing ComboBoxModel.
    public ButtonsCombo ( ComboBoxModel model ) {
    super ( model );
    init ();
    //===================================================================================
    * Creates a ButtonsCombo that contains the elements in the specified array.
    public ButtonsCombo ( Object [] items ) {
    super ( items );
    init ();
    //===================================================================================
    * Creates a ButtonsCombo that contains the elements in the specified Vector.
    public ButtonsCombo ( Vector items ) {
    super ( items );
    init ();
    //===================================================================================
    private void init () {
    setBorder ( BorderFactory.createBevelBorder ( BevelBorder.RAISED ) );
    setRenderer ( new ComboRenderer() );
    setUI ( new ComboUI() );
    addMouseListener ( new ComboMouseListener() );
    //===================================================================================
    * Set items for ButtonsCombo in the specified array
    public void setItems ( Object [] items ) {
    setModel ( new DefaultComboBoxModel( items ) );
    //```````````````````````````````````````````````````````````````````````````````````
    * Set items for ButtonsCombo in the specified Vector
    public void setItems ( Vector items ) {
    setModel ( new DefaultComboBoxModel( items ) );
    //```````````````````````````````````````````````````````````````````````````````````
    * Get current items in a array
    public Object [] getItemsArray () {
    ComboBoxModel model = this.getModel ();
    if ( model != null ) {
    int size = model.getSize ();
    if ( size > 0 ) {
    Object [] items = new Object[ size ];
    for ( int i = 0; i < size; i++ ) {
    items[ i ] = model.getElementAt ( i );
    return items;
    return null;
    //```````````````````````````````````````````````````````````````````````````````````
    * Get current items in a Vector
    public Vector getItemsVector () {
    ComboBoxModel model = this.getModel ();
    if ( model != null ) {
    int size = model.getSize ();
    if ( size > 0 ) {
    Vector itemsVec = new Vector();
    for ( int i = 0; i < size; i++ ) {
    itemsVec.addElement ( model.getElementAt ( i ) );
    return itemsVec;
    return null;
    //===================================================================================
    class ComboMouseListener extends MouseAdapter {
    public void mouseClicked ( MouseEvent me ) {
    ButtonsCombo.this.hidePopup ();
    public void mousePressed ( MouseEvent me ) {
    ButtonsCombo.this.hidePopup ();
    ButtonsCombo.this.setBorder ( BorderFactory.createBevelBorder ( BevelBorder.LOWERED ) );
    public void mouseReleased ( MouseEvent me ) {
    ButtonsCombo.this.hidePopup ();
    ButtonsCombo.this.setBorder ( BorderFactory.createBevelBorder ( BevelBorder.RAISED ) );
    //===================================================================================
    class ComboRenderer extends JLabel implements ListCellRenderer {
    //````````````````````````````````````````````````
    public ComboRenderer () {
    setOpaque ( true );
    //````````````````````````````````````````````````
    public Component getListCellRendererComponent ( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus ) {
    setBackground ( isSelected ? Color.cyan : Color.white );
    setForeground ( isSelected ? Color.red : Color.black );
    setText ( ( String )value );
    return this;
    //````````````````````````````````````````````````
    //===================================================================================
    // We have to use this class, otherwise we cannot stop JComboBox's popup to go down
    class ComboUI extends BasicComboBoxUI {
    public JButton createArrowButton () throws NullPointerException {
    try {
    URL url = getClass ().getResource ( "/images/comboarrow.gif" );
    JButton b = new JButton( new ImageIcon( url ) );
    b.addActionListener ( new ActionListener() {
    public void actionPerformed ( ActionEvent ae ) {
    return b;
    } catch ( NullPointerException npe ) {
    throw new NullPointerException( "/images/comboarrow.gif not found or /images folder not in classpath" );
    catch ( Exception e ) {
    e.printStackTrace ();
    return null;
    //======================================================================
    you can cutomize this according to your requirement , okie ;)

  • Creating a button with text in FlashCS5

    I am fairly new with using FlashCS5.  I just finished the class and created a button with text in it for class but now when I need to do it for a project I can't seem to get it to work.
    I am trying to create a simple start and stop button to start and stop a Flash movie.  I can get the buttons to work without any text, such as the word start and stop in the middle of each.  Everything I've tried to do with the text on the button turns out the same.
    What happens is that in Flash the buttons appear to work fine.  The little hand with the finger shows no matter where I place my cursor on the button but when I test them the area where the text is does not allow the click to work.  I have tried specifying a hit area and made sure that the hit area was larger than the entire button but still the middle where the text is doesn't work.   Outside of the text area works fine.
    Any ideas?  I've spent 4 hours on this.

    Thank you for the reply but what I am doing is much simpler.  I am creating a gray rectangle and putting text in the center.  I am then selecting both the rectangle and the text and converting it to a button.  I am then editing the button from the library and adding a keyframe to the hit area, drawing a rectangle around the button to establish the hit area.
    I am enabling simple buttons and when in Flash it appears fine.  It is when I test that the area where the text is doesn't function as clickable.

  • Advanced action: jump to next slide if all text entry boxes are filled out. If not, pause project and show error message

    Hi there
    Working with captivate 4 and advanced actions, which is a great new feature, I encounter the following problem:
    I have a sign-in slide, where the user has to insert his name and several other data. For user-friendly handling, I have the text entry boxes appearing one after another, so when the user confirms his entry, the next text entry box appears and has the focus.
    The button for jumping to the next slide works with an advanced action:
    Only if the user has filled out all the text entry boxes, the action "jump to the next slide" is performed.
    If not, an error message is shown.
    It works well so far.
    Now, I want the project to pause there, and not to jump back to the beginning of the slide (as suggested in another Thread in this forum), because then the text entry boxes dissappear again.
    I tried to set the movie control variable rdcmndPause to 1 in order to make the movie pause, but nothing happens.
    I tried it with an external playback control bar and without, it didn't work in either case.
    I found the hint:
    To control the project through the skin file, add the prefix cpSkinLoader_mc to the variables. This might be the solution.(?)
    But how can I change the name of a MovieControl Variable?
    If anyone knows, how this is supposed to work or has another suggestion to solve the problem, please let me now.
    Thanks a lot.
    Petra

    Hi Petra,
    I believe I can help you, but from a completely different angle than anything you've tried yet.  I try to find simple solutions to complex problems.  No advanced actions will be needed, just a little creative timing.  First, I need to be sure I correctly understand what it is you're hoping to accomplish.
    If I understand you correctly, you've got a single welcome slide.  On this slide you've got several TEB's (text entry boxes), set up with variables to make your project more personal or gather some required information.  These TEB's have no right or wrong answers, they simply require an entry: such as an address which begins with a numeric key.  The TEB's are set to appear one after another, as one is completed the next one appears.  Once all have been completed a next button, set to "jump to next slide" takes them  to the next slide and on through your course.  You want the project to pause until the user clicks this button, and only proceed if all TEB's have been entered.  If not, you wish an error message to appear.
    If the above description is correct, I'd do the following:
    Leave your TEB's to show up one at a time as the previous is submitted, as you've described. (each one pauses the slide till info is submitted, then "continues" the slide and the next TEB displays)
    Set each TEB to "display for rest of slide".
    For the next button:  In the properties dialog box, options tab, name the button "Next_button" and uncheck the visibility box.
    Open the properties for the final TEB that students will fill in and set the on success property to "show" then choose the Next_button by clicking the drop down arrow beside the "show" field.  This will hide the Next button until all TEB's have been filled in.
    There is no error message, because there is no possibility of error.  Why tell a student they've messed up, just eliminate that possibility!    All TEB's only display after the previous is entered, and the Next button is hidden until the last TEB is entered.
    I've tested this in a simple 3 slide project and it all worked fine, including some variables.  If you need more detailed info, or would like to see the sample proj. I created let me know.
    Hope this helps.
    randy

  • I created a website with iWeb but use GoDady for hosting it rather than MobileMe. The images on my Gallery page do not show at all on the external domain but they DO show when seen on MobileMe. Has anyone encountered this problem before? Many thanks!

    Hello al!
    I created a website with iWeb but use GoDady for hosting it rather than MobileMe. The images on my Gallery page do not show at all on the external domain but they DO show when seen on MobileMe. Has anyone encountered this problem before? Many thanks!

    Just create a new page (or use the existing photo page) on your external site and use html to add an iframe sized to the page and link it to the mobilme gallery page. Works for me just fine when showing my gallery from a yahoo site.
    like this
    <iframe scrolling="off" allowTransparency="true" frameborder="0" scrolling="yes" style="width:100%;height:100%;border:none" src="http://gallery.me.com/your_account_name"></iframe>

  • HT5787 My sister got an iPad and played with its passcode. She lost her passcode and had to reset the iPad using iCloud. Unfortunately, she accidentally pressed the iForgot button and leave it blank and quit it. Can anybody help?

    My sister got an iPad and played with its passcode. She lost her passcode and had to reset the iPad using iCloud. Unfortunately, she accidentally pressed the iForgot button and leave the old and new password menu blank and quit it. She didn't really understand about iForgot so she thought it's fine. Can anybody help?

    Have you tried looking in your spam folder for the email?

  • I have a clip with synchronized audio. When I trim a section of video it does not trim the audio. How do I trim both video and audio so that the clip remains in sync?

    Why is FCPX not allow me to cut both video and audio tracks at the same time?
    My separate synchronized audio does not trim when I trim the video. They are connected and synchronized.

    fulei wrote:
    The audio track does not edit along with the video. They go out of sync
    Sounds like a different problem than your trim problem in the first post. If your problem is they drift out of sync, we'd need to knoow more about the project and clip properties – including how the audio file you're syncing to was created.
    Russ

  • I want to create an account in USA store, I activate a paypal account and when I validate the pay form send me an error, what can I do?

    I want to create an account in USA store, I activate a paypal account and when I validate the pay form send me an error, what can I do?

    Are you in the U.S?
    You can only buy from the itunes store of your country of residence ( verified by valid billing address on your payment info) and ONLY while inside the borders of that country.

  • I created an iDVD through iMovie on one computer in my home and want to edit the slideshow and delete some videos on the iDVD.  However, I want to work on my own iMac.  Is there a way to "share" the original project through the drop box on my computer?

    I created an iDVD through iMovie on one computer in my home and want to edit the slideshow and delete some videos on the iDVD.  However, I want to work on my own iMac.  Is there a way to "share" the original project through the drop box on my computer?

    Sir Churchill, I tried deleting one of the playlists from my computer (Playlist 130).  The next day I checked my wife's computer and noticed that Playlist 130 was now missing from her computer as well.  Is there a way that I can delete a playlist from my computer without it disappearing from hers as well?

  • I switched phones with my wife.  I went into "Settings" and "Store" to change the applid to mine but the phone still has my wife's applid when updating apps.  How do I get my phone to default to my applid?

    I SWITCHED PHONES WITH MY WIFE.   I WENT INTO SETTINGS AND STORE TO CHANGE THE APPLID BUT IT STILL USES MY WIFE'S APPLID WHEN UPDATING APPS.   HOW DO I GET THE APP STORE TO DEFAULT TO MY APPLID?

    Any apps that are on the iPhone which were bought / downloaded via your wife's account are tied to her account - so only her account can download updates to those apps. If you remove all her apps and just put yours on then you should be ok.

  • Need help with Quizzes & Advanced Actions

    Hi, I am relatively new to Captivate (v6) and I am looking for a way to force learners to respond to a question BEFORE navigating to the next page.
    On my question slides, I have a submit button and the next page button but no playbar.
    I want the submit button to be active to provide feedback to the question with the next page arrow inactive. It would be great to have a message pop-up (similar to the incomplete message) when the learner presses on the inactive next page button. Once the question has been answered and submitted, then I want the next page arrow to be active for the learner to navigate to the next page.
    Do I need to create an advanced action for this? Either a standard action or conditional?
    Can anyone help me with this? I would be most appreciative!

    Normally they do not need the Next button, except during Review (if you'll allow that after the last Quiz attempt).
    So my most simple solution is to drag the Next button under the Clear button, it is normally stacked lower so it will be hidden. During Review, the Clear button will not be there and the Next button will become visible.
    Have a look at my blog posts about functionality of Question slides:
    http://lilybiri.posterous.com/question-question-slides-in-captivate
    http://lilybiri.posterous.com/question-question-slides-part-2
    Lilybiri

Maybe you are looking for

  • Windows Error 48 Ipod can't update

    Anybody know how to fix this problem Everything has worked fine for about 3 weeks. Connected Ipod Nano 4gb to Itunes tonight and got message "Error 48 - Problem with Ipod cannot update Ipod". Only solution I could find was to reset Ipod and reload al

  • Show the presentation variable on table column header

    hi, experts, is it possible to show the presentation variable on the table column header. I have created a edit box with presentation variable on the prompt. I would like to show the value the user entered on the column header because the values unde

  • Mass processing for printing shopfloor papers

    When I press background  processing for printing shopfloor papers  in COHV then I get message background  processing triggered but no print comes out of printer. Where to see result of background  processing. In COHV log is also empty. My requirement

  • How to mark email unread in ios6

    What happened to the ability to mark an email as unread? I need help. This is how I managed my to do list.

  • [solved] mplayer error

    Today I've updated my mplayer to 29411-2 and after trying to play any file i get: zsh: illegal hardware instruction  mplayer Any ideas what can be wrong? Last edited by xendo (2009-07-06 16:31:09)