How to prevent my slide from advancing?

Hi - how do I prevent my slide from advancing?  I have a text caption at the top, then 2 images, each with click boxes over them.  And then there are 2 text captions below - one underneath each image.  I also added a next button to try to stop the slide from advancing.
I set the action on each click box to show the text caption below the image when the click box is clicked.  So here's what happens:
- the slide plays, then stops
- user clicks either one of the images (is actually clicking the click box on top of the image), and
- then the slide start playing again and then eventually all the objects disappear (timing on the slide is about 17 seconds).
How do I get all the objects to just stay on the slide, until the user clicks the next button on the skin?  I had thought the Next button would do that, but it's not (and I don't want a next button on there anyway).
Thanks!
Kelly

Hi Kelly
It's all in the timing.
Can you share your project? If we can see it first hand, we can then offer suggestions about what you need to do.
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • Possible to prevent hidden slide from showing on "next" click?

    I am working on my first Captivate 7 project. I have created a sub-set of slides that users will be able to link to from another slide (almost like pop-up boxes). This is optional content, so I don't want to force users to view it. How do I prevent a slide from displaying when the user clicks "Forward"? I figured out how to exclude it from the TOC, but if I actually Hide the page, I can't use the Jump to Slide feature.
    I tried to set up an OnExit action to jump to another slide, but that doesn't seem to work either. I'm sure others must do this all the time? I really appreciate your advice!!

    You need to set up custom variables that track whether or not the slide should be seen.  The default value will be that the slide is NOT seen (ie 0 or False).  The On Slide ENTER event for these 'hidden' slides will execute a Conditional Advanced Action that checks the value of the variable and if it is set to 0 or False then it will jump immediately to the next slide.
    When you deliberately jump to that slide from another slide your jump action needs to be executed by an Advanced Action that first sets the value of the variable to 1 or True before jumping.  This way, when it gets to the slide the On Slide Enter event's action will see that the slide is supposed to be viewed and allow it to play.
    To clean up, you need to ensure that any way the user gets out of that same slide will also execute an action that resets the variable to 0 or False again.

  • How to prevent a file from stripping?

    I'm building vacation for Arch64 but should be the same for 32bit. PKGBUILD looks like this:
    # $Id: PKGBUILD,v 1.1 2004/01/21 15:43:15 dale Exp $
    # Maintainer: dale <[email protected]>
    pkgname=vacation
    pkgver=1.2.6.1
    pkgrel=1
    pkgdesc="an automatic mail-answering program"
    depends=(gdbm)
    url="http://www.tosn.org/projects/vacation/"
    source=(http://www.tosn.org/projects/vacation/files/$pkgname-$pkgver.tar.gz vacation.patch)
    build() {
    cd $startdir/src/$pkgname
    mkdir -p $startdir/pkg/usr/{bin,man/man1}
    # keeps binary from building
    rm -rf vacation
    # fixing the Makefile - not only for arch64
    sed -i -e 's: -m486::; s:CFLAGS.*= (.*):CFLAGS += 1:' $startdir/src/$pkgname/Makefile
    sed -i -e "s:/usr/bin:$startdir/pkg/usr/bin:g" $startdir/src/$pkgname/Makefile
    mv vacation.man vacation.1
    make install
    These file have been created:
    [andyrtr@workstation64 vacation]$ ls -lRA pkg/
    pkg/:
    insgesamt 0
    drwxr-xr-x 4 andyrtr users 96 2006-01-28 09:32 usr
    pkg/usr:
    insgesamt 0
    drwxr-xr-x 2 andyrtr users 96 2006-01-28 09:32 bin
    drwxr-xr-x 3 andyrtr users 72 2006-01-28 09:32 man
    pkg/usr/bin:
    insgesamt 24
    -rwxr-xr-x 1 andyrtr users 16864 2006-01-28 09:32 vacation
    -rw------- 1 andyrtr users 470 2006-01-28 09:32 vaclook
    pkg/usr/man:
    insgesamt 0
    drwxr-xr-x 2 andyrtr users 48 2006-01-28 09:32 man1
    pkg/usr/man/man1:
    insgesamt 0
    [andyrtr@workstation64 vacation]$
    I get this error:
    ==> Starting build()...
    gcc -march=x86-64 -O2 -pipe  -Wall  -Xlinker -warn-common -D_PATH_VACATION="/var/abs/extra/system/vacation/pkg/usr/bin/vacation" -o vacation vacation.c -lgdbm
    install -s -m 755 vacation /var/abs/extra/system/vacation/pkg/usr/bin/vacation
    install -s -m 755 vaclook /var/abs/extra/system/vacation/pkg/usr/bin/vaclook
    strip: /var/abs/extra/system/vacation/pkg/usr/bin/vaclook: File format not recognized
    install: strip fehlgeschlagen
    make: *** [install] Fehler 1
    ==> ERROR: Build Failed.  Aborting...
    Krusader detects it as a Perl program. Any idea?
    AndyRTR

    Posted: Sat Jan 28, 2006 8:45 am    Post subject: How to prevent a file from stripping?
    I'm building vacation for Arch64 but should be the same for 32bit. PKGBUILD looks like this:
    Code:
    # $Id: PKGBUILD,v 1.1 2004/01/21 15:43:15 dale Exp $
    # Maintainer: dale <[email protected]>
    pkgname=vacation
    pkgver=1.2.6.1
    pkgrel=1
    pkgdesc="an automatic mail-answering program"
    depends=(gdbm)
    url="http://www.tosn.org/projects/vacation/"
    source=(http://www.tosn.org/projects/vacation/files/$pkgname-$pkgver.tar.gz vacation.patch)
    build() {
       cd $startdir/src/$pkgname
            mkdir -p $startdir/pkg/usr/{bin,man/man1}
            # keeps binary from building
            rm -rf vacation
       # fixing the Makefile - not only for arch64
       sed -i -e 's: -m486::; s:CFLAGS.*= (.*):CFLAGS += 1:' $startdir/src/$pkgname/Makefile
       sed -i -e "s:/usr/bin:$startdir/pkg/usr/bin:g" $startdir/src/$pkgname/Makefile
       mv vacation.man vacation.1
       make install
    These file have been created:
    Code:
    [andyrtr@workstation64 vacation]$ ls -lRA pkg/
    pkg/:
    insgesamt 0
    drwxr-xr-x  4 andyrtr users 96 2006-01-28 09:32 usr
    pkg/usr:
    insgesamt 0
    drwxr-xr-x  2 andyrtr users 96 2006-01-28 09:32 bin
    drwxr-xr-x  3 andyrtr users 72 2006-01-28 09:32 man
    pkg/usr/bin:
    insgesamt 24
    -rwxr-xr-x  1 andyrtr users 16864 2006-01-28 09:32 vacation
    -rw-------  1 andyrtr users   470 2006-01-28 09:32 vaclook
    pkg/usr/man:
    insgesamt 0
    drwxr-xr-x  2 andyrtr users 48 2006-01-28 09:32 man1
    pkg/usr/man/man1:
    insgesamt 0
    [andyrtr@workstation64 vacation]$
    I get this error:
    ==> Starting build()...
    gcc -march=x86-64 -O2 -pipe -Wall -Xlinker -warn-common -D_PATH_VACATION="/var/abs/extra/system/vacation/pkg/usr/bin/vacation" -o vacation vacation.c -lgdbm
    install -s -m 755 vacation /var/abs/extra/system/vacation/pkg/usr/bin/vacation
    install -s -m 755 vaclook /var/abs/extra/system/vacation/pkg/usr/bin/vaclook
    strip: /var/abs/extra/system/vacation/pkg/usr/bin/vaclook: File format not recognized
    install: strip fehlgeschlagen
    make: *** [install] Fehler 1
    ==> ERROR: Build Failed. Aborting...
    Looks like its tring to install to /var/abs/extra/system/vacation/pkg/usr/bin....... ????
    try make DESTDIR=$startdir/pkg/usr install

  • CFmail errors- how to prevent error message from user?

    Greetings
    I have an app in which the admin user sends notices to Vendors who have signed up to recieve emails when a new bid is posted.
    Even though I have "required="yes" validate="email"" at intial Vendor sign up (I think email validation is better served using Javascript, I've heard anyway) inevitably, contact emails go bad- and there are about 5000 vendors in the system.
    When a user (admin) sends the notices, if there is a mal-formed or dead email address in the DB, it dislays my default error screen even though the send transaction was successful.
    Any advice on how to prevent this?
    Thanks in advance for your help
    sakonnetweb

    <cfset thisBidID = session.bid_ID>
    <cfquery name="list_sendto" datasource="#Request.BaseDSN#">
    SELECT
    lc.contact_fname, lc.contact_lname, lc.contact_email,
    b.ReferenceNumber, b.Title, b.Description,
    jb.bid_ID, jv.vendor_ID
    FROM
    ((junction_bid_ccc jb
    LEFT
    JOIN
    junction_vendor_ccc jv
    ON
    jb.cccode_ID = jv.cccategory_ID)
    LEFT
    JOIN
    lookup_contact lc
    ON
    lc.vendor_new_ID = jv.vendor_ID)
    LEFT
    JOIN
    Bid b
    ON
    b.new_bid_ID = jb.bid_ID
    WHERE
    jb.bid_ID = #thisBidID#
    AND
    lc.contact_email <> ''
    AND
    lc.contact_email IS NOT NULL
    GROUP
    BY
    lc.vendor_new_ID, lc.contact_email, lc.contact_lname,
    lc.contact_fname, b.new_bid_ID, b.ReferenceNumber,
    b.Title,
    b.Description, jb.bid_ID, jv.vendor_ID
    </cfquery>
    <cfset thisReferenceNumber = list_sendto.ReferenceNumber>
    <cfset thisTitle = list_sendto.Title>
    <cfmail query="list_sendto" to="#contact_email#" from="[email protected]"
    subject="Bid Notification" server="emailsrv1.cityofnewport.priv"
    groupcasesensitive="no">
    <p>You are receiving this message because .... etc.

  • How to prevent multiple users from updating the same data in coherence

    Hi,
    I have a Java Web Application and for data cache am using coherence 3.5. The same data maybe shared by multiple users which maybe in hundreds. Now how do I prevent multiple users from updating the same data in coherence i.e. is there something in coherence that will only allow one user a time to update. If one user is in a process of updating a data in coherence and some other user also tries to update then the second user should get an error.
    Thanks

    I have a question on the same line. How can I restrict someone from updating a cache value when I a process is already working on it. I tried locking the cache key but it does not stop other process to update it , it only does not allow other process to get lock on it.

  • How to prevent a user from entering characters into a number field

    How do you prevent a user from entering characters like A or B into a field that is defined as a numeric field?
    Please note that
    - we use block validation (for other reasons)
    - we are not able to convert these numeric fields to character fields
    We want to avoid a user being hasseled with the FRM-40209 ... message.
    This message is
    - not very helpfull because it does not inform us what the problem field is
    - not suppressable
    Any hints ?

    I went back to the drawing board on this one.
    You are absolutely right : the message can be catched !
    By writing an on-error trigger you can check for the error number. Sadly enough my first attempt on this used the on-message trigger which never fired hence my desperation.
    Anyway, the on-error trigger in combination with :SYSTEM.CURRENT_ITEM or :SYSTEM.TRIGGER_ITEM enables me to display a more meaningfull message to my users.
    Thanks for the hint.

  • Dev question: how to prevent Adobe Reader from copying pdfs to "Download/Adobe Reader"?

    I am making an app that downloads pdf files from a server and the users can decide to store them in the phone. Those files are kept in the app's private storage.
    The pdf files can be opened from inside the app. The problem is that every time a pdf is opened, adobe reader copies it in "Download/Adobe Reader" (the path may be different depending on the device and the android version). Those pdf files should not be available from outside my app. How can I prevent adobe reader from creating copies in that folder? Do I really have to make my app track them down and delete them? It wouldn't be the safest solution...
    In order to open the files, I se up a content provider:
    from the manifest:
    <provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="com.example.myapp.fileprovider"
        android:exported="false"
        android:grantUriPermissions="true" >
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/filepaths" />
    </provider>
    And then, in a method, I do this:
    File pdfToRead = new File(pdfPath);
    Uri uri = FileProvider.getUriForFile(context, "com.example.myapp.fileprovider", pdfToRead);
    for (ResolveInfo resolveInfo : appsList) {
        String packageName = resolveInfo.activityInfo.packageName;
        context.grantUriPermission(packageName, uri, Intent.FLAG_GRANT_READ_URI_PERMISSION);
    openPDF(context, uri);
    public static final void openPDF(Context context, Uri localUri) {
        Intent i = new Intent(Intent.ACTION_VIEW);
        i.setDataAndType(localUri, PDF_MIME_TYPE);
        context.startActivity(i);
    Thanks for the help.

    Meh, I just hoped there was a way to tell acrobat "don't create a copy of the file because it's private". For now, I'm detecting the "downloads/Adobe Reader" folder, look if there's the file that was opened and delete it.
    Now I need to know something that I can't ask on stackoverflow: what paths does Adobe Reader use to create the "Adobe Reader" folder? Because not every device has an external sd card (external, not removable. Just for clarity). In my device it's at "Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)+"/Adobe Reader".

  • How can I make slides NOT advance automatically?

    I'm building a project manually by making new slides and putting graphics and text on them.  It's not a recording of software.  I would like the user to read each slide for as long as they want to, then click to go to the next one.  I can't find a setting for this.
    I tried setting the default slide duration to 300 sec.  Which sort of works, but every element I add to a slide still defaults to 3 sec so I have to change each element seperately.  Not practical at all.  ideas?

    Hi, I'm also having a slide advancing problem using CP8. I have three smart shapes used as buttons on the screen. After each is clicked, a prompt to click Next (in the playbar) shows. I have a click box after the prompt to stop the screen from advancing. This works fine if I only click the items once. If I click them again, the screen advances.
    I tried adding an additional smart shape. If I clicked two of the items again, the screen advances.
    I need a slight delay before the prompt shows and an effect on the prompt, so I can't just set the Advanced Actions to pause.
    Here are some screen caps of my course...
    Slide properties and Timeline
    Advanced actions of smart shapes....
    Properties for Click Box and Smart Shape that "pause" the slide
    Any help would be greatly appreciated. I need to send this out ASAP.

  • How do prevent HTML snippets from being listed on search engines?

    I just created a new website using iWeb 3.0.1. On a couple of my pages I embedded flash music players and video players using the HTML Snippet widget. I did a quick search of my website on google and noticed that the HTML widgets were showing in the results as separate pages. I then clicked on these HTML Snippet pages and up came the widget on a separate page by itself. How do I prevent search engines from listing any HTML Snippets on my iWeb site as separate pages?
    Thanks
    athafran

    Paste this in the HTML Snippet.
    In the <body> ... </body> part you paste the code you currently use for your Snippet.
    I haven't tried it, the noindex part, but the code itself is accepted by iWeb.
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <meta name="robots" content="noindex,nofollow">
    <meta name="description" content="instructions for excluding search engine robots">
    <title>Search Engine exclusion</title>
    </head>
    <body>
    Here your current code.
    </body>

  • Our daughter figured out on her own how to delete songs and apps from her IPAD2. Her parents would like to know how to delete such files and then how to prevent our daughter from doing it.

    Our daughter figured out on her own how to delete songs and apps from her IPAD2. Drives us crazy since we continually have to reload these files. Her parents would like to know
    1. how she did it (delete files) and
    2. how to prevent her from deleting files in the future.

    http://support.apple.com/kb/ht4213

  • How to prevent Keynote Media from compressing

    How do I prevent Keynote media from compressing. I add videos to the media section of Keynote via iPhoto and when I select it to use in my presentation, it sits there and compresses for 5-10 minutes. The problem I'm having is that I create the video versions as AppleTV versions, so I don't understand why they need to compress. I have Compressor, Quicktime 10.0 and QuicktimePro 7. What do I need to do and with what program to prevent this compressing to save time? Thanks. -Will

    MayaFrank:
    I have Keynote 6.1 and I have noticed it will allow me to export once.  If I want to export again, I must quit and restart Keynote.  Not sure why, but it seems to "fix" the problem.

  • How to prevent the User from loading more than one seq file?

    Hi,
    I would like to prevent the tester operator from loading more than one test sequence.  Any ideas how to do it?
    Thanks
    Rafi

    Hi Marty,
    Marty_H wrote:
    Hello mhousel,
    Testexec.exe by default loads the sequence files that were last open when it runs.  It is often desired behavior to have multiple sequence files load automatically. 
    [Mark Housel] Maybe for some but certainly not for me. 
    This should be easily handled by TestStand without any problems.  What do you mean by "chaos ensues"? 
    Certainly Teststand doesn't care a bit how many sequences are open.  But, when my sequences open they initialize HW of the ATE associated with
    that sequence file during the sequenceFileLoad callback.  e.g. I allocate TELNET handles to a terminal
    server that connects to multiple console within the system and als for
    the UUT.
    If a second sequence opens it knows nothing about the other sequence and again tries to open a TELENT session to the same port of the
    terminal server and obviously fails, so my sequence reports that it
    can't properly initialize the ATE HW.  Bad juju!
    Are your sequence files set to run automatically when they are loaded?
    I guess so.  Other than the trick of logging in as the special noExecution user and having special code in my sequence and modified Process Model I have no idea how to prevent a sequence fronm "runnin" when opened.
    If you want to prevent Testexec.exe from loading multiple files, you should be able to close out one of the open files when it loads and that sequence file should not load in the future.  I hope that helps.
    The trick I read somewhere else of modifying the Testexec.uir file to never re-load a sequence file automatically seemes to have covered up solved the problem.
    Thanks,
    Mark

  • How to prevent popup dialog from closing when commandbutton clicked

    Hi,
    I have a af:commandButton inside a popup dialog and the button action calls a method in backing bean. When this button is clicked I would like to run the method in backing bean and return control to the popup window. The method seem to run fine but the popup dialog closes automatically. Is there a way to prevent popup dialog from closing for this action?
    Thank you
    Kevin

    Hi Frank,
    Thanks for the link. I am not sure how to use this in my case. Following is part of what I am trying
    <af:popup ...>
    <af:dialog>
    <af:form usesUpload="true">
    <af:inputFile ..../>
    <af:commandButton text="upload" action="#{backingbean.uploadAction}"/>
    <af:outputText value="#{backingbean.filename} was successfully uploaded"/>
    </af:form>
    </af:dialog>
    </af:popup>
    When user clicks upload button I want to display a message that the file was successfully uploaded and keep the popup window open. But what happens now is once the file upload completes, the popup window closes automatically. This file upload part is not a must, user could skip doing the upload and instead input some text in a text area below (not shown in the code above). User could also just click cancel and exit the popup any time, so there is no mandatory field that I could check before closing the popup. Is there something I could do for this?
    thanks
    Edited by: user10720929 on Dec 23, 2008 10:36 PM

  • How to prevent hard disks from sleeping

    Hello
    I have recently installed a SSD for system drive in my machine, and now realise what a bottle neck the old, standard hard disk had been. Booting is now extremely fast, as is opening applications. This speed has alerted me to another problem. My hard disks keep falling asleep, which slows down operantion of the machine significantly. For instance, to log into this forum, I used 1Password. When selecting the log in menu item from 1Password, there was several seconds delay before one of the hard disk (I have four inside the machine, one external Drobo, and one external eSata drive) came alive. When it had, Safari could take me into the site. There constant delays like this when I use Safari, for example. These delays are very frustrating, so I want to keep all my disks awake constantly.
    Thing tried so far:
    The worst problem was the Drobo, because it has three disks inside that wake up one after the other, a very slow process, and the Drobo is slow in itself. So I installed a little script that does a touch command every five minutes, to prevent the Drobo from sleeping. It seems this has helped. But the other disks keep falling asleep all the time. I have set Cocktail to prevent all disks from sleeping - no effect. The Energy Computer Sleep setting is set to Never.
    Any ideas will be much appreciated. This sleep issue keeps bugging my all day long.

    In the Energy Saver system pref, are any of the boxes checked?
    If it were me, I guess I'd try clicking the 'restore defaults' button in Energy Saver, restart the computer, and then go back into the Energy Saver and set the computer sleep to either 3 hours or never, and uncheck the 'put hard disks to sleep when possible' box. You might try 3 hours instead of never and see if that makes a difference.

  • TS3276 On received mail, I delete sender's name, address, etc. then forward it.  The forwarded mail has a duplicate of the original mail, show original sender's name, etc.  How to prevent the duplicate from being sent?

    How to prevent duplicate of orginal mail (with original sender's name, address) being "attached" when forwarded?

    Maybe I am mis-understanding what you are seeing.
    When I forward a message, the receiver will see the original mail (unless I edit it, such as removing any previous sender's information) and the length will be the same as the message was before forwarding except for the added line "Begin forwarded message" (again, unless I edit bits out), and there will be no attached copy of the original message.
    So when you say in your reply above "The orginal email with the sender's name and address was also sent with my forwarded email." do you mean:
    a) that it is still visible at the head of the text of the message (which I was saying does not happen for me because "after hitting delete, the previous sender's information disappears." [and since] "it has disappeared, it cannot be in your forwarded mail." Disappeared means it is not there.
    b) another copy of the original message is attached to the forwarded email at the end, either as an included file or as repeated text.
    c) some other situation.
    Sorry about the previous mis-spellings! I hope that we can get to the bottom of this.

Maybe you are looking for