Click on the boxes with different audio

Hello!

I use 5 Cp and I have problems with the audio. Button or box where to click must play an audio short or long after that is clicked on.  In the text, I want to cover some words with boxes click with different sounds, students can click to hear the sounds. in the text, there may be a lot of words I want to cover with boxes to click.  Is it possible to do? If Yes please let me know how.

Thank you

Ok.  Who can be a little trickier.  Normally a button or click box has a break point on the timeline and once you click on the object continues to play beyond its break point.  This means that you get only a click... UNLESS... you change the Action when a click to be an advance Action that does two things.  First of all, it does everything you want to take place (for example to read the audio file) and THEN he moves the read head to a point BEFORE the break point so that you get another possibility to click New.

Blog of Lilybiri has some good examples of this sort of thing: http://lilybiri.posterous.com/

You may encounter a problem where even after you have everything installed correctly the buttons stop working after a while.  In this case your best recourse would be to use the Widgets event handler instead, these can transform any object into a clickable button screen.  But even better, is that they give you preferences to disable continue and the pass/fail criteria reset after Action so that your users can click on your buttons as often they like to repeat actions, these useful widgets trial versions can be downloaded here.

Tags: Adobe Captivate

Similar Questions

  • Hi I need to move my cs5 to a different cpu and do not have the box with the product key

    Hi I need to move my cs5 to a different cpu and do not have the box with the product key

    Quickly find your serial number

    Mylenium

  • Click on the boxes only works intermittently

    Hello

    I use 7 Captivate to develop a guide of online user and have problems with click boxes. Some of them will be randomly cease to function and to freeze the project when you click it (it is after having published both in the preview of Captivate). Who click on the boxes what happened is completely random - it will happen with a clickbox and 10 minutes later we're going to work even once and another (who worked previously) will have stopped working. This is without changing any settings.

    The clickboxes are just linking to other slides in the project and are put on pause until the user clicks. I checked that slide numbers are well positioned and checked the timeline to ensure that it is not not to do with this.

    There is other intermittent issues, how I feel, like images flown over appearing as red squares and the project as a big black screen. It is normally resolved by closing the preview and re - open.

    I was wondering if it could be to do with the size of the project (96 slides and 405 mb), because the problems are so random it seems to be bound to parameters.

    I use Windows 7 and the project is previewing or opening Internet Explorer 9 (using a work PC).

    Anyone have any idea what might solve this problem?

    Thank you.

    Tom.

    Tutt... Tutt... language...

    405 MB for a project with slides below 100 waaaayyyy sounds excessive to me.  You have to deal with a corrupt project file.

    I suggest that you create a new empty project of the same size and then copy paste groups of 10 or 20 slides from the old project to the new.  Sometimes, you can strip the corruption caused by files bloated this way that it forces Captivate to recreate all the unique object ID again, but nothing that do not directly relate to a slide is left behind in the old project file.

    Let us know what your size drops down for once you do the exercise of copy paste.

  • Can I deselect is more by clicking outside the box

    When I select a box in Photoshop CS6, can I deselect is more by clicking outside the box.  My ToolTip displays the cross with the sign at the bottom right to indicate I'm in additive mode.  I can do a right-click to display a menu drop-down and choose "deselect", but it's a drag that interrupts the flow of my thought and annoys me so much.  I tried to go to the preferences and ensuring that the slider is 'standard '. I have reset my preferences. Without ceiling locked, etc.. What is going on?  More importantly, how can I ensure that all I have to do is to click outside the selection to deselect.  I work on a Mac, if that makes a difference. I'd appreciate any help here.  Thank you.

    I need have the selection mode set to new selection in the options toolbar to make it work.

    Or Cmd + D to deselect.

  • Allowing the user to click on the boxes in any order

    Hello

    I am using Captivate 5.5 to create a training session with our software. On a particular page, our coach wants tell me the user to click on each box on a page. Since there are 10 check boxes, I want to let the user click on all the boxes in any order, and not upon them in the same order that I made using the normal training record.

    I tried to insert click areas and assign variables, but then I encountered the problem of not being able to show the check mark when the user clicks the check box.

    Has anyone experience this problem or tried to created a page where the user can click several object in no particular order?

    Thank you!

    Hello

    This is perfectly possible with the checkboxes widget and is a lot less work than to play with the images and click on the boxes. The big advantage of the widget boxes, is that it is static, you don't need to worry about the read head which would be the case if you are working with interactive rewinding objects. However if you want to offer the user a "reset", or return to the slide with the widget, I highly recommend to download the free widget boxes improved, created by Jim Leichliter, because it allows to control the variables associated with the widget.

    I'm not going to explain at length how to use it bit in a hurry because I have to teach in a few minutes. But here are a few links: first a link to Jim widget, a blog post where I explain the use of the widget by default checkboxes and third of the explanation of the improved version.

    Enhanced checkboxes

    Widgets and Custom issues - part 1

    Range of widgets...

    Just a last warning: I did not check the maximum boxes supported by the widget (you need 10), if necessary but you can insert the widget twice. However never reproduce a widget, or in the same space on the stage.

    Lilybiri

  • box in JTable - event should fire ONLY by clicking on the box

    Hello
    I have a Jtable implementation and a Boolean column I have a checkbox. due to being too big for this column header field, the column is much larger than the box. the checkbox can be toggled by clicking anywhere in the field. I don't want this behavior. the value should switch only when I click on the box (the square box with check/uncheck) and not in the vicinity of the area in the empty box.

    This behavior is possible. the default value is active and disables the box when you click on anywhere in this cell.

    appreciate the answers.

    Thank you
    Khan

    Thanks for noticing.

    //!Not thoroughly tested!
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class CheckboxInCellTest2 {
      String[] columnNames = {"Boolean(Default)","Boolean"};
      Object[][] data = {{false,true},{true,false},{false,true}};
      DefaultTableModel model = new DefaultTableModel(data, columnNames) {
        @Override public Class getColumnClass(int column) {
          return getValueAt(0, column).getClass();
        }
      };
      public JComponent makeUI() {
        JTable table = new JTable(model);
    //     table.addMouseListener(new MouseAdapter() {
    //       @Override public void mouseReleased(MouseEvent e) {
    //           JTable t = (JTable)e.getComponent();
    //           Point pt = e.getPoint();
    //           int row  = t.rowAtPoint(pt), col = t.columnAtPoint(pt);
    //           if(t.convertColumnIndexToModel(col)==1)
    //             t.getCellEditor(row, col).stopCellEditing();
    //       }
    //     });
        table.setRowHeight(20);
        CheckBoxEditorRenderer cer = new CheckBoxEditorRenderer(table);
        table.getColumnModel().getColumn(1).setCellRenderer(cer);
        table.getColumnModel().getColumn(1).setCellEditor(cer);
        JPanel p = new JPanel(new BorderLayout());
        p.add(new JScrollPane(table));
        return p;
      }
      public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
          @Override public void run() { createAndShowGUI(); }
        });
      }
      public static void createAndShowGUI() {
        JFrame f = new JFrame();
        f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        f.getContentPane().add(new CheckboxInCellTest2().makeUI());
        f.setSize(320,240);
        f.setLocationRelativeTo(null);
        f.setVisible(true);
      }
    }
    class CheckBoxPanel extends JPanel {
      public final JCheckBox button = new JCheckBox();
      public CheckBoxPanel() {
        super(new GridBagLayout());
        add(button);
        button.setOpaque(false);
        setOpaque(false);
      }
    }
    class CheckBoxEditorRenderer extends AbstractCellEditor
          implements TableCellRenderer, TableCellEditor, MouseListener {
      private final CheckBoxPanel editor = new CheckBoxPanel();
      private final CheckBoxPanel renderer = new CheckBoxPanel();
      private final JTable table;
      public CheckBoxEditorRenderer(JTable table) {
        super();
        this.table = table;
        editor.button.addMouseListener(this);
      }
      @Override public Component getTableCellRendererComponent(JTable table,
          Object value, boolean is, boolean hf, int row, int column) {
        renderer.button.setSelected(Boolean.TRUE.equals(value));
        return renderer;
      }
      @Override public Component getTableCellEditorComponent(JTable table,
          Object value, boolean isSelected, int row, int column) {
        editor.button.setSelected(Boolean.TRUE.equals(value));
        return editor;
      }
      @Override public Object getCellEditorValue() {
        return editor.button.isSelected();
      }
      //Copied form http://tips4java.wordpress.com/2009/07/12/table-button-column/
      private boolean isButtonColumnEditor;
      public void mousePressed(MouseEvent e) {
        if (table.isEditing() &&  table.getCellEditor() == this)
          isButtonColumnEditor = true;
      }
      public void mouseReleased(MouseEvent e) {
        if (isButtonColumnEditor &&  table.isEditing()) {
          table.getCellEditor().stopCellEditing();
        }
        isButtonColumnEditor = false;
      }
      public void mouseClicked(MouseEvent e) {}
      public void mouseEntered(MouseEvent e) {}
      public void mouseExited(MouseEvent e) {}
    }
    
  • Why the new update now automatically put my uid/pw in the box? Previously, I had to click on the box. It is a security risk.

    The latest update of Firefox now automatically my uid/pw in the boxes. Previously, I had discretion because they do not display unless I clicked on the box. Now anyone who uses my pc (same family), are they 'just' to go to my bank or other personal sites, the information is displayed. Although the pw is "played on" it makes no difference because it appears automatically.
    My concern is that the extra security of 'not seeming to be here' today has been removed. It wasn't a well-thought updated.

    You can enable/disable signon.autofillForms false on the topic: config page.

    You can open the topic: config page via the address bar.
    You can accept the warning and click on "I'll be careful" to continue.

  • When I click on the tab with a + on it, located next to the current tab, a new page does not open. If I click on 'New tab' in the file menu, a new tab do not ope

    When I click on the tab with a + on it, located next to the current tab, a new page does not open. If I click on 'New tab' in the file menu, a new tab does not open.

    Thanks for posting the details of your system. I'm skeptical about the "CompTool0234 Community Toolbar". Could you disable some add-ons and see if that helps.

    On this tab:

    Firefox orange (or the Tools menu) button > addons > Plugins category

    Disable «Conduit Plugin»

    On this tab:

    Firefox orange (or the Tools menu) button > addons > Extensions category

    Disable the CompTool0234 community toolbar.

    Then very probably a link will appear to restart Firefox to make the change. Does make a difference?

  • How to remove the drop-down list of previous searches in sites such as wikipedia? Do a right click in the box does not work.

    I can't remove the combo last searches sites such as wikipedia. Right click on the box does nothing.

    This has happened

    A few times a week

    Is always

    See also:
    Check if Firefox automatically fills in forms
    http://KB.mozillazine.org/Deleting_autocomplete_entries

  • Apple TV (Gen 4) remote will not work. I can restart the box with the remote, but can not select a country with her. Can someone help me?

    I tried to reload the remote upwards. But as I said, it won't work, but I can restart the box with him. Everyone knows about similar problems - can somebody help me please!

    Welcome to the Apple community.

    A very small number of people have had a similar problem, you have an Apple remotely from another device.

  • 'For' loop with a different number of iterations. Second, the auto-indexation of the tables with different sizes is done. It can affect the performance of the Vi?

    Hello

    I have a loop 'for' which can take different number of iterations according to the number of measures that the user wants to do.

    Inside this loop, I'm auto-indexation four different 1 d arrays. This means that the size of the tables will be different in the different phases of the execution of the program (the size will equal the number of measures).

    My question is: the auto-indexation of the tables with different sizes will affect the performance of the program? I think it slows down my Vi...

    Thank you very much.

    My first thought is that the compiler to the LabVIEW actually removes the Matlab node because the outputs are not used.  Once you son upward, LabVIEW must then call Matlab and wait for it to run.  I know from experience, the call of Matlab to run the script is SLOW.  I also recommend to do the math in native LabVIEW.

  • try to sync the music on my SD card box appears and asks if I want to format the device I click on the box to format, then he said: he can't format my device

    original title: How do I format my device

    I'm trying to sync music on my SD card in windows media player dialog box appears and asks if I want to format the device I click on the box to format then he said: he can't format my device

    Hello
    If there are no files on the SD card, go ahead and format. If there is, it is enough to click Cancel and open the folder in the folders where your music.
    B Eddie

  • I received a message on my email that my live hotmail is about to be eliminated, and information is required and click on the back with my information. True or phishing?

    I received a message on my email that my live hotmail is about to be eliminated, and information is required and click on the back with my information.  True or phishing?

    Hello

    This is a phishing scam.

    Don

  • I bought Photoshop CC 2015 creative thinking Cloud before running the trial version of my computer. After you have installed the creative cloud, the box with the number of days remaining still apears. How can I proceed?

    I bought Photoshop CC 2015 creative thinking Cloud before running the trial version of my computer. After you have installed the creative cloud, the box with the number of days remaining still apears. How can I proceed?

    Check your account indicates the subscriptions that you expect (and that the adobe, used in the next step id is correct) by logging in here and checking the status of your subscription, https://www.adobe.com/account.html

    then, if it's current, disconnect and then back to your client application using the adobe with the link above in cc id: http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

    If this fails, CC help | Applications creative Cloud back to update evaluation Mode to 2015 CC

  • How to read the data with different XML schemas within the unique connection?

    • I have Oracle database 11g
    • I access it via JDBC: Slim, version 11.2.0.3, same as xdb.
    • I have several tables, each has an XMLType column, all based on patterns.
    • There are three XML schemas different registered in the DB
    • Maybe I need to read the XML data in multiple tables.
    • If all the XMLTypes have the same XML schema, there is no problem,
    • If patterns are different, the second reading will throw BindXMLException.
    • If I reset the connection between the readings of the XMLType column with different schemas, it works.

    The question is: How can I configure the driver, or the connection to be able to read the data with different XML schemas without resetting the connection (which is expensive).

    Code to get data from XMLType is the implementation of case study:

     1   ResultSet resultSet = statement.executeQuery( sql ) ; 
    2   String result = null ;
    3    while(resultSet.next()) {
    4   SQLXML sqlxml = resultSet.getSQLXML(1) ;
    5   result = sqlxml.getString() ;
    6   sqlxml.free();
    7   }
    8   resultSet.close();
    9    return result ;

    It turns out, that I needed to serialize the XML on the server and read it as BLOB. Like this:

     1    final Statement statement = connection.createStatement() ;  2    final String sql = String.format("select xmlserialize(content xml_content_column as blob encoding 'UTF-8') from %s where key='%s'", table, key ) ;  3   ResultSet resultSet = statement.executeQuery( sql ) ;  4   String result = null ;  5    while(resultSet.next()) {  6   Blob blob = resultSet.getBlob( 1 );  7   InputStream inputStream = blob.getBinaryStream();  8   result = new Scanner( inputStream ).useDelimiter( "\\A" ).next();  9   inputStream.close(); 10   blob.free(); 11   } 12   resultSet.close(); 13   statement.close(); 14  15   System.out.println( result ); 16    return result ; 17
    

    Then it works. Still, can't get it work with XMLType in resultset. On the customer XML unwrapping explodes trying to pass to another XML schema. JDBC/XDB problem?

Maybe you are looking for