Ctrl + Mouse Click to Advance - Possible?

In the course I'm working on, I want the user to select several options from a list and it uses typical Windows behavior - the user would click and hold ctrl and left mouse click each option.  When I recorded the screen in Captivate 7, the dialogue box states this instruction but when I test it, i can advance by only using the mouse.  Is there a way to force the user to use both the ctrl key and mouse to advance or else get a failure caption?
Thanks!

First of all, i couldn't figure out how to advance the slide
with the use of the mouse. so i chose the spacebar as the select
key. i used the following settings: on success--continue; allow
user--one; select keys--space bar; apply settings--all. the
settings-all didn't seem to have any effect. on the slides i worked
on individually, here are the issues i ran into: slide continued to
play for a long time before advancing to the next slide, needed to
press space bar multiple times before slide advanced, clicking
button on screen to advance (the one i created with the click box)
did not seem to have any effect. right now, the show is playing by
itself. my goal is to slow it down so the user has control over
when to advance to the next slide.

Similar Messages

  • Using CTRL+Mouse Click as Action

    I recorded a s/w simulation where I want the user to follow a sequence of keystrokes to ensure comprehension. I came across one sequence which I cannot get to work. I go into properties of the click box and select Actions>Shortcuts to record the key sequence CTRL + Left Mouse click but it does not record the CTRL key when combined with the mouse click. If I use CTRL plus some other keyboard key it works fine. Currently using the mouse click alone will allow the user to go to the next step but in the s/w this will not work so could be misleading.
    Does anyone know how to overcome this hurdle or if it is a s/w limitation do you have any suggestions to mitigate it? I was thinking of having the key sequence as a test question to ensure those taking the course absorbed the information.
    I found another thread a couple of years ago where it sounded like it was not possible but was curious if things have changed as I am using Captivate 5.
    Thanks
    Roshan

    Hi Roshan,
    The "CTRL+Mouse Click " can't be used as shortcut key for a click box in Captivate 5.
    Thanks,
    Subhransu

  • How to remap Ctrl + Mouse click

    Hi, I searched but couldn't find an answer.
    My kid tore a handful of keys out of my PowerBook keyboard. I fixed most of them (to my surprise), apart from the Ctrl key which was torn out 'with meat', so to speak — it now wobbles and falls off every time I press it.
    How do I remap 'Ctrl + mouse click' to 'option + mouse click', for example? The list of keyboard shortcuts doesn't have this choice.
    I'll bring it to repairs later on... but I need my machine for a whole week of high profile presentations starting tomorrow. Couldn't be the worst time for this.
    Appreciate your help.

    Ah, thanks goodness — I took my keyboard apart and fixed the button. It's now just a bit raised over the rest of the keys but it's operation is back to normal.
    Sheesh — I was almost 'forced' to switch to MBP ahead of my plans!

  • Mouse Click to Advance

    I am just starting out with Captivate. I want for the user to
    control the advance/forward by using their mouse. Is this
    possible?

    First of all, i couldn't figure out how to advance the slide
    with the use of the mouse. so i chose the spacebar as the select
    key. i used the following settings: on success--continue; allow
    user--one; select keys--space bar; apply settings--all. the
    settings-all didn't seem to have any effect. on the slides i worked
    on individually, here are the issues i ran into: slide continued to
    play for a long time before advancing to the next slide, needed to
    press space bar multiple times before slide advanced, clicking
    button on screen to advance (the one i created with the click box)
    did not seem to have any effect. right now, the show is playing by
    itself. my goal is to slow it down so the user has control over
    when to advance to the next slide.

  • Select any value with CTRL + mouse click

    Hi all,
    since ERP 6.0 and SAP GUI 6.40 I am used to be able to select any value in any input or display field (e.g. the name of a field of a table in transaction SE11) via holding down the CTRL key while clicking onto the desired value/field once. Then the whole value/string is selected.
    Now I am working on a freshly installed system but I can't find this setting anywhere. It does work to select a word within the ABAP source code editor, but not for any other, "normal" input fields.
    Any ideas where I can set this?
    Kind regards, Matthias

    Have a look at the last button on the right of the application toolbar. Button looks like monitor with test screen. Click it and use options.

  • JList where mouse click acts like ctrl-mouse click

    I'd like to create a JList where I can select multiple items as if the control key were down, but without having the control key down. I thought that perhaps I could do this by extending JList and overriding its processMouseEvent method, setting the MouseEvent object to think that control is pressed and then calling the super method like so, but it doesn't work (I still need to press the control key to get my desired effect):
    import java.awt.Component;
    import java.awt.event.InputEvent;
    import java.awt.event.MouseEvent;
    import javax.swing.*;
    public class Ctrl_Down_JList {
      private static void createAndShowUI() {
        String[] items = {"Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat"};
        JList myJList = new JList(items) {
          @Override
          protected void processMouseEvent(MouseEvent e) {
            // change the modifiers to believe that control key is down
            int modifiers = e.getModifiers() | InputEvent.CTRL_DOWN_MASK;
            // can I use this anywhere?  I don't see how to change the
            // modifiersEx of the MouseEvent
            int modifiersEx = e.getModifiersEx() | InputEvent.CTRL_DOWN_MASK;
            MouseEvent myME = new MouseEvent(
                (Component) e.getSource(),
                e.getID(),
                e.getWhen(),
                modifiers, // my changed modifier
                e.getX(),
                e.getY(),
                e.getXOnScreen(),
                e.getYOnScreen(),
                e.getClickCount(),
                e.isPopupTrigger(),
                e.getButton());
            super.processMouseEvent(myME);
        JFrame frame = new JFrame("Ctrl_Down_JList");
        frame.getContentPane().add(new JScrollPane(myJList));
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      public static void main(String[] args) {
        java.awt.EventQueue.invokeLater(new Runnable() {
          public void run() {
            createAndShowUI();
    }Any ideas would be much appreciated!

    Any ideas would be much appreciated!Here is a hack, idea is same as yours, but using Robot:
    public static void createAndShowUI2() {
         String[] items = { "Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat" };
         final JList myJList = new JList(items);
         myJList.addMouseListener(new MouseAdapter() {
              Robot robot;
                   try {
                        robot = new Robot();
                   } catch (AWTException ex) {
                        ex.printStackTrace();
              @Override
              public void mouseEntered(MouseEvent e) {
                   if (robot != null)
                        robot.keyPress(KeyEvent.VK_CONTROL);
              @Override
              public void mouseExited(MouseEvent e) {
                   if (robot != null)
                        robot.keyRelease(KeyEvent.VK_CONTROL);
         JFrame frame = new JFrame("Ctrl_Down_JList");
         frame.getContentPane().add(new JScrollPane(myJList));
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         frame.pack();
         frame.setLocationRelativeTo(null);
         frame.setVisible(true);
    }It does work, but there has to be some cleaner way of doing this, perhaps using SelectionModel but I don't know about it.
    Thanks!
    Edit: I found that if Control key is pressed manually, then this hack obviously, to handle this, it has to made dirtier:
    myJList.addMouseListener(new MouseAdapter() {
         Robot robot;
              try {
                   robot = new Robot();
              } catch (AWTException ex) {
                   ex.printStackTrace();
         Timer timer = new Timer(20, new ActionListener() {
              @Override
              public void actionPerformed(ActionEvent e) {
                   if (robot != null)
                        robot.keyPress(KeyEvent.VK_CONTROL);
            @Override
         public void mouseEntered(MouseEvent e) {
              if (robot != null) {
                   robot.keyPress(KeyEvent.VK_CONTROL);
                   timer.start();
            @Override
         public void mouseExited(MouseEvent e) {
              if (robot != null) {
                   robot.keyRelease(KeyEvent.VK_CONTROL);
                   timer.stop();
    });Edited by: T.B.M on Mar 13, 2010 10:06 PM

  • How do I set my project to advance to next slide on mouse click vs just play?

    Captivate 6 on mac running OS 10.7.5 file format in question .htm (firefox)
    I'm brand new to Captivate 6 (never used it before) I have put together a mock presentation from scratch which has a few introductory slides then a quiz. When I publish it there is a "play" button which is NOT the behavior I want.
    I watched a training video from Lynda.com and the insstructor imported a PPT file, there was a dialog box which asked the how to advance slide, there was a drop down menu and one of two options was advance "on mouse click". This is the behavior I'm looking for.
    I've scoured the internet and forums etc to find a comparable option elsewhere in Captivate 6 when creating from scratch vs importing from PPT and cannot find one anywhere. I've also read that you can insert a click box object and that that would do what I'm looking for but that doesn't work either.
    Does any such option exist and if so where/ how do I get to it/ use it. Please see attachments below. First screen shot is the first slide I get which isn't the first slide either, what's up with that? Next one is simply to show how the project just "plays" instead of advancing slide by slide. Third is my publish dialog box. Bottom line I don't want a "play" button I want the user to mouse click next, next, next etc. How do I do this?
    Thank you for any help or suggestions!

    Maybe I understand something wrongly, but thought you also wanted to know how you can make slides advance on clicking the Next button instead of having it playing on automatically? And instead of using the playbar you want to have a Previous and Next button?
    The way imported PPT with advance on Mouse click works is because there is a click box added to each slide that pauses that slide at its end. The user has to click on the slide to advance.
    A click box is an 'interactive' object: this means that you can have it pausing the slide, that the user can interact with it and trigger an action like 'Go to Next Slide'.
    You added (from what I see on the last screenshot) another interactive object, but now I'm confused: the third screenshot has a Prev and Next arrow, I think those are shapes. You do not need to add a click box on top of them (what I see on the last screenshot), they can be converted themselves into buttons. I blogged a lot about those shape buttons. Anyway, both click box and shape button can pause the slide. This is the case by default for click boxes (at the end of their duration, their timeline), for shape buttons you have to tell them to pause in the Timing accordion. In your case I certainly would choose a shape button because they can be put on a master slide, or timed for the rest of the project whereas Click boxes need to be unique on each slide, you'l have a lot of copy/paste to do then. In the Action accordion, On Success you choose the action, I think in this case you want 'Go to Next Slide' for the Next 'thing'
    As for the first screenshot, Rod explained that you cannot get rid of the play button for pdf output, but you can have a poster image instead of the blank screen. There is a folder icon in Preferences, Project, Start and End when you deselect AuotPlay.
    Here is a link to an article where I explain shape buttons:
    http://lilybiri.posterous.com/why-i-like-shape-buttons-captivate-6
    There is an on-demand webinar as well on the Adobe site which I presented, only about shape buttons.
    Lilybiri

  • Diable "open dialog box" on right mouse click so I can use l mouse to advance to next slide and r mouse click to "go back."  How in PP 2010 for mac????

    I do presentations in PP10.  I am new to macair, and used to Windows.  HOW DO I DISABLE THE "OPEN DIALOG BOX ON RIGHT CLICK"?  I would like to use L mouse to advance slide, and R mouse to go back.  The default is to use R mouse to open dialog box.  I can disable this by unchecking the box in "advanced" on the PC.  How do I do it with the Mac????
    Thanks
    hacmd

    Hi Rod,
    As originally stated in my opening post, the SWF is to be inserted into an Articulate '13 slide (what I called an aggregator originally - I tried not to bring them up since I don't want the chatter about "There's your problem - using Articulate"! ).
    Recall that posting this published file to our LMS did not allow right-mouse click functionality as the flash player menu just gets in the way.
    If I insert the captivate 6 files into Articulate as a Web Object (referencing the entire folder with html, htm and assets, and then posted to our LMS, and it DOES allow RM click operations in both IE and FF (although no sound on the Captivate slide in FF). But this is not what we want to do as this introduces 2 navigation controls (the Captivate one and the Articulate Player).
    Why must anything be posted to a web server for this functionality to work?
    I am able to go into the Captivate 6's published folder, and launch the Captivate demonstration by simply double clicking on the index.html file and this works great in both FF and IE after changing the security settings for flash.
    Again - I can not believe I am the only one out there trying to use the right-mouse click feature to do a software simulation by embedding the Captivate SWF into an Articulate '13 project.

  • Pressing mouse wheel (or Ctrl + Left Mouse Click) on navigation arrows does not open previous/next page in new tab anymore

    I am using the new Firefox Developer Edition as a stand-alone on Ubuntu, so I can still use the "old" version, too.
    Everything seems to be working fine, as in I am logged in and setup sync. But a few features I got very much used to are no longer working.
    When I click on "About Firefox Developer Edition", it shows these details:
    Firefox Developer Edition 36.0a2 (2014-12-09)
    Firefox Developer Edition is up to date
    You are currently on the aurora update channel.
    In my "old" Firefox, I can:
    1. Click with the mouse wheel on the navigation arrows to open the previous or next page in a new tab.
    2. "right mouse click" on the navigation arrows to see the list of previously visited pages of the current tab, and the ones I visited after the page I am on, if I clicked "back" once or more times. I can then click the mouse wheel or "Ctrl + Left Mouse Button" to open any of the pages in the list in a new tab.
    None of this works in the Developer Edition.

    To clarify, the list of previously or later visited pages does still show up when I right click on the navigation arrows in the Developer Version, but I cannot open any of the links in the list in a new tab with the mouse wheel or "Ctrl + Left Mouse Click".

  • Is it possible to Disable Right Mouse click In WebDynpro Java Application??

    Dear Experts,
    Is it possible to Disable Right Mouse click In WebDynpro Java Application??
    If yes then kindly suggest how.
    Warm Regards,
    Upendra Agrawal

    What is the use-case?
    Armin

  • Is it possible to generate a mouse click at specific coordinates on the stage?

    Let's say x = 100 and y = 100. So, I have my main swf file that contains an external swf file with a button. Would it be possible to generate a mouse click on that button?
    Any help would be greately appreciated.

    You don't do it that way - you'd just tell the button to dispatch a CLICK MouseEvent and anything listening for the click would get it... something like:
    myButton.dispatchEvent(new Event(MouseEvent.CLICK));

  • Possible to send a mouse click through a JFrame

    Hi there.
    is there a way to send a mouse click event through a frame to the whatever underneath (another application for example)?
    Scenario: I use a Frame for (bigger, colorful) MouseCursor representation (see http://forums.sun.com/thread.jspa?threadID=5394797). But of course... The Cursor has to be on top... And so it catches all mouseClickEvents....
    Please; all hints are welcome! How do I achieve to send mouse clicks through the JFrame...
    Thx in advance
    Andi
    Edited by: neobond on 30.06.2009 09:43

    You don't do it that way - you'd just tell the button to dispatch a CLICK MouseEvent and anything listening for the click would get it... something like:
    myButton.dispatchEvent(new Event(MouseEvent.CLICK));

  • Recording a series of mouse clicks possible with Flash?

    Hi,
    I am having a go at developing a drum machine and I have a collection of buttons that play audio.
    Is there a piece of code, or somewhere I can search to record a series of mouse clicks, ideally against a timer that I could then play back?
    I have no idea if this is possible (I am sure it is) or what to search for.

    you can record mouse clicks but timing in flash is approximate so may not be suitable for what you want.
    you can use getTimer() to record the number of ms that have transpired since your app started.  and you can use mouse click listeners to record when the mouse is clicked.

  • Ctrl+left mouse click

    Hello,
    i am using a java-program for simulation of digital curcuits.
    http://tams-www.informatik.uni-hamburg.de/applets/hades/html/
    To duplicate objects you must push ctrl+left mouse button. In a macintosh this is a shortcut for a right mouseclick and the contextmenue.
    My question: how can i turn off that there is the contextmenue when clicking left with ctrl-button?
    Can someone help me?
    Achim

    Hello macjack,
    i can also ctrl+left click in the finder and the kontextmenue opens. It does not depend on firefox. “hades" is a jar-archiv and is launched by the core service "jar launcher".
    You can download hades via:
    http://tams-www.informatik.uni-hamburg.de/applets/hades/archive/hades.zip
    In hadescopying an object like an AND-Gate you have to hold down the ctrl-key and click with the left mouse button....
    Achim

  • Want CP4 project to play like a "movie" - i.e. no mouse click by user to advance.  How?

    I recorded a simple 2 minute, 7 slide project.  I want the project to play more like a "movie", meaning I don't need the user to "click" to advance to the next slide.  So, no breaks, just play the project from slide 1 to slide 7.  How can I make this happen.  Was looking into slide properties (on slide enter and on slide exit), but nothing seems to make it work the way I want.
    Any thought?

    Hello,
    When you turned the PPT to a CP-file, which settings did you choose? You can have 'Automatic' or 'waiting for user clicks' (I'm not sure about the phrasing but you should recognize this). I presume that you choose the second option. Then the 'movie' will indeed wait for a user click.
    Lilybiri

Maybe you are looking for

  • How to Change Report Font Size in 11i

    Hi, Please let me know how to change font size of an existing report in Quick steps. Basically the printed report font size is too small. We change the font size from the printer but still it dose not change. We have 11i on Unix Server and a dot matr

  • Using drop pin feature in maps with other applications

    Hi members, hope one of you can guide me. How do I find code or hyperlink to allow an iPad user use a ' find on map' link on an interactive digital magazine to allow the drop pin function on maps show the user the location they were looking for on ma

  • Old iTunes with new iPod

    Hi, Here's my question. I have an older iPod from circa 2004. I want to get one of the new 'iPod videos'. If I do this can I use the new iPod with the iTunes that I have on my PC or is the iTunes only allowed to interface with the initial iPod that i

  • SunMC agent core dump but has a limit of zero and wont actually core dump

    Greetings, Before I put a call in with Sun, I thought I would find if anyone else has a similiar problem. I have SunMC 3.5.1 running on a number of platforms and generally it is quite stable. I do have a number of SunFire 1280's (Netra T-12 to SunMC)

  • Is Lightroom appropriate for scanned negatives and pictures

    What little I have read about Lightroom assumes pictures taken with a digital camera. I have two digital cameras (Nikon D70 and Canon Elf IS 850) which give me reason to try Lightroom, and it has been recommended to me by a big-time photography acqua