Up a score of one insert swf in captivate

I do not control many variables in captivate and wanted to know how to do the following scenario:
I realize a quiz of 10 questions via captivate I want to know the score at the end.
When the student answers correctly, before moving on to the other question it accesses a swf animation style is a penalty shootout game where he will be able scored 1 point if he succeeded. I will wish that this score is accumulated each time the learner brand appraisse the final result screen on a line other than the result of the quiz. For only the score against questions ascend to lms. What line of code do I insert in my swf file so that captivate retrieves the score via the swf animation?

That means the file path or link to the original file has been broken.   Apply the two fixes below in order as needed: 
Fix #1
Launch iPhoto with the Command+Option keys held down and rebuild the library.
Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
Fix #2
Using iPhoto Library Manager  to Rebuild Your iPhoto Library
1 - download iPhoto Library Manager and launch.
2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
4 - In the next  window name the new library and select the location you want it to be placed.
5 - Click on the Create button.
Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
OT

Similar Messages

  • Does inserted swf reflect changes when Cap movie is changed?

    I have several swfs in my Presenter presentation. If I make changes to the Captivate movies (the source file for the swf), then republish them, will the inserted swf update automatically? If not, can they be updated without having to delete them then insert them again?

    Unfortunately Leeann, an updated Captivate file will not automatically replace or update the swf you imported in the PowerPoint environment using the Presenter feature.  And simply replacing one swf for another gets pretty dicey with Captivate, especially earlier versions of Captivate because of multiple files that are created as a result of Captivate's publishing process.
    However, if you've published your Presenter content locally to your computer, then you might be able to try the following:
    Open your project folder where you've published your content to your computer.  From there open up the data folder; nested within that should be the resources folder.  Once inside the resources folder, you should see all the swfs you imported earlier.
    Run each swf by double-clicking so that you can see what swf corresponds to your Captivate material, and make note of the file name.  The idea here is to use the same file name for the existing swfs in the resources directory and use that information on the updated files that you republished from Captivate.
    Of course your individual results may vary, so I'd tread very lightly here...but you can give that a shot and see if it helps any.
    Regards,
    Rob
    www.robrode.com/yabb/

  • How to load and unload more than one external swf files in different frames?

    I do not have much experience on Adobe Flash or Action Script 3, but I know the basics.
    I am Arabic language teacher, and I design an application to teach Arabic, I just would like to learn how to load and unload more than one external swf files in different frames.
    Thanks

    Look into using the Loader class to load the swf files.  If you want to have it happen in different frames then you can put the code into the different frames.

  • How can I change the insert SWF File, I need to add a few things and make it better?

    How can I change the insert SWF File, I need to add a few things and make it better? Is there an option inside of the dreamweaver menu that I am not looking at. It would make it easier on me if I changed some things around and didn't have to do it all myself each time I used it. Just incase you was needing to remember what swf flash was, It is not a swf video either.
      <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="640" height="480">
        <param name="movie" value="Sonic Kaboom.swf">
        <param name="quality" value="high">
        <param name="wmode" value="opaque">
        <param name="swfversion" value="9.0.115.0">
        <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
        <param name="expressinstall" value="../Scripts/expressInstall.swf">
        <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
        <!--[if !IE]>-->
        <object type="application/x-shockwave-flash" data="Sonic Kaboom.swf" width="640" height="480">
          <!--<![endif]-->
          <param name="quality" value="high">
          <param name="wmode" value="opaque">
          <param name="swfversion" value="9.0.115.0">
          <param name="expressinstall" value="../Scripts/expressInstall.swf">
          <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
          <div>
            <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
            <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
          </div>
          <!--[if !IE]>-->
        </object>
        <!--<![endif]-->
      </object>
    </div>

    If I understand correctly, Sonic Kaboom.swf needs to be edited in a separate Flash authoring program and then reinserted into your HTML document. 
    As Murray said, Flash is dead.  Nobody uses it anymore.   We use HTML5, CSS3 and JavaScript animations which have universal support from Smartphones, Tablets and other web devices that can't support Flash.   Look at Edge Animate.
    HTML animation | Download free Adobe Edge Animate CC trial
    Nancy O.

  • Control where to start and stop an SWF file inserted into a Captivate 6 slide.

    I am working on a project in which I need to insert SWFs on to slides in Captivate 6 and I've reached a hick-up. Some of the SWFs only need to start play at a specific frame (which is not necessarily the beginning of the SWF) and stop play at a specific frame (which is not necessarily the end of the SWF).
    Is there a way, by use of "Execute Advanced Actions" or "JavaScript", to control the play of a SWF, inserted on a slide, so that it starts and stops at desired frames?

    I think it is almost there now. Thanks for putting me int he right direction. You may be able to offer observations on my coding:
    this.onLoad = function() {
        stop();
    this.onMouseMove=function()
        // Test current mouse position is within the dimensions of the image
        if(_root._xmouse >= 0 && _root._xmouse <= 130 &&
           _root._ymouse >= 0 && _root._ymouse <= 420)
            // It is safe to play the animation as the mouse is within the
            // stage area
            play();
        else
            // We must stop animating and revert back to the first frame
            gotoAndStop(1);
    this.onRollOut = function() {
        stop();
    http://www.trucklesoft.co.uk/silcox/lounge.html

  • Problem inserting .swf in dreamweaver 8.Help!!

    Hi everybody.I have a problem since a lot of time jaja.I habe
    problems inserting .swf files in dreamweaver 8.I can insert, when I
    press f12 to see in Internet Explorer you see the movie, but when
    you put mouse over the banner I design.This has a bad behavior, it
    transform to hand, because the banner is a buttom, and again
    transform in default mode and it doesn`t stay in buttom form.When I
    did the flash, I saw the .sfw file in HTML, that generated the same
    Flash, and it look good, and had a hood behavior, but when I insert
    in dreamweaver 8 it doesn`t work correctly.I download the
    Dreamweaver 8 Update 2. Now I have Dreamveaver 8.0.2 or something
    like that.
    I think that the problems is in the form that Dreamweaver
    Insert the .swf file.
    My way is Insertar - Media - Flash.
    Somebody can help me? this problem I can´t resolved and
    I new whit this.
    English is not mi first Language, sorry if I had mistakes.

    ok....
    i installed php 5.2.10
    and downloaded php-5.2.10 zip file i found .dll
    its ok
    but in next help topic (testing PHP installation (Windows) )
    [http://livedocs.adobe.com/dreamweaver/8/using/gs_18_q7.htm]
    i didnt gt the result...
    what may be the problem?
    plz advice
    thanks in advacne

  • Inserting swf within a swf

    I am creating a Captivate project, basically, as a shell with
    5 slides. Within each slide, I would like to insert swfs that I
    have previously published. As a result, each of the 5 slides will
    play while the embedded/inserted swf plays within. Have you ever
    tried to do this? It seems to work only if I don't include a
    skin--but I would like to include a skin on each of the swfs that I
    have inserted.
    Any ideas? Thank you.

    quote:
    Originally posted by:
    jdmosley
    How do you revert a project back to Captivate 3 when you hit
    a Captivate 4 limitation? Is there a simple way? I made a ton of
    changes in Captivate 4 and don't want to have to re-do them with
    the previously saved Cap3 version of the project. Thanks!
    You could copy/paste the slides from CP4 to CP3 - we just did
    that with a project. It doesn't retain all the slides settings (I
    think the buttons / goto slide etc) needed to be configured again,
    but it still beats having to redo the project from scratch in CP3
    ;o)
    quote:
    Originally posted by:
    isv2009
    Thanks for your reply.
    It seems to work whenever the embedded swf does not have a
    skin... and not work with a skin on it. Have you tried both cases?
    Sorry no I haven't tried this with swf's with skin. I just
    saw that your original question actually stated that, but I missed
    that part. I would imagine that a skin with a second playbar could
    mess things up in Captivate.
    If you have Flash skills an idea could be to make a simple
    "loader shell" which loads the animation you wish to import. That
    way the levels of the two playbars would be seperated even more and
    perhaps it would work.
    /Michael

  • How does one insert symbols in Pages?

    how does one insert symbols into a Pages documeent?

    do you know about the press and hold trick on the standard keyboard? try to press and hold on the letter A and watch the menu that pops up, or try to hold the zero key to get degrees.

  • Need to change as one insert stmt

    Hi,
    I'm using below two insert statements in side the procedure.can i re write as a one insert.pls help
            INSERT INTO REP_ITEM_STAT_OPN (
            REP_ID, ITEM_ID, TOT_STUD_BY_ITEM, TOT_TIME_BY_ITEM, MIN_TIME_BY_ITEM,MAX_TIME_BY_ITEM)
            SELECT LN_SEQ_REP_ID, ITEM_ID, COUNT(1), SUM(RESPONSE_DURATION), TO_CHAR(MIN(RESPONSE_DURATION)),
            TO_CHAR(MAX(RESPONSE_DURATION))
            FROM PSYCHOMETRIC_ITEM_STAT_OPN
            WHERE TEST_SESSION_DATE IS NOT NULL
            GROUP BY ITEM_ID;
            INSERT INTO REP_ITEM_STAT_OPN (
            REP_ID, ITEM_ID, TOT_STUD_BY_ITEM, TOT_TIME_BY_ITEM, MIN_TIME_BY_ITEM,MAX_TIME_BY_ITEM)
            SELECT LN_SEQ_REP_ID, ITEM_ID, 0, 0, '.','.'
            FROM PSYCHOMETRIC_ITEM_STAT_OPN
            WHERE TEST_SESSION_DATE IS NULL
            GROUP BY ITEM_ID;
            COMMIT;

    Hi,
    Use CASE to map all non-NULL values of test_session_date to a single value (1 in the example below).
    Add this CASE expression to your GROUP BY clause, and use it in NVL2 (or CASE, if you prefer) expressions when the value to be INSERTed is different for the NULLs and the non-NULLs.
    For example
    INSERT INTO REP_ITEM_STAT_OPN (
            REP_ID, ITEM_ID, TOT_STUD_BY_ITEM, TOT_TIME_BY_ITEM, MIN_TIME_BY_ITEM,MAX_TIME_BY_ITEM)
            SELECT    LN_SEQ_REP_ID
         ,       ITEM_ID
         ,       NVL2 (tsd_flag, COUNT (*),              0)
         ,       NVL2 (tsd_flag, SUM (RESPONSE_DURATION), 0)
         ,       ...     -- other columns needed
            FROM       got_tsd_flag
         (       -- Begin sub-query to compute tsd
              SELECT  ln_seq_rep_id
              ,     item_id
              ,     ...      -- other columns needed
              ,     CASE
                        WHEN  test_session_date  IS NOT NULL
                        THEN  1
                   END     AS tsd_flag
              FROM     psychometric_item_stat_opn
         )       -- End sub-query to compute tsd
            GROUP BY  ITEM_ID
         ,       tsd_flag;Rather than repeat the same CASE expression over and over, the statement above uses a sub-query to compute it once.
    Edited by: Frank Kulash on Dec 14, 2009 7:12 AM
    This is essentially Centinul's solution, only Centinul forgot to change the GROUP BY clause.

  • Inserting swfs in ASP include files, CS4?

    I'm having a problem inserting SWFs into ASP include files in CS4 and am wondering if there's a solution other than going back to CS3.
    I've been adding pages to this site on a daily basis and at some point a few years ago we needed to start using ASP includes. The C-wrapper is in the ASP file and the content is in the included file.
    Unfortunately, the way CS4 insists on adding SWFs leads to broken pages. The error in Firefox is:
    Active Server Pages error 'ASP 0139'
    Nested Object
    /MySite/MyFolder/MyTopic/include/includedFile.htm, line 93
    An object tag cannot be placed inside another object tag.
    So, MyFile.ASP uses include/includeFile.htm. The SWF is inserted into includeFile.htm. DWCS4 uses this code:
    <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="510" height="384">
          <param name="movie" value="/MySite/MyFolder/MyTopic/images/oneOfMany.swf" />
          <param name="quality" value="high" />
          <param name="wmode" value="opaque" />
          <param name="swfversion" value="9.0.45.0" />
          <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
          <param name="expressinstall" value="/Scripts/expressInstall.swf" />
          <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
          <object type="application/x-shockwave-flash" data="/MySite/MyFolder/MyTopic/images/oneOfMany.swf" width="510" height="384">
            <!--<![endif]-->
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="9.0.45.0" />
            <param name="expressinstall" value="/Scripts/expressInstall.swf" />
            <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
            <div>
              <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
              <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
            </div>
            <!--[if !IE]>-->
          </object>
          <!--<![endif]-->
        </object>
    I understand the problem with nested objects. I think what I'd really like is to keep CS4 but go back to the method CS3 was using to insert SWF files. This current method is especially difficult because when I change it and later reopen the file DW wants to "correct" it.
    Any helpful hints would be appreciated.
    Rob Mack

    Okay, my solution was to go find the old CS3 code and make a snippet out of it. This way I always have a piece of code that works -sort of- and at least it stays consistant. It's a little more work now but if the old CS3 code for a swf is present then CS4 won't complain.
    It seems to me that hard coding this into the CS4 product makes it kind of inflexible.
    Here is the CS3 code. It works in a file that will later be included in an ASP file. The CS4 code quoted previously doesn't work.
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','510','height','384','src','/MySite/MyFolder/MyTopic/images/oneOfMany','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','/MySite/MyFolder/MyTopic/images/oneOfMany' ); //end AC code
        </script>
          <noscript>
          <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="510" height="384">
            <param name="movie" value="/MySite/MyFolder/MyTopic/images/oneOfMany.swf" />
            <param name="quality" value="high" />
            <embed src="/MySite/MyFolder/MyTopic/images/oneOfMany.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="510" height="384"></embed>
          </object>
        </noscript>
    Rob Mack

  • Inserting swf to dreamweaver cs4

    Hi,
    Hoping someone could clarify for me please!
    currently putting together web site for client.  The web site has a very simple flash animation in it which the client apparently can't see and gets the prompt to upgrade to flash player v10.  (I've tested this on about 4 other computers and different browsers and it looks OK on all these!)
    Their IT guy tells me he has installed v10 on their pcs and that my code is wrong because it has:  <param name="swfversion" value="6.0.65.0" />"  and that it should be version 10.
    I've just checked the publish settings in flash and it is set to Flash Player 10 and ActionScript 3.0 so I'm a bit confused as to why my code does indicate it is v6.0.65.  I just use the insert swf option in Dreamweaver CS4 and let Dreamweaver write the code.
    Can anyone help????  I would really appreciate it!!
    Cheers,
    Karen

    It is best to let Flash generate an html page when published and copy/paste the code from that file into your html page.  I don't know what Dreamweaver does when you rely on it for insertng Flash content, but I don't trust it since it should rightfully do the same thing Flash does (same company--same suite of products), but it doesn't.

  • How to insert SWF into Presenter.

    Hello everyone.
    I've got a very nasty issue. I created a slideshow in
    Captivate and saved it as SWF file.
    When I try to import/insert SWF in a presentation (in
    Presenter) as "slide animation", I get nothing - the SWF still
    isn't imported.
    Also, I can do import SWF, when choose the "insert as sidebar
    animation" option.
    Any ideas how to insert SWF?
    I use PowerPoint 2007 and Captivate 3.

    Are you facing this problem for this Captivate createdswf or
    other swf file as well ? By other swf file i mean created using
    Flash Authoring or any other tool.
    Also check if swf plays in slideshow of PowerPoint when
    inserted using Presenter.

  • Manipulating inserted SWFs

    Is there a good way to manipulate inserted SWF animations
    (created in Flash) from Captivate? i.e. changing variables, pausing
    playback, etc?

    Hi RandyHickman and welcome to our community
    Unfortunately, there is not. Not simply within Captivate.
    It's really just designed to play an inserted .SWF and not interact
    with it.
    Cheers... Rick

  • Inserting flash into Captivate

    I have a flash (swf) file that I want to insert into my
    captivate that starts out Invisible (Transparent) it has a hotspot
    on it when you roll over that hotspot the body of the flash shows.
    Basically I'm trying to have a hide show layer on a specific
    screen. Since I can't do hide show, Im using flash. I made a
    scenario button when they mouse over that button it activates the
    flash and the the scenario appears. The problem is that my flash
    file starting 'active' where the scenario shows, when I mouseover
    it, it hides and then works how it should.

    Hi twindsor
    Umm, have you tried rollover captions or rollover images?
    These can be totally transparent with a reveal occurring when the
    user mouses over the hotspot area.
    Just wondering why these wouldn't accomplish what you are
    looking for.
    Just a thought... Rick

  • Convert to swf for Captivate

    Can someone please help me? I have a series of 8 second video clips (.mts) which I need to use as seperate clips in Captivate 4. But I can't seem to find a way of converting the clips to the .swfs needed in Captivate.
    I bought both Adobe eLearning Suite and Adobe Creative Suite 4 Production Premium. Besides searching the forums I tried converting with Adobe Media Encorder but that will only convert to .flv or .f4v which Captivate 4 won't import.
    As you may deduce I need batch converting. Each end result will contain about 30 of these short clips.
    Please tell me I missed some obvious Adobe way of doing this !!
    Thanks
    Andre

    Hi Andre,
    FLV is the way to go. You need to convert your clips to FLV using the Adobe Media Encoder and then insert them in Captivate as "Flash Video".
    You need to place each video on a separate slide as a Flash Video. You can't just import them directly into Captivate so maybe that's where you went wrong.
    The shortcut key for inserting Flash Video on a slide is CTRL + SHIFT + F.
    /Michael
    Click here to visit the www.captivate4.com blog

Maybe you are looking for