How can I pause a slide until the user clicks a button?

I wish to pause a slide until the user clicks a button (which I've created out of a Smartshape). The thing is that I haven't added a click box object over the smartshape but have only set the smartshape properties to "Use as Button". If I were to add a clickbox object, I would get a "Pause project until user clicks" in the options section of the properties. However in using a smartshape as a button, I cannot find this option. I am using Captivate 6. Seems strange as I would have expected to see the same checkbox option even if I were to use a smartshape as a button but I dont. Can't someone help me and let me know if I'm missing something.
Of course I could use a clickbox over my smartshape to achieve what I want, but I want to avoid thsi for two reason:
I want to avoid adding another object when I dont need it.
My smartshape is a right arrow (indicating "Begin"), and I dont want a squarish click box sitting on top of a triangle because that just shows the hand pointer even if the cursor isn't exactly over the arrow button because it enter the clickbox area.
Thanks,
Sean

Select the Smart Shape button , go to Properties > Timing accordion > Pause After and set the number of seconds from the beginning of the slide for it to pause.

Similar Messages

  • Can I pause my project when the user clicks?

    Hello all,
    I am working on a project using Cp4.
    My project plays automatically without user interaction.
    I need project to be paused when the user clicks on a clickbox at run time & it should play when the user again clicks the same clickbox.
    I can pause the project by adding a clickbox and applying the property "pause the project until user clicks.
    But it must be a user wish interaction whether to pause or play.
    Is that possible ? How could I make my work done ?
    Regards,
    Kartik.P

    Hello,
    I tried it out and it works all right. If you do not want a button, you can also replace this by a click box (that is invisible), perhaps covering up the whole slide and instruct the user just to click on the slide to pause or to 'un'-pause.
    As for the construction of the Advanced action (do have a couple of tutorials, but they are for CP5):
    Open the dialog box from Project Actions
    Be sure to be on the tab Advanced Actions and choose Create a new action from the dropdown list
    Name the action
    Double click on the first statement, it has to become red
    Use the spacebar to open a list, and choose Assignment
    From the first dropdownlist choose Variable rdcmndPause
    From the second list (after the =) choose Value
    Type in 1 for the value
    From the third list choose the minus sign
    From the fourth, choose again Variable and from the list choose rdcmndPause
    Save the action
    It is a bit clumsy, but the result should look like this:
    Lilybiri

  • Stop the report from firing until the user clicks the Go button?

    Hi All,
    Is there a way to stop the report from firing until the user clicks the Go button? At the moment it is populating when I open the dashboard page. I found something online that said i could use the Page Options>Save Current Settings> For Others.. but even though i am signed in as an administrator i only see a For Me.. option. Also, even after setting this option i would like to be able to hit the 'Go' button to run the report and have it uncollapse the section. Is this possible?
    Thanks

    Thanks for the replies,
    In my report i am trying to constrain the report to todays data only. However the only prompt i have is for another column. If i place a filter on the date column with Year=0000 it will not change with the prompt selection and so will never return any results. Is there any other way?
    It seems wasteful to fire a request to the database onload of the page. Is there an option to only fire a request what the prompts are entered? I will be using a stored proc which needs parameters to run the request so it would be good to be able to set the report to not run until it has parameters entered
    Thanks

  • How do I call a method when the user clicks on the delete button?

    Hello , I need to implement the following :
    If date from is less than sysdate , when the user clicks the "delete" button , he is shown an error message .
    Can you please help how this can be done ? Thanks.

    Thanks. What are the steps for adding a custom delete button ?
    Are these ok ?
    1 ) Add an adf button
    2) Add the following in the actions listener : #{bindings.Delete.execute}
    3) Right Click button --> create method binding for action
    4) Compare date ?
    Thanks.

  • How do I pause a slide without the playbar?

    Hi I am using Cap 6 and I do not have a playbar on my published project, I have a back and next button, how can allow the user to stop or pause the slide do I need some java script on a button?

    You'll have to use the system variables cpCmndPause and cpCmndResume.  More details about system variables in this  blog post:
    http://blog.lilybiri.com/system-variables-in-captivate-6
    You can assign the action 'Assign cpCmndPause with 1' as Success action for the Pause button, but would recommend doing it with a standard, not with a simple action (anyway those variables are not available in the dropdown list of the Action accordion). And to play again it has to be 'Assign cpCmndResume with 1'
    If you want it to be done with one button, create a conditioal action :
       IF  cpCmndPause = 1
       Assign cpCmndResume with 1
    ELSE
      Assign cpCmndPause with 1
    http://blog.lilybiri.com/why-choose-standard-over-simple-action
    Lilybiri

  • How can I pause a download in the new iTunes (v.11)?

    I downloaded and installed the new iTunes (v.11) this weekend.  In this new verison how do you pause a download?  In the former versions, while files were downloading, there was a list.  Where is that in this new version?
    Thanks

    its on top right of the app.
    ... Once you begin downloading something new icons will show up right of the search box. click it and will display all downloads. Then it will go away when its all done

  • How Can I Retrieve SQL Statement From The User ?

    Hi
    I want to know, how can I make the user can enter the SQL statement from himself ?? in this code he can't enter it. Only he can display the SQL that i wrote it...
    this is my Code:
    import java.sql.*;
    public class db_testing {
         static final String DRIVER = "com.mysql.jdbc.Driver";            
         static final String DATABASE_URL = "jdbc:mysql://localhost/S204111933";
         public static void main(String[] args) {
              Connection cn=null;
              Statement st= null;
              ResultSet rset=null;
              try{
                   Class.forName(DRIVER);
                   cn=DriverManager.getConnection(DATABASE_URL, "root", "admin");
                   st=cn.createStatement();
                   rset=st.executeQuery("select * from employee");
                   ResultSetMetaData metadata=rset.getMetaData();
                   System.out.println("The begining: ");
                   for(int i=1;i<=metadata.getColumnCount();i++)
                   System.out.print(metadata.getColumnName(i)+"\t");
                   System.out.println();
                   System.out.println();
                   while(rset.next()){
                   for(int i=1;i<=metadata.getColumnCount();i++)
                   System.out.print(rset.getObject(i)+"\t\t");
                   System.out.println();}
              catch(Exception e){
                   e.printStackTrace();
              finally{
                   try{
                   cn.close();
                   st.close();
                   rset.close();
                   catch(Exception e1){
                        e1.printStackTrace();
    }

    The following changes in the code will make the user to give the input
    import java.sql.*;
    public class db_testing {
    static final String DRIVER = "com.mysql.jdbc.Driver";
    static final String DATABASE_URL = "jdbc:mysql://localhost/S204111933";
    public static void main(String[] args) {
    Connection cn=null;
    Statement st= null;
    ResultSet rset=null;
    try{
    Class.forName(DRIVER);
    cn=DriverManager.getConnection(DATABASE_URL, "root", "admin");
    // st=cn.createStatement();
    // rset=st.executeQuery("select * from employee");
    PreparedStatement pstmt=null;
    pstmt=cn.prepareStatement("select * from employee where id=?");
    pstmt.setInt(1,Integer.parseInt(args[0]));
    rset=pstmt.executeQuery();
    ResultSetMetaData metadata=rset.getMetaData();
    System.out.println("The begining: ");
    for(int i=1;i<=metadata.getColumnCount();i++)
    System.out.print(metadata.getColumnName(i)+"\t");
    System.out.println();
    System.out.println();
    while(rset.next()){
    for(int i=1;i<=metadata.getColumnCount();i++)
    System.out.print(rset.getObject(i)+"\t\t");
    System.out.println();}
    catch(Exception e){
    e.printStackTrace();
    finally{
    try{
    cn.close();
    st.close();
    rset.close();
    catch(Exception e1){
    e1.printStackTrace();
    }

  • How can I make comments Editable for the users?

    Good day,
    How to give edit rights for  the user to edit his comment?
    If anyone can point me to a tutorial on how to do this or even give me a few tips, would be greatly appreciated!.
    Thanks

    I think we need a bit more information. Most importantly:
    #1 Edit comments where?
    #2 What technologies are you using? (PHP, Cold Fusion, etc)
    #3 A link to actual site would be most helpful
    Brad

  • KM Search: How can I define a query for the user who currently logged on?

    Hello,
    I want to use the KM Search iView to display all documents from the currently logged on user in a certain sort order. The result should be some kind of report for the user...
    In the search option I can define a default sort order. And I can also define it for a special user with cm_modifiedby(value=username)
    But how can I define the predefined property value generically for the current user?
    I tried to insert following values in the parameter Predefined Properties of the search option:
    Predefined Properties (csv): cm_modifiedby(value=<user.id>)
    Predefined Properties (csv): cm_modifiedby(value=%user.id%) -> like in the predefined properties
    Predefined Properties (csv): cm_modifiedby(value=$sap_user) -> like in the xml forms builder
    But non of these 3 parameters worked. Has anybody an idea what the right variable is?
    Thanks a lot.
    Best regards
    Nicole

    Hi Nicole,
    1. First of all you need to use "<User.UserID>" to get the currently logged on user.
    2. You need to create an AppIntegrator iView (so based on com.sap.portal.appintegrator.sap.Generic) in order to be able to use this dynamical parameter. The parameter "URL template" should look like:
    <Request.Protocol>://<Request.Server>/irj/servlet/prt/portal/prtroot/com.sap.km.cm.basicsearch?layoutSetMode=exclusive&ResourceListType=com.sapportals.wcm.SearchResultList&SearchType=quick&rndLayoutSet=SearchResultLayoutSet&SearchCompsName=UISearchComponents&QueryString=*&SelectedCustomProps=cm_modifiedby(value=<User.UserID>)
    Best regards,
    Robert

  • HT5071 when a user buys my ibook in iTunes store, how can I find out more about the user, state purchased in, email it downloaded to, etc ?

    when a purchaser reads my email message in mailchimp, I am provided with the user details, email address used, state located in, etc.....why can't I get the same information from Apple iTunes when a purchaser downloads a paid copy of my iBook from the Itunes bookstore.?????  in order to complete the download of a purchased iBook, that information is gathered by Apple, but is not provided to the iBook author.....any solutions out there...

    All Apple will give you are sales counts and other such general information. Personal information about individual purchases will not be available to you.
    Regards.

  • How can we DISABLE INDIRECT roles of the users...

    hey guys
    i have granted three roles test1,test2 and test3 to the user app_user. ..
    THE ROLE TEST3 HAS BEEN GRANTED WITH ROLE TEST4...
    NOT IS THERE ANY WAY THAT I CAN PREVENT THE USER FROM ENJOYING THE PRIVILEGES OF TEST4
    any idea???
    SORRY GUYS MADE A MISTAKE.... AT THE START
    Edited by: vishnusivathej on Jan 4, 2010 6:05 PM
    Edited by: vishnusivathej on Jan 4, 2010 6:05 PM

    The similar issue has been discussed in the following thread :
    VIEW AND INDIRECT PRIVILEGES BY ROLE
    Is there really no other way to grant privileges indirectly to a user by using roles.
    Please read the replies by APC Sir carefully and the links which he has provided over there.
    Regards
    Girish Sharma

  • How can I go to a new window by clicking a button

    Hi, I am a beginner user of Labview. Could help me solve this problem:
    For user's login verified, the system allows the user to choose two functions.
    Press button 1, go to a new window where the user can change their particulars
    Press button 2, go to another window where the main menu is.
    I used case structure to select functions. But it can not work.
    The attachment is what I do. Can anyone help to point out my mistakes?
    Thanks a lot.
    Regards
    yoyo
    Attachments:
    Using Buttons to Initiate Actions.vi ‏33 KB

    Hello yoyo,
    just put your "Main_Menu.vi" instead of the text "main menu" (and set the window properties to "Open when called" and "Close when finished" of that vi).
    Btw. you can also use "Wait for Front panel activity" instead of "Wait (ms)" For a simple user interface this is really convenient.
    Hope this helps,
    GerdW
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Forms: how to make it so that when the user clicks something, another form pops up?

    Sorry if that's confusing, but like how for example, you have:
    ADDRESS: _________________________  +another address
    & then if the user typed in information into the address field and wanted another address, it would look like:
    ADDRESS: __________________________
    ADDRESS: __________________________ +another address
    & so on... is there a way to do this?

    What you want is something like this
    http://dynamicdrive.com/dynamicindex16/chainedselects/index.htm

  • On a page change, GIFs in the orignating page stop animating - how can I keep them animating until the page actually changes?

    On some pages in my application I put up a mask and a loading dialog when changing page. This dialog has a GIF as a background image as a loading/waiting indicator. This GIF plays one or two frames and stops when the pages begins its redirection to the target page.
    Page change initiated using javascript: location.href ...
    FF 19 MAC OSX

    You can render the ebook on an instructional application called Zankura. Not only can you control the screen scrolling, but all the students can freely annotate with their stylus. www.zankura.com.

  • How can i get a list of the user created on a database?

    dear all
    i need to issue a query that return a list for all users that are created on the database
    please help

    You can have more refine search ,
    sql > select username from dba_users ;
    hare krishna
    Alok

Maybe you are looking for

  • Can you have multiple contact forms in a single Muse site?

    I have a site created in Muse that needs to use multiple contact forms of a sort.  One is a simple contact form.  Two others are sign up forms. In two of the three forms I have to separate the First and Last names.  Also in those there are multiple C

  • Problem with security role

    Hello, I have Enterpise Portal 7.0 SP13 instance (only Java stack installed). My enviroment is AIX 5.3 and Oracle 10. This instance has a lot of security alerts in the default trace log, like this: #1.5^H#C2B30000C03D006400000039000A9084000443246AFD6

  • Emails wont send

    Hi I really hope someone can help me. I can reply to emails but I cannot seem to send an emal from scratch. Im not sure what happened but the send option just doesnt come up anymore, I can only save as draft. And once saved it will not send either. P

  • Quicktime 10 "Save For Web", spaces in file names?

    Maybe I'm overlooking something here, but: When using Quicktime 10's "Save for Web" function, it exports movie source files that all have spaces in the filenames (i.e. "Movie - iPhone.m4v" etc) Now correct me if I'm wrong, but most web servers DO NOT

  • Error with INSERT INTO statement

    My INSERT statement looks like the following: String insert = "INSERT INTO UserDetails (lockedOut) VALUES (1) where registrationNo = ('"+registrationNo+"')"; stmt.executeUpdate(insert); The error message: Missing semicolon (;) at end of SQL statement