Interactions will not insert in Captivate 6

I am running a trial version of Captivate 6. When I try to insert interactions a screen of all available interactions appear but I cannot select any of them. If I try they disappear from the screen. Any thoughts.

Thanks Anjaneai,
Not all the present static widgets work fine in HTML5 output...
Do you mean that all widgets will be in the Interaction dialog box? I would prefer not, because even for the moment there are so many different objects there:
customizable interactions (accordion, tabs, ....) where you can adapt a lot, like colors, cnntent (audio, text, images); only one per slide can be inserted; not 'interactive' in the sense of interactive widgets (another confusion) since no reporting is possible
game-like interactions that have only limited customization (mostly only text - no colors, background...) like hangman, jigsaw.. same limitation: one per slide; maybe those are fun, but prettty useless (no variables, no possibility to include them in an assessment, and most important not customisable nor localisable)
static widgets mostly with variables (checkboxes, radiobuttons, countdown, hourglass...); more than one can be inserted, variables have to be created separately, some have limited customization, others have almost none but they give you some control (due to variables), not enough IMO (see extended widgets by Jim Leichliter that were based on textarea, checkboxes, radiobuttons); by using advanced actions those widgets, although static, can be used in custom questions because of those variables.
Lieve

Similar Messages

  • I purchased the Logitech F310 game controller for my 2011 MacBook Pro. How do I get the driver installed for it. The Disk that came with the controller is a mini disk and will not insert into my laptop.

    I purchased the Logitech F310 game controller for my 2011 MacBook Pro. How do I get the driver installed for it. The Disk that came with the controller is a mini disk and will not insert into my laptop.

    May not make a difference anyway. The Logitech support site does not show drivers for Mac OS for the F310:
    http://www.logitech.com/en-us/support/gamepad-f310?crid=411
    I'd contact their support to find out if there is a Mac driver available, and if they can either give you a web link to get it, e-mail you the software, or snail-mail you a standard-size disk with the drivers.

  • SQLJ classes (Will not insert result into table)

    /*@lineinfo:filename=SqljCircle*//*@lineinfo:user-code*//*@lineinfo:1^1*/import java.sql.SQLException ;
    import oracle.sqlj.runtime.Oracle;
    // iterator for the select
    /*@lineinfo:generated-code*//*@lineinfo:5^1*/
    // SQLJ iterator declaration:
    class myIter
    extends sqlj.runtime.ref.ResultSetIterImpl
    implements sqlj.runtime.NamedIterator
    public myIter(sqlj.runtime.profile.RTResultSet resultSet)
    throws java.sql.SQLException
    super(resultSet);
    RadiusNdx = findColumn("Radius");
    public int Radius()
    throws java.sql.SQLException
    return resultSet.getIntNoNull(RadiusNdx);
    private int RadiusNdx;
    /*@lineinfo:user-code*//*@lineinfo:5^33*/
    class SqljCircle
    //Main method
    public static void main (String args[])
    try {
    // set the default connection to the URL, user, and password
    // specified in your connect.properties file
    Oracle.connect(SqljCircle.class, "connect.properties");
    SqljCircle ti = new SqljCircle();
    ti.runExample();
    } catch (SQLException e) {
    System.err.println("Error running the example: " + e);
    } //End of method main
    //Method that runs the example
    void runExample() throws SQLException
    myIter iter;
    /*@lineinfo:generated-code*//*@lineinfo:28^1*/
    // #sql iter = { select radius from RADIUS_VALS };
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, SqljCircle_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    iter = new myIter(__sJT_result);
    finally
    __sJT_execCtx.releaseStatement();
    /*@lineinfo:user-code*//*@lineinfo:28^45*/
    while (iter.next()) {
    // To see the radius values:
    System.out.println(iter.Radius());
    int radInput = iter.Radius();
    double result=area(radInput);
    // To see the result values:
    System.out.println(result);
    /*@lineinfo:generated-code*//*@lineinfo:38^1*/
    //#sql { insert into RADIUS_VALS values(:radInput,:result) };
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    int __sJT_1 = radInput;
    double __sJT_2 = result;
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, SqljCircle_SJProfileKeys.getKey(0), 1);
    try
    __sJT_stmt.setInt(1, __sJT_1);
    __sJT_stmt.setDouble(2, __sJT_2);
    __sJT_execCtx.executeUpdate();
    finally
    __sJT_execCtx.releaseStatement();
    /*@lineinfo:user-code*//*@lineinfo:38^51*/
    /*@lineinfo:generated-code*//*@lineinfo:39^1*/
    //#sql { commit };
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, SqljCircle_SJProfileKeys.getKey(0), 2);
    try
    __sJT_execCtx.executeUpdate();
    finally
    __sJT_execCtx.releaseStatement();
    /*@lineinfo:user-code*//*@lineinfo:39^13*/
    iter.close();
    // Utility function to calculate the area
    public static double area (int rad) {
    double pi=3.1415926;
    double areacircle=pi*rad*rad;
    return areacircle;
    }/*@lineinfo:generated-code*/class SqljCircle_SJProfileKeys
    private static SqljCircle_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new SqljCircle_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClassT(getClass());
    private java.lang.Object[] keys;
    private SqljCircle_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "SqljCircle_SJProfile0");
    This SQLJ class compiles and runs ok, it retrieves a number from a table in my database, computes the result and prints them both out but it will not insert the result back into a table in my database, WHY????
    Philip.

    Thanks a million to all of you, the final working code;
    Zed
    <%
              String name = request.getParameter("name");
              String connectionURL = "jdbc:mysql://localhost:3306/";
              String dbName = "test";
              String userName = "root";
              String password = "";
         Connection connection = null;
         PreparedStatement pstatement = null;
         Class.forName("com.mysql.jdbc.Driver").newInstance();
    try {
         connection = DriverManager.getConnection(connectionURL+dbName,userName,password);
         String queryString = "INSERT INTO employees(id, name) VALUES (id, " + "'" + name + "'" + ")";
         pstatement = connection.prepareStatement(queryString);
         pstatement.executeUpdate(queryString);
         catch (Exception ex) {
         out.println("Error = " + ex.toString());
         pstatement.close();
         connection.close();
    %>

  • Widget will not insert

    Working with Dreamweaver and Flash software.  Using a template, couldn't get flv videos to insert correctly, got a white blank box at the tested website.  Finally downloaded widget as a solution, now widget will not insert.  It appears on the insert menu, I put the cursor in the insertion point and click on widget, and nothing happens.  I don't get the pop up widget box, I get nothing.  At my wits end.  Please help.  Working on thesis project and deadline coming up soon.

    After I posted, I noticed a similar post below.  Couldn't reinstall Dreamweaver as I have a thesis project I've been working on for awhile stored there.  Saw the fix to go to preferences and general and the problem was on the unchecked box to show dialog upon insertion.  Once I checked that box, the widget pop up worked.  Can't believe I have spent hours of wasted valuable time trying to figure this out.  Thanks!

  • DocProperty will not insert correctly

    I am using Word 2010 Autofill option. I have a few document property fields set up for a document. There is one field that will not set. I set the property in the advanced properties-custom box along with the other properties that I have specified. In the
    template I have inserted all of the properties in several places into the template from "quick parts"-"field"-"docproperty". There is one field "ProjectNum" with value "Project_Number" that will not stay. After
    I insert it I can click outside it, then go back and right click it, and in the pop up it has a edit-field option which will display the property. Then I go work on another part of the doc and come back to  the "Project_Number", right click
    and the edit-field option will not be shown! At this point the "Project_Number" field is plain text! The other property fields work fine. I've also saved it as a new document template as well and have same problem. I tried renaming the field and
    it's value as well.
    Thanks

    I'm not completely sure what you are doing or what is happening, but
     a. if you click Alt-F9, does your property field show up looking something like this:
    { DOCPROPERTY ProjectNum \*Mergeformat }
    ? (that's the "field code" view of the field).
     b. if you right-click on the result of a document property field, the right-click menu will display different options depending on whether Word has detected a spelling/grammar error in the result (which it probably will, if the "proofing language"
    is set to English and the result is "Project_Number"). Even in that case, if you click Alt-F9 to show the "field code" view, right-clicking should reveal the "field code" context menu.
    If that is what is happening and you want to avoid that problem, select the field result and go to Review->Language->Set Proofing Language..., and check "Do Not Check Spelling or Grammar"
    Peter Jamieson

  • File will NOT Publish in Captivate 5.5

    I have been a long time user of Captivate starting with Captivate 3 and working my way up to using Captivate 5.5 now.  At work, I have been working on a rather large scale project, but today one of my modules (about 279 slides) refuses to publish.  Mind you, I have probably published this thing 2 dozen times over the course of the past two weeks just fine. I do not know what the issue is.  Every time I publish the module it stalls at 70% generating slides and will not move any further.  I literally left it alone for over an hour and it did not budge.  I had two other co workers try on their computers and it did the same thing.  This led me to believe that it was the file (maybe it had somehow corrupted which has happened to me before), so I started chopping it into pieces, copying and pasting it into new modules and trying to publish it that way, but it did the same thing EVERY time.  I can publish any other modules just fine, but not this one and I don't understand why.  Knowing Captivate, unless there is another issue that I just don't know, I think I am literally going to have to recreate these slides from, copying and pasting the individual elements into a new project file with all new slides because something has glitched in the coding behind the scenes.  Please help because I do not want to have to do that for 279 slides!  Thanks!  Specs: Publishing to Zip File Scorm 1.2 Compliant and at Low Quality. 

    Try going into Edit > Preferences > Project > SWF Quality and turn off all compression options, then try publishing again.
    If that does not work, you may have something on some slide that is causing the issue. Try hiding groups of 50 slides in the project, one group at a time, publishing after each step, to see if there is one particular group that when hidden allows it to publish.  If you find that group, start hiding groups of slides inside that group until you isolate the problem slide.  Then recreate THAT slide.
    If you have hidden ALL slides in the project without being able to publish, then your issue could be corruption in some Advanced Actions in the project.  Copying all slides to a new project shell will strip out all Advanced Actions.  You'll need to recreate them.

  • CS4 When default transition will not insert with Ctrl-d

    I've hit a snag today I hadn't seen before.
    With two clips on the timeline, clip1 has the end trimed back 1 second, clip 2 has the beginning trimmed forward 1 second, so there is plenty of 'fat'.
    Now with time head on the joint of those two clips, Ctrl-d will simply not insert a default transition.
    In the past when this has happened its [b] ALWAYS [/b] been because 1 or the other side was not trimmed enough to accomodate the transition.
    None of that is true this time. Default trans is set to 47 frames  and I have 60 frames trimed (in all), and it is evenly trimmed.
    What else might cause inserting the default trans to fail?
    Oh, by the way the default audio transition inserts as expected with C-Shift-d.
    I thought to check the short-cuts and make sure I hadn't set Ctrl-d to something else but since we do NOT have any way to quickly search with that dialog, I gave up after a few minutes... it would take 3 days of 12 hrs shifts to find it.   But I'm nearly certain I haven't done that.

    It sounds like you do have adequate Handles (that's the "fat"), and Jeff has probably nailed the issue - Track not Targeted, but another little glitch can be if the two Clips to not quite butt up to each other, i.e. a tiny gap between them. If, when you do Target that Track, you still cannot do Ctrl+D, check for a gap between the two Clips.
    Good luck,
    Hunt

  • Help, 1.2 will not insert music (Audio)

    The audio track allways appears below the video as in the previous version, but has a yellow warning symbol and will not play. This occured on older videos from the previous version, that were on prior to upgrade, and also any new movies I create.
    I have deleted and re-installed the app, but it still wont work, I have tried to untick looped video, but all that does is reduce the audio to 0.5s, and it cant be streched etc.
    Not really happy with this "upgrade"
    -B

    I link to it in th epost above yours.
    http://www.iphonehacks.com/2013/09/download-itunes-11-1.html
    Scroll down to;
    Then click Mac, or whatever one is applicible to you.
    Be warned though. After synced, successfully, with iTunes 11.1, i ended up with over 10GB's of 'Other' data on my iphone. I had to do a factory reset (From iTunes/iPhone/Summary). It's been a pain in the ***, but it all seems fine now. But it has taken me hours. An di now have a headache.
    Also, a factory reset will remove ALL your data, and i mean EVERYTHING! You've spend the rest of the day putting everything back the way you like it, and setting up all your setting again.
    Pain in the ***.

  • CS3 will not insert a record

    I am having many problems with CS3, the latest is that I
    cannot get it to insert a record using aspvb.
    I have reduced the page down to one field so it should be
    straight forward.
    On insert the page refreshes but does not go to the next page
    and the record is not inserted.
    I have checked the connection and thats OK
    Cant think of what elso to do.
    Any ideas pleas?
    Thank you, John

    Preference deletion worked. Apparently Photoshop got all confused.
    On a Mac, hold down Command, Option, Shift while starting Photoshop. On a PC I think it is CTRL-ALT-Shift.

  • Captivate 8 does not detect Character files in eLearning Assets and will not insert them via the Media Image route.

    The eLearning Assets directory was installed in C:\Users\Public\Documents\Adobe\eLearning Assets\Characters_8_0.
    When I attempt to insert a Character, Captivate 8 (on Windows 7) loads the gallery where they would normally be displayed but this is empty of thumbnails. It does however recognise that their are categories of Business, Casual etc.
    Additionally, if I attempt to add any of the Character image files via Media>Image on the toolbar, Captivate 8 reports that the image is either corrupt or not of a supported format. Nevertheless, those very same image files will open in other applications without any problem.
    I have tried a reinstall of the Adobe eLearning Assets but this has made no difference.
    Any ideas appreciated.
    Malcolm

    Hi,
    I've since discovered that batch processing the images with IrfanView (which is unusual in being able to actually open them) and resizing them (though I dont think this aspect id actually necessary) the images can be worked with in other Windows programs, can be added to a Captivate progect via the Media>Image route but still do not show up in the Gallery of Characters via Media>Characters.
    This at least allows us to make use of the Character assets but is extremely time consuming as we need to resort to Windows' own thumbnail capabilities (Large Icons in Windows Explorer) to help make a 'quick' selection
    My researches have uncovered a multitude of Adobe/png issues - with Photoshop etc. It would apperar that there are problems associated with both the quality (24 bit) and transparency (being lost or inaccurately interpreted.)
    I don't think the images are 'corrupt' as such (they appear to be just 'Adobe'd') as I have installed and reinstalled the eLearning Assets package - both one that was downloaded several weeks ago and one that was downloaded just days ago.
    If I encounter (or am provided with a complete solution I will post it here.
    Good luck in the meantime.
    Malcolm

  • Capivate 3 project will not open in Captivate 4

    I have seen 2 items in this forum with simular problems. But both solutions did not help me.
    Today I have installed Captivate 4 for testing. I'm testing with one project that consists of 5 CP3 files. One main and 4 sub (cp) files.
    One has Quizing activated the rest not. At first I was able to open and convert the main file (Quizing activated) but than the second file did also ask for an other name and after entering the new name, nothing happens. Later I tried the first CP3 file again but it would not open anymore. The saved converted file I can still open in CP4.
    I have updated CP4 and CP3 but no success on opening the files in CP4. What can I do to solve this problem? After this test I have many more to convert.

    Hi there
    I'd be happy to try and convert one of the problem files for you if you like. This would provide the following information.
    * If I were successful, it would point to a possible issue on your end that you may be able to resolve.
    * If I were NOT successful, it would point to either an issue with this particular file, or to the process generically
    Your call on what happens next. If you are interested, you could use Acrobat.com or YouSendIt.com to transfer the files. All you would need is my E-Mail address, which is rstone75 (at) kc (dot) rr (dot) com
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Template with data variables will not insert ampersand

    Dear clever people
    I have an illustrator template (saved as .ai) which contains some text boxes and some images. I have tagged these as text and linked file dynamics, so that I can create a series of files with slightly different text and pictures when I load a variable library from an xml file.
    My problem - some of my text routinely includes ampersands and whenever I try and load a variable libaray containing "&" I get an error message saying "The filter cannot complete because of an unkown error."
    Is there some way I can explain to Illustrator what an ampersand is, and that refusing to insert it into my template is not the sort of helpful behaviour expected of a computer application?
    I'm using illustrator 10.0.3 with windows xp.
    Thank you in advance for any replies!

    Not sure, but sounds like a coding problem. The usual way to avid these is to "escape" characters by preceding them with a backslash in the source database/ document. \& might therefore work. Another way is to enclose it in quotes "&". Dunno, I came here for help myself, but these are generic programming tips that may work.
    Mylenium

  • Mapping is done ....but it is not inserting any rows

    hi,
    Mapping is validated successfully.
    We will deploy the code in the backend by generating the code.
    When the package is created and executed It.It shows me procedure completed succesfully...But it will not insert any rows.
    I am unable to find the reason for it.Please help me in solving this.
    Thanks,
    kiran

    what is your owb version
    how many rows are there in source
    what is your filter criteria and are any rows returned through simple sql but using that filter criteria.
    what is the loading type of your target table
    the ebst way is to debug the map and find out, i wouldnt recomment using backend code to debug as the ebst option since debug facility is availabe in owb, if that doesnt work then probably you can try using the package code.
    Edited by: Darthvader-647181 on Nov 18, 2008 1:54 AM

  • My Window Media Files will not run

    This is a strange one, We installed PE4 and have had no issues. Just last week when I render a video as a window media file, there is no outward indication of an issue. When I try to play the file it will not play on Window Media Player. And I have tried to insert the file into Powerpoint and it also fails. I can render the file as a quicktime file with no issue, but this will not insert into a powerpoint presentation. I tried to "repair" the installation and uninstall and reinstall to no avail. Window Media Player files just quit running. When I run old files that were rendered with the program no problem. Is there an issue with a Media Player Upgrade?
    Please Help........

    gtwalkeriii,
    What settings did you choose for the WMV? That could have a lot to do with it not playing. Have you tried to play it in programs like VLC Player? Have you run it though G-Spot (www.headbands.com/gspot) to see what it reports? Often, it will pick up errors in files. While it does a better analysis of MPEG and AVI files, most WMV's will also yield a report.
    Good luck,
    Hunt

  • Interactions not present in Captivate 7

    Hello,
    I was previously in a discussion with Rajeev (and Lilybiri) about this topic. It is still not resolved. I have renamed the folder in the preferences folder and restarted Captivate which generated a new folder.... and I have enabled myself as "root user" on my Macbook Pro running 10.9. The initial problem was posted as follows:
    I have purchased Captivate 7. There are supposed to be "interactions". When I go to ->Insert ->Interactions a blank popup window appears. When I start clicking around in that window a few interactions appear, but not he entire list. I need to access "web interaction" so as to import html into a Captivate project. If I click on any of the interactions and click "insert" I get popup saying "not a valid widget". I was told that these interactions are available "out of the box" for Captivate 7. Any ideas of how I can get this to work?
    Help would be greatly appreciated as Captivate 7 is useless to me without being able to access the interactions.
    Thanks,
    jcfactor

    Lilybiri, I f I may be allowed the privledge to rant a little bit... I have been keeping a log of all the communications here in a word document. Here is what you posted for me to do..I am pasting here:
    Hello and welcome,
    Something must have gone awry. Are you on Windows? In that case, close Captivate and browse to this path:
    Users\Public\Public Documents\Adobe\eLearning Assets\
    You'll find a folder Interactions there, delete that folder. Then restart Captivate. A fresh folder will be installed.
    Lilybiri
    In the post that followed I stated that I am on a MAC. So there is no possible way for me to do that......
    Rajeev then posted this:
    After you launch Captivate and create/open a project, please wait for sometime (maximum a couple of minutes) and then launch Interaction dialog.
    If it still doesn't work then You may also try to recreate your preferences.Delete or rename the Captivate 7 folder from the location mentioned below.
    Windows Vista and Windows 7: C:\Users\[user name]\AppData\Local\Adobe\Adobe Captivate 7
    Windows XP:  C:\Documents and Settings\[user name]\Local Settings\Application Data\Adobe\Adobe Captivate 7
    Mac:  /Users/[user name]/Library/Preferences/Adobe Captivate 7
    I have done this, TWICE.
    I have no idea where you have gotten the idea that I am working off a network drive as I am working off of a Macbook Pro that is not connected to any network (except internet). Might you have me confused with somebody else???
    As for the interactions/widgets question....I only mention BOTH because when I go "interactions" and click on one, I get the prompt "not a valid widget"
    I also do not like wasting time. I have already spent approximently 15 hours trying to resolve this issue. I spend a LOT of money on this program and do not think it an unreasonable expectation that it should work as advertised. I appreciate that you are spending free time and make the request that you spend NO more time on this personally and would appreciate being directed to the appropriate Adobe representitive.
    I only posted a second time because I posted back yesterday and received NO REPONSE all day long. After waiting 8 hours with no response, I figured the case was dropped and reposting was my only recourse.
    Thank you,
    John Carter

Maybe you are looking for