Multiple Mouse Clicks in Captivate?

hi,
i'm trying to get a mouse to click twice on one slide... is
this possible? if it's not, how do i get it to advance seemlessly
to the next slide?
thanks

Welcome to the user community, tdelman. The mouse can have
only a single beginning point and ending point on any one slide. To
move to the next slide - where the mouse will begin where it ended
on the prior slide - do nothing. When the slide ends on the first
slide, it will (to use your word) "seamlessly" move to the
following slide with no action on your part.
Hope this helps.
.

Similar Messages

  • Record Audio in Captivate 4 for PP Slide with multiple mouse click animation

    I have a power point presentation imported into  Captivate 4.  Several of the slides have custom animation that ocurr's on mouse click. What is the best way to record the audio for these slides and have the audio sync to the right portion of the slide?

    I am afraid there is no direct way to solve your problem. You can identify the time at which the movie stops because of an on-click animation. At every location, insert a transparent caption (blank caption) and add audio to the caption.
    Thus once the movie pauses for the user to click, audio wont appear till user click on the swf. Once he does, movie timeline will move ahead and transparent caption will appear thus playing the audio file.
    Hope this helps. Do let us know if it works.
    Regards,
    Mukul

  • Mouse Clicks in Captivate

    I have a number of captivate animations that have mouse
    clicks. However even though I have set and checked all mouse clicks
    the 'click' audio does not consistently work. Is there a trick to
    setting the audio click.
    I am using Captivate V2.0.0 build 1177

    Hi Mike Wald and welcome to our community
    Sorry, but I'm a bit confused by your post. Which is true?
    Are you saying that a mouse click is heard and you don't want
    it to be? If so, take a look at the links below:
    Link One
    Link
    Two
    Or is it that you
    want to hear mouse clicks and are not? In this case, other
    than checking each mouse movement, I'm a bit stumped.
    Cheers... Rick

  • Newly installed Cap 8 not capturing mouse clicks

    Newly installed Captivate 8 is not capturing my mouse clicks.  Captivate is set to Training & I have my regular settings selected.  I have also worked with the application I am trying to capture before and did not experience any issues.  Thoughts?

    Hi there,
    Please tell which Operating system is it?
    If it is Windows, then have you installed the 32 bit version or 64 bit of Captivate?
    Again, if it is Windows please try to run it as admin, by right clicking the Captivate launch icon.
    Thanks.

  • Issues with mouse clicks/jumps after using CleanMyMac App.

    Since using this app. my hitherto slightly slow responding iMac has required multiple mouse clicks and is less/unresponsive.
    Anyone else used this software?
    As yet have not approached CleanMy Mac.
    I have reinstalled Mountain Lion (download) not clean install.
    Any suggestions? Is there a separate app for mouse that I can reload. Im guessing a minor chunk of code was deleted along with rubbish.
    Reg25x

    Uninstall CleanMyMac and do not reinstall it.
    CleanMyMac is one of a broad category of time- and money-wasters capable of causing system corruption that can only be rectified by reinstalling OS X, restoring from a backup, or completely erasing your system and rebuilding it from the ground up. Get rid of it and test your Mac for operation. If it does not perform normally, the possibility that Cleanmymac resulted in system corruption must be considered.
    The vast majority of Mac problems reported on this site are the direct result of having used garbage like that. Never install such junk on a Mac.

  • At runtime, can it be determined if multiple overlapping objects/layers exist beneath a mouse click?

    Hi folks - total nube here. I am trying to find out whether I can determine if multiple objects exist beneath a usr's mouse click coordinates. The objects will be either shaded areas under a LineSeries in a chart or possibly overlayed images representing such areas (not sure which approach would be better). I know that I can probably determine alebraically whether the coordinates selected b a mouse click belong under one series or another or multiple and if this is the best option, then I will proceed with it. But possibly, there is a way for me to determine whether a shaded area under a series or a grpahical element exists under those coordinates. Any hints? Thanks in advance.

    Yes, export it for your reference first. make it delete and create new one.
    hope it should work fine.
    thx
    Deep

  • Multiple Buttons in JTable Headers:  Listening for Mouse Clicks

    I am writing a table which has table headers that contain multiple buttons. For the header cells, I am using a custom cell renderer which extends JPanel. A JLabel and JButtons are added to the JPanel.
    Unfortunately, the buttons do not do anything. (Clicking in the area of a button doesn't appear to have any effect; the button doesn't appear to be pressed.)
    Looking through the archives, I read a suggestion that the way to solve this problem is to listen for mouse clicks on the table header and then determine whether the mouse clicks fall in the area of the button. However, I cannot seem to get coordinates for the button that match the coordinates I see for mouse clicks.
    The coordinates for mouse clicks seem to be relative to the top left corner of the table header (which would match the specification for mouse listeners). I haven't figured out how to get corresponding coordinates for the button. The coordinates returned by JButton.getBounds() seem to be relative to the top left corner of the panel. I hoped I could just add those to the coordinates for the panel to get coordinates relative to the table header, but JPanel.getBounds() gives me negative numbers for x and y (?!?). JPanel.getLocation() gives me the same negative numbers. When I tried JPanel.getLocationOnScreen(), I get an IllegalComponentStateException:
    Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: component must be showing on the screen to determine its location
    Can someone tell me how to get coordinates for the button on the JTableHeader? Or is there an easier way to do this (some way to make the buttons actually work so I can just use an ActionListener like I normally would)?
    Here is relevant code:
    public class MyTableHeaderRenderer extends JPanel implements TableCellRenderer {
    public MyTableHeaderRenderer() {
      setOpaque(true);
      // ... set colors...
      setBorder(UIManager.getBorder("TableHeader.cellBorder"));
      setLayout(new FlowLayout(FlowLayout.LEADING));
      setAlignmentY(Component.CENTER_ALIGNMENT);
    public Component getTableCellRendererComponent(JTable table,
                                                     Object value,
                                                     boolean isSelected,
                                                     boolean hasFocus,
                                                     int row,
                                                     int column){
      if (table != null){
        removeAll();
        String valueString = (value == null) ? "" : value.toString();
        add(new JLabel(valueString));
        Insets zeroInsets = new Insets(0, 0, 0, 0);
        final JButton sortAscendingButton = new JButton("1");
        sortAscendingButton.setMargin(zeroInsets);
        table.getTableHeader().addMouseListener(new MouseAdapter(){
          public void mouseClicked(MouseEvent e) {
            Rectangle buttonBounds = sortAscendingButton.getBounds();
            Rectangle panelBounds = MyTableHeaderRenderer.this.getBounds();
            System.out.println(Revising based on (" + panelBounds.x + ", "
                               + panelBounds.y + ")...");
            buttonBounds.translate(panelBounds.x, panelBounds.y);
            if (buttonBounds.contains(e.getX(), e.getY())){  // The click was on this button.
              System.out.println("Calling sortAscending...");
              ((MyTableModel) table.getModel()).sortAscending(column);
            else{
              System.out.println("(" + e.getX() + ", " + e.getY() + ") is not within "
                                 + sortAscendingButton.getBounds() + " [ revised to " + buttonBounds + "].");
        sortAscendingButton.setEnabled(true);
        add(sortAscendingButton);
        JButton button2 = new JButton("2");
        button2.setMargin(zeroInsets);
        add(button2);
        //etc
      return this;
    }

    I found a solution to this: It's the getHeaderRect method in class JTableHeader.
    table.getTableHeader().addMouseListener(new MouseAdapter(){
      public void mouseClicked(MouseEvent e) {
        Rectangle panelBounds = table.getTableHeader().getHeaderRect(column);
        Rectangle buttonBounds = sortAscendingButton.getBounds();
        buttonBounds.translate(panelBounds.x, panelBounds.y);
        if (buttonBounds.contains(e.getX(), e.getY()) && processedEvents.add(e)){  // The click was on this button.
          ((MyTableModel) table.getModel()).sortAscending(column);
    });

  • Pressing cntrl+left mouse click doesn't select multiple rows.

    Hi,
    I've got this problem after i migrated my form from 6i to 10g.
    In 6i version, cntrl+left mouse click used to work in order to select multiple rows on the screen. But, it's not working in 10g.
    Instead, Shit + left mouse click is working to select multiple rows in 10g.
    Please can someone help me out with this. I want cntrl + left mouse click to work.
    Any help will be appreciated.
    Regards
    Navnit

    Hi Pradeep,
    Thanks for your reply.
    Do you mean fmrweb.res file?
    This is the content of my res file
    9 : 0 : "Tab" : 1 : "Next Field"
    9 : 1 : "Shift+Tab" : 2 : "Previous Field"
    116 : 0 : "F5" : 3 : "Clear Field"
    38 : 0 : "Up" : 6 : "Up"
    40 : 0 : "Down" : 7 : "Down"
    33 : 0 : "PageUp" : 12 : "Scroll Up"
    34 : 0 : "PageDown" : 13 : "Scroll Down"
    69 : 2 : "Ctrl+E" : 22 : "Edit"
    10 : 0 : "Return" : 27 : "Return"
    76 : 2 : "Ctrl+L" : 29 : "List of Values"
    115 : 0 : "F4" : 32 : "Exit"
    75 : 2 : "Ctrl+K" : 35 : "Show Keys"
    83 : 2 : "Ctrl+S" : 36 : "Commit"
    118 : 1 : "Shift+F7" : 61 : "Next Primary Key"
    117 : 0 : "F6" : 62 : "Clear Record"
    38 : 2 : "Ctrl+Up" : 63 : "Delete Record"
    117 : 1 : "Shift+F6" : 64 : "Duplicate Record"
    40 : 2 : "Ctrl+Down" : 65 : "Insert Record"
    119 : 1 : "Shift+F8" : 66 : "Next Set of Records"
    1005 : 0 : "Down" : 67 : "Next Record"
    1004 : 0 : "Up" : 68 : "Previous Record"
    118 : 0 : "F7" : 69 : "Clear Block"
    66 : 2 : "Ctrl+B" : 70 : "Block Menu"
    34 : 1 : "Shift+PageDown" : 71 : "Next Block"
    33 : 1 : "Shift+PageUp" : 72 : "Previous Block"
    116 : 1 : "Shift+F5" : 73 : "Duplicate Field"
    119 : 0 : "F8" : 74 : "Clear Form"
    122 : 0 : "F11" : 76 : "Enter Query"
    122 : 2 : "Ctrl+F11" : 77 : "Execute Query"
    69 : 3 : "Shift+Ctrl+E" : 78 : "Display Error"
    80 : 2 : "Ctrl+P" : 79 : "Print"
    123 : 0 : "F12" : 80 : "Count Query"
    85 : 2 : "Ctrl+U" : 81 : "Update Record"
    121 : 3 : "Shift+Ctrl+F10" : 82 : "Function 0"
    112 : 3 : "Shift+Ctrl+F1" : 83 : "Function 1"
    113 : 3 : "Shift+Ctrl+F2" : 84 : "Function 2"
    114 : 3 : "Shift+Ctrl+F3" : 85 : "Function 3"
    115 : 3 : "Shift+Ctrl+F4" : 86 : "Function 4"
    116 : 3 : "Shift+Ctrl+F5" : 87 : "Function 5"
    117 : 3 : "Shift+Ctrl+F6" : 88 : "Function 6"
    118 : 3 : "Shift+Ctrl+F7" : 89 : "Function 7"
    119 : 3 : "Shift+Ctrl+F8" : 90 : "Function 8"
    120 : 3 : "Shift+Ctrl+F9" : 91 : "Function 9"
    113 : 0 : "F2" : 95 : "List Tab Pages"
    72 : 2 : "Ctrl+H" : 30 : "Help"
    112 : 0 : "F1" : 30 : "Help"
    I don't know what value should i enter for cntrl + left mouse click ?
    Even for shift + left mouse click, row is not there but it's working.
    Please tell if you know what row should i enter for cntrl + left mouse click in order for it to select mutliple rows?
    Regards
    Navnit

  • Captivate 8 - Mouse Click/Audio Narration Issue

    I receorded my software simulation, then added recorded narration to each slide afterward. When I go to preview my course, each time the mouse click happens, the audio narration volume is decreased slighly before, during, and slightly after the mouse click. I wish I could say it was by a neglible amount, but on certain slides it nearly "covers" my narration completely. I can't seem to find anything in the Adobe Captivate forums about this specifically, which is surprising! So that leads me to believe there is a setting somewhere. Has anyone else encountered this?

    Hi there
    The fact you don't see references to this in the forums is indicative of the fact that (at least for me) this is the first such report I've seen of this specific behavior. It could be that it's a bug. Following that, I'd strongly urge you to file a bug report on it using the link below:
    http://www.adobe.com/go/wish
    The behavior you are describing is consistent with what I might expect of the Background Audio and Slide narration.
    If you aren't using Background Audio, perhaps try clicking Audio > Import to > Background so you get the dialog. Then configure the dialog so you clear the option for reducing the volume.
    Once you have done this and clicked Save, click Audio > Remove > Background and see if that fixes anything. If not...
    Try clearing the preferences and publish again,
    My crystal ball is on the fritz and my psychic skills are nearly non-existent, so I can't tell whether you are using the Mac or the PC version. But if it's the PC version, here is how you clear the preferences.
    Close Captivate
    Right-click the Shortcut icon and choose Properties
    From the Shortcut tab, click the Open File Location button
    Windows Explorer should open - From there, locate the Utils folder
    Double-click the CleanPreferencesWin.bat file
    Restart Captivate and test
    Cheers... Rick

  • Problems using right-mouse click functionality in a Captivate added to Articulate?

    Has anyone experienced any problems using the right-mouse click functionality? It's working fine when I preview the project, or view the published Captivate SWF or HTML file, but it's not working when I insert the published Flash file into Articulate and then try it in the published Articulate. I'm using AS2 and Flash Player v10. When I try to right-click it's bringing up the Flash Settings menu you can click on. I've been into my Flash Manager and told it to always allow content from the folder my Articulate is in but that hasn't made any difference. I'm viewing the Articulate on my C drive and I have read that that can cause problems - does anyone have any ideas? If I left-click it recognises it as a click but doesn't recognise it as the correct click action, so just keeps on bringing up my failure caption and won't allow me to progress.
    Thank you!

    Hello,
    The right-click functionality in Captivate is 'in' the JS-file, that is called by the HTML-file that will open the SWF. But if you insert the SWF-file in Presenter (Articulate or Adobe) the right-click functionality will not be there, because you are not using the JS-file. BTW: this was also explained in the thread where you posted this same question before. Please, do not post the same question in 2 different threads
    Lilybiri

  • Multiple JButtons inside JTable cell - Dispatch mouse clicks

    Hi.
    I know this subject has already some discussions on the forum, but I can't seem to find anything that solves my problem.
    In my application, every JTable cell is a JPanel, that using a GridLayout, places vertically several JPanel's witch using an Overlay layout contains a JLabel and a JButton.
    As you can see, its a fairly complex cell...
    Unfortunately, because I use several JButtons in several locations inside a JTable cell, sometimes I can't get the mouse clicks to make through.
    This is my Table custom renderer:
    public class TimeTableRenderer implements TableCellRenderer {
         Border unselectedBorder = null;
         Border selectedBorder = null;
         public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected,
                   boolean hasFocus, int row, int column) {
              if (value instanceof BlocoGrid) {
                   if (isSelected) {
                        if (selectedBorder == null)
                             selectedBorder = BorderFactory.createMatteBorder(2,2,2,2, table.getSelectionBackground());
                        ((BlocoGrid) value).setBorder(selectedBorder);
                   } else {
                        if (unselectedBorder == null)
                             unselectedBorder = BorderFactory.createMatteBorder(2,2,2,2, table.getBackground());
                        ((BlocoGrid) value).setBorder(unselectedBorder);
              return (Component) value;
    }and this is my custom editor (so clicks can get passed on):
    public class TimeTableEditor extends AbstractCellEditor implements TableCellEditor {
         private TimeTableRenderer render = null;
         public TimeTableEditor() {
              render = new TimeTableRenderer();
        public Component getTableCellEditorComponent(JTable table, Object value,
                boolean isSelected, int row, int column) {
             if (value instanceof BlocoGrid) {
                  if (((BlocoGrid) value).barras.size() > 0) {
                       return render.getTableCellRendererComponent(table, value, isSelected, true, row, column);
             return null;
        public Object getCellEditorValue() {
            return null;
    }As you can see, both the renderer and editor return the same component that cames from the JTable model (all table values (components) only get instantiated once, so the same component is passed on to the renderer and editor).
    Is this the most correct way to get clicks to the cell component?
    Please check the screenshot below to see how the JButtons get placed inside the cell:
    http://img141.imageshack.us/my.php?image=calendarxo9.jpg
    If you need more info, please say so.
    Thanks.

    My mistake... It worked fine. The cell span code was malfunctioning. Thanks anyway.

  • No more mouse click sounds for buttons on Captivate 5

    I have been working on a project that uses buttons and click boxes.  Previously the mouse click played when the button was selected, but now there is no mouse click sound when selecting the button.  When closing the application I see a message that pops up saying "Discovering Unreachable Audio".
    I also tried to create a new project with buttons and the mouse click still does not play.
    I double checked in the properties for the button and the box for "Disable Click Sound" is NOT checked, so I know that this is not the problem.
    I am using Windows XP SP3.
    Any advice on how to correct this is greatly appreciated!
    Thanks

    Did you ever find a solution to this?  I am having the same trouble.  The mouse click will not play despite the fact it is selected.  Some mouse clicks will play so I don't know what the issue is.  Also if I change it to a custom mouse click it the sound will play.

  • Multiple Audio Objects in Captivate 5...

    Hi,
    I am looking to create a series of Captivate 5 slides that contain numerous audio objects, these objects will play the associated audio at a given time defined by mouse click, rollover, or a similar event.  The slide should remain persistent until the user clicks a button that will progress them to the next slide in which a similar format will be presented.
    So the creation of the button to progress is a simple case, but the creation of the audio objects that will play due to various user events seems not so straight forward, and this may be because I am yet to find my Captivate timelines hat.
    I have tried creating slidelets that I add audio to and then tried adding the On Rollover property of Execute Advanced Action.  I then created an expression in which I set a script to extract the current frame and add a value to this so that it would allow the slide to exceed the natural pause point that was created with the introduction of buttons.  However this had the undesirable effect of simply activating all audio at the same time.  When I staggered the slidelets in the time line after the pause of the button, only one of the slidelet was available, as the other were too staggered in the timeline and were not visible at the time of pausing.
    I just wondered if I am on the right path here, or if there is a simple way of doing what I would like to do, which is to allow students to see text and rollover/click and hear audio of the text, or to have a button that will do this.  It may also be necessary to allow the students to see a question that when clicked on the answer will be spoken.
    Any assistance is greatly appreciated.
    Kind regards.
    Captivate 5 - Version 5.0.0.596
    On a 32 bit Windows XP System

    Sorry to just now be writing back.  I've had a busy week (including a computer crash ).
    I am wondering how you are inserting audio.  Is each audio file done separately?  Did you record one large audio file and then take clips from it?
    I have found that if I try to use audio clips, it doesn't work.  I get all sorts of errors.  So I have had to splice one large audio file using another application (like audacity) and export them as a separate file with a unique file name.  Doing this solved all my problems with audio.  I used to have the same problem where I would hear the audio from the first slide over and over.
    You might also want to make sure that you don't have audio set to the slide itself.  Or again, make sure it's NOT added to the rollover object, but to the caption.
    I just did a test using multiple rollovers with different audio and it worked great for me with no hitches.
    I think you mentioned that you have a button, too.  That's perfect because you need something that will pause the slide until the user has a chance to use all of the rollovers.
    Hopefully you've had time to figure this out on your own, but if not, I hope this helps.  I think the problem has more to do with your audio than with the rollovers.

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

  • 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

Maybe you are looking for

  • NOT ABLE TO SEE SQL EXPRESSION FIELDS IN CR2008

    Hi, I am not able to see the SQL EXPRESSION FIELDS in the FIELD EXPLORER of CR 2008.Can you please help me BABASHARI

  • Htmldb_application array reset based on interactive report filter

    Hello I was searching various forums on this topic and did not find usefull answer. I must be doing something wrong or just do not understand how come that others do not have this problem?? Anyway, here it is. I have interactive report where first co

  • Best Java Text Editor

    Which is the best java text editor? I am using Forte for Java but was told JBuilder is better. Also does anyone know how to change the view in the Forte program. Ive got seperate windows everywhere.

  • Seem to have lost itunes in my browser in imovies.

    Seem to have lost itunes in my browser in imovies. I can access my itunes library but cannot access the itune store. The itune icon is the list but i cannot open it. I'm pretty new to all this so please if anybody can help i would be grateful. Also y

  • Odd color shifts when changing displays

    Ever since I upgraded from Snow Leopard to Lion, I've experienced some weird problems with colors appearing not right when I disconnect my MBP in closed-clamshell mode from a 27" LED Cinema Display and simply use it with its built-in display (1600 x