How to Rewind a slide (not a module) on click of a button in Captivate 8

Hi,
I am creating an elearning module in Captivate 8. the module is of 30 slides. I have added a custom Rewind button on each slide of the module. I want a slide to Rewind on click of the Rewind button on that slide. Now when I am clicking on the button, the module starts from the first slide i.e from the beginning. I have used the below code for the Rewind button:
Assign cpCmndGotoFrameAndResume    v_start-1
I dont want that as I want only the slide to rewind and not the whole module. Please help !!

Check out Lilybiri's solution here:
What is the best way to replay a slide?
Sreekanth

Similar Messages

  • First time going to a site where I do not have access and clicking the back button I'm returned to the root site instead of the site I started from

    Greetings,
    I have SharePoint 2013 enterprise using ADFS for authentication.  I have an issue where the first time going to a site where you do not have access and clicking the back button you're returned to the root site instead of the site you
    started from.
    ie:
    1) at site http://www.sharepoint.com/sites/finance/home.aspx
    2) browse to
    http://www.sharepoint.com/sites/finance/private/home.aspx
    3) receive a message: you do not have access to this site  ((oops went to the wrong location - I'll hit the back button))
    4) click the browser back button
    5) get returned to http://www.sharepoint.com/pages/home.aspx
    This only happens the first time browsing to a site that I do not have rights to, after this I can browse to the same site and hit the browser back  button and return to the correct site, or any other site that I do not have access to.
    Any ideas as to why this happens?  Ideas of where to start looking?
    Thanks

    Hi Robert,
    From your description, when you receive access denied message and hit back button in browser, it redirects you to the root site but not previous site. However, this just happens at the first time.
    You may try to use some tool or check log which can tell us how does it handle the request when you hit the button. And compare the issue time and non-issue time.
    I'd suggest you use Netmon tool:
    http://blogs.msdn.com/b/carloshm/archive/2012/11/08/sharepoint-2013-network-monitor-parsers.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • HT1386 After the recent iTunes my PC recognizes that I have connected my iPhone, but iTunes does not. I tried the trouble shooter; it said device not recognized. I clicked the help button as instructed and get iPod not recognized instructions. What for iP

    I have not been able to sync my iPhone 5s on my PC sincethe most recent update to iTunes. My computer showsthe iPhone as connected, but iTunes does not recognize it. I tried the trouble shooter and got device not recognized. I clicked the help button beside the failed test and get iPod instructions. How do I get iPod instructions for work for an iPhone? Better, how can I get this to show iPhone instructions? (On my other computer, I had to uninstall every Apple product to get the new iTunes to work.)

    You wrote: (On my other computer, I had to uninstall every Apple product to get the new iTunes to work.)
    You may have to do this on this computer as well. http://support.apple.com/kb/ts5376

  • My speakers from my iPhone 4S is not working I'm clicking on the buttons on the side nd the volume is not even showing getting louder or lower but when I plug in my ear phones I can hear it juss happen out of no where what sould I do ?

    My speakers from my iPhone 4S is not working I'm clicking on the buttons on the side nd the volume is not even showing getting louder or lower but when I plug in my ear phones I can hear it juss happen out of no where what sould I do ?

    Your iPhone charging port may have a minor short, causing iPhone to falsely sense it is connected to a dock turning off its speaker. Clean iPhone charging port with a clean dry toothbrush.

  • How to remove all slide notes in a project at once

    Hi All,
    I've some problem on removing slide note. I recently know how to remove slide note "one by one" method on captivate 8 but if I want to remove all slide notes at once, How can I do?
    Anybody know about this?

    Hi there,
    At present there is no option present in Captivate to delete the all slide notes at once. Please use the below link and file feature request for the same so that we can consider it for the future releases.
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Thanks,
    Nimmy Sukumaran.

  • How to restrict closing the tab in tabpane after clicking the close button.

    Hi all,
    Greetings.
    I am implementing a TabPane with different 'user form's in each Tab. And all the tabs are *'closable'*.
    If the user enters some data in the form, and tries to close the tab without saving the form , i need to show a confirm dialogue box that the user should go ahead or not.
    If he clicks cancel, the tab should not close.
    But currently i am searching for a method something like 'setOnClosing' method for tab.
    There is only tab.setOnClosed() method, which will call the event after closing the tab.
    Some thing the code is like below.
    tab.setOnClosed(new EventHandler<javafx.event.Event>() {
         @Override
         public void handle(javafx.event.Event e) {
            // TODO: Actions to be taken on close of tab.
               // Logic to show the confirm dialouge box.
               //  if YES - close the tab
               //  if NO - don't close the tab.
    });But my logic is executing after closing the tab. (ofcourse, as it is on setOnClosed() ;) ). Can anyone tell me how to get control before closing the tab ?
    Thanks in Advance.
    Sai Pradeep Dandem.

    Hi All,
    Finally I managed to get the handler before closing the tab pane. :)
    Though this is a bit weird work around, my requirement is fulfilled at-least.
    Let me explain the workaround I did.
    Tab tab = new Tab(title);
    tab.setClosable(false); // This line of code  makes sure that the “default” close button of the tab is not appeared.
    setClosableButton(tab);Then I am setting the custom close button as a graphic to the label ( Title of the tab), and aligning that graphic position to make an effect, that it is rendered exactly at the position of “Close” button.
    From this Custom Close Button, I am handling the events and if confirmed I am closing the tab manually, by calling the closeTab() method in the TabPaneBehavior class.
    Below is the code that is implemented as per the above logic.
          * Method to set the custom Closable Button to the given tab.
          * @param tab - Tab
         private void setClosableButton(final Tab tab,final boolean closeCheck){
              final StackPane closeBtn = new StackPane(){
                   @Override
                   protected void layoutChildren() {
                        super.layoutChildren();
                        // Setting the orientation of graphic(button) to the right side.
                        ((Label)((LabelSkin)getParent()).getSkinnable()).setStyle("-fx-content-display:right;");
              closeBtn.getStyleClass().setAll(new String[] { "tab-close-button" });
              closeBtn.setStyle("-fx-cursor:hand;");
              closeBtn.setPadding(new Insets(0,7,0,7));
              closeBtn.visibleProperty().bind(tab.selectedProperty());
              final EventHandler<ActionEvent> closeEvent = new EventHandler<ActionEvent>() {
                   @Override
                   public void handle(ActionEvent paramT) {
                        ((TabPaneSkin)TabPaneComponent.this.getSkin()).getBehavior().closeTab(tab);
              // Handler for the close button.
              closeBtn.setOnMouseReleased(new EventHandler<MouseEvent>() {
                   @Override
                   public void handle(MouseEvent paramT) {
                        // My logic to handle the close event or not.
                                    if( logic satisfied){
                             closeEvent.handle(null);
                                    }else{
                                           // Dont close the tab.
              // Showing the close button if the tab is selected.
              tab.selectedProperty().addListener(new ChangeListener<Boolean>() {
                   @Override
                   public void changed(ObservableValue<? extends Boolean> paramObservableValue,Boolean paramT1, Boolean isSelected) {
                        if(isSelected){
                             tab.setGraphic(closeBtn);
                        }else{
                             tab.setGraphic(null);
         }There are some drawbacks in the above code. In practice, it is suggested not to use the classes (*LabelSkin* & TabPaneSkin) that are in com.sun.javafx package. But I couldn’t get a better solution other than using those classes. And another one is I could'nt set the actual graphic for tab, as i am already using that graphic property to show the close button.
    I would like to thank Narayan, for giving some inputs which has helped me to think and get the above solution. :)

  • After the update I don't know how to close running apps? I recall double clicking the main button then hold one app until they begin a jiggling motion. But that no longer works.

    How do close running apps?

    You still double tap the home button and the apps are lined up across the screen. Swipe up on the app preview thumbnail - drag it up off of the screen - and that will close the app.

  • My bookmark feature is not working. I click the star button, and it does the animation showing a bookmark added, but it doesnt turn blue or bookmark page...

    it used to work fine, but now it does.. Some websites will bookmark, but most will not... Like I said in the question, when I click the STAR button it does the little animation showing bookmarking, but it does NOT turn blue, and the page I am trying to bookmark is not showing up in my unsorted bookmarks list or anywhere else.. Thanks for your help..

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance https://addons.mozilla.org/firefox/addon/places-maintenance/
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How can i enable the html:text box when clicking the html:button

    Hi,
    i have a text box which is disabled defaultly and i want to enable it when i click on submit button.
    <html:button property="new" value="new">
    <html:text property="name" disabled="true"/>
    how i will enable that text filed? please tell me?
    Thanks,
    swarupa

    try using javascript onclick attribute:
    onclick="document.form.name.disabled=false"
    m

  • 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.

  • Quiz slides not to be counted in quiz summary at end - Captivate 4

    I have created a course which has quiz slides at the beginning of the cours which I have marked to not be graded.  These slides are knowledge checks and should not be graded nor be counted.  Then I have quiz slides at the end of the course that I do want to be graded.  But I do not want the quiz slides at the beginning of the course "counted" in the summary quiz slide at the end of the course.  I only want the quiz slides at the end counted.
    How can I change the settings in the quiz slides to "not" be counted in the quiz summary page at the end of the course.
    Thank you for your assistance.

    My best guess here as to the reason for your issue is that you've removed some of the essential objects from the Quiz Slides and that is fouling things up.
    Quiz Slides MUST ALWAYS have the default Question Title and Question Text captions present.  These are special caption objects that are ONLY found on quiz question slides.  If you remove them or replace them with normal captions your quiz slides will malfunction inconsistently.
    The other thing you may have done here by the sound of it is to set Submit All and then move the Submit All button off the slide into the scrap area.  That's also likely to screw things up.  If you do NOT want the user to see the Submit All button until the final quiz question slide then just change them to Transparent buttons and move them ALMOST off stage, but leave at least a few pixels of the button object still sitting over the top of the stage area.  This will mean the user cannot see (and is very unlikely to click) the Submit All button except for the slide where you WANT them to see it.

  • How can I write a code that triggers when clicking on Save button

    I want to hide certain fields inside my tracking list, if the login user is not part of the “Managers” group.
    To do so I want to add the following Page-load code inside a web part :-
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    {SPGroup group = site.Groups["Managers"];
    bool isUser = site.IsCurrentUserMemberOfGroup(group.ID);
    if (isUser)
    {textbox.Visible=false;}}
    And the following custom code that triggers when saving the form :-
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists["ListName"];web.AllowUnsafeUpdates = true;
    SPListItem item = list.Items[SPContext.Current.ListItem.UniqueId];
    txtTitle.Text = item["Title"] as string;item.Update();web.AllowUnsafeUpdates = false;
    But I am not sure where exactly I should add the custom code for the save button ? I tried writing it inside the Oninit method , but I got many errors as shown below:-
    So can anyone advice how i should write the web part to include the Page load & the custom save button code?
    second question in general is my above approach considered valid , i mean to hide/show list columns using web parts ?

    Hi,
    According to your post, my understanding is that you want to hide/show list columns based on specify the permission for Users, SharePoint Groups or Active Directory Groups.
    Here is a solution from CodePlex for your reference:
    SharePoint 2013 Column & View Permission
    https://sp2013columnpermission.codeplex.com/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How can I stop a JFrame from closing when clicking the close button.

    I need to display a dialog when a user attempts to close my app, giving them the option to close, minimize or cancel. How can I stop the form from closing after the user makes his selection? I have the folllowing code, but my form still closes after selecting an option:
    private void formWindowClosing(java.awt.event.WindowEvent evt) {                                  
            //An array of Strings to be used a buttons in a JOptionDialog
            String[] options = {"Close", "Minimize", "Cancel"};
            //Determines what the user wants to do
            int result = JOptionPane.showOptionDialog(null, "What to you want to do?  Close the application, minimize or cancel?", "Please select an option...", 0, JOptionPane.QUESTION_MESSAGE, null, options, options[0]);
           //Determines what to do, depending on the user's choice
            if (result == 0) {
                //Close the application
                System.exit(0);
            } else if (result == 1) {
                //Minimize the application
                this.setState(Frame.ICONIFIED);
        }Any help would be much appreciated!

    import java.awt.event.*;
    import javax.swing.*;
    public class test extends JFrame {
         public static void main( String[] args ) {
              new test();
         public test() {
              setSize( 200, 200 );
              //the next line makes the JFrame not close
              setDefaultCloseOperation( JFrame.DO_NOTHING_ON_CLOSE );
              //now add a listener that does the trick
              addWindowListener( new WindowAdapter() {
                        public void windowClosing( WindowEvent e ) {
                             //ask the user and do whatever you wish
              setVisible( true );
    }

  • How to repeat message created in sm02 after every click on enter button

    Can anyone advise on how to make the message created in sm02 repeat every time a client clicks on the enter button
    This is because we will need to reboot the server and need to have everyone eloquently log off SAP before I kill their connection
    PS  I can post the message but it only pops during log on
    Thanks,
    Maria

    That´s not possible - and I wouldn´t do that.
    What you can do is that you change your message all some minutes (entering blanks) so they will reappear.
    Markus

  • How do I increase the text size when I click the T button in  Adobe Reader

    On some documents in Adobe Reader when I wish to enter text using the T button, I am given the option of the font and size of text. However, on other documents, a very small text size is used with no option to change it.  How can I change the text size or bring up the option window?

    Press Ctrl+E to open the properties bar, where you could set the font size.

Maybe you are looking for