Issues with coverted files of captivate from CP2 to CP4

Hi Adobe,
We have a captivate files made using CP2 and saved it as CP4 and published it for Flash8, AS2 and SCORM 1.2.
This a multi-sco course and each SCO had one CP file
1st CP file contains the simulation with few self-checks in it and the
2nd CP file contain the assessment questions.
When we tested it on the Docent LMS the following issues were identified.
1.      for 1st CP file à The bookmarking is not working
a.      Bookmarking worked fine until the course was not completed. But after completion of the course bookmarking did not work properly. Since we have multi SCO structure the leaner can revisit the completed SCO.
b.      The course did not mark as completed on the LMS on the first attempt but on 2nd attempt it did.
c.      If the course is again launched after completion and the Rewind button is clicked or slider is dragged the course gets marked as  "incomplete" on the LMS and does not get changed to complete even after the last slide is viewed and we were not able to re-enroll again.
d.    The interactivities built using the inbuilt captivate templates (MCSS/MCMS/True-False) can not be re-attempted.
2.      For 2nd CP file – Score value does not get properly recorded on LMS
a. The LMS does not record the accuracy value on the LMS, due to which the completion status does not get fired.
b. If we launch and exit the module without attempting any of the questions then a Failed status is sent to the LMS. Is this something that can be resolved using the Captivate publish settings?
b. Even when the bookmarking is set to false, when the assessment is re-launched, the starts from the bookmarked position and are not able to go back to reattempt from the beginning.
Can you guide us on how we can overcome these issues.
Thanks
Regards,
Siddharth Lodha

Thanks for the reply, Bartok, but those didn't seem to work for me. Maybe I applied them incorrectly as that thread was for the Win platform and not Xcode and I might have translated the solution poorly.
Basically I went to the "Release_Cocoa64" target, and scrolled down the "Build Settings" page. I then edited the BOOST_PREPROCESSOR_DEFINITIONS field.
First I tried just appending BOOST_SYSTEM_NO_DEPRECATED.
Second I thought that this might be a macro of some sort so I tried $(BOOST_SYSTEM_NO_DEPRECATED).
Finally, I deleted all the previous values and added "BOOST_ALL_DYN_LINK BOOST_REGEX_USE_CPP_LOCALE BOOST_REGEX_RECURSIVE BOOST_HAS_ICU=1 BOOST_ FILESYSTEM_VERSION=3 BOOST_CHRONO_HEADER_ONLY BOOST_SIGNALS_NO_DEPRECATION_WARNING".
As you might guess from the experimentation I got none of these to work. The error that I was getting has remained exactly the same.
One difference that I assumed between the Win and Xcode version is that Win separates the values with a semi-colon whereas Xcode separates with a space.
My only other thought is maybe I edited the wrong field. Is BOOST_PREPROCESSOR_DEFINITIONS the one?
As a final comment, the thread you gave me and my issue really comparable? I have other projects that don't use the boost::regex libraries and they build and run without issue. It's only when I try to use boost's regular expressions in a release build that I get problems when linking (debug build is still fine).
Also the link error looks different. The thread that you gave me points at "boost::system::error_category" as not being resolved, while I have problems resolving "boost::re_detail::get_mem_block".
I don't seem to have problems with basic boost - just the regular expression stuff.

Similar Messages

  • I am having issues with Sidebar files not appearing from within InDesign CS5.5. They show up fine from other Adobe applications. Using OS10.6.8.

    I am having issues with Sidebar files not appearing from within InDesign CS5.5. They show up fine from other Adobe applications. Using OS10.6.8.

    I would first of all trash the preference file for InDesign, make sure the application is closed then find the prefs in
    /Users/USER NAME/Library/Preferences/Adobe InDesign and just throw the entire folder away, it will generate a new one after you launch InDesign again.
    Now launch InDesign and see if the problems are resolved.
    If not I would repair your permissions on your hard drive wih disk utility, and if that fails then di-install InDesign and re-install that single application.
    Let me know if any of these suggestions work for you
    I will be checking my email although you might have to wait for a response as I will be taking a microlight flight over the Victoria Falls tomorrow. Yay can hardly wait.

  • Hi.  I am having issues with copying files to my shared WB 2TB HDD connected to my airport extreme.  Comes up with error 50.  I am using a Macbook Pro to copy from so not sure what I am doing wrong.  Can someone help? thanks Rory

    Hi.  I am having issues with copying files to my shared WB 2TB HDD connected to my airport extreme.  Comes up with error 50.  I am using a Macbook Pro to copy from so not sure what I am doing wrong.  Can someone help? thanks Rory

    These links might provide some information that may be of help.
    http://support.apple.com/kb/TA20831
    https://discussions.apple.com/message/2035035?messageID=2035035
    I've encountered this error myself upon occasion.  If I remember correctly, it was a permissions/ownership issue with the some of the files I was copying.

  • Issues with RAW files from my 7D

    I have Aperture 1.5.6 on my computer and the software updater says that is the current version. I shoot with a 20D and a 7D. I upload my raw files to Aperture and edit them from there and then process for a jpeg. However, every time I upload a raw file from my 7D I get the following message when I click on it to edit it: Unsupported Image format.
    Any words of advice, other than just buy Aperture 3??

    I have Aperture 2.X and had zero issues with RAW files from a 7D, so I think the problem is you are on 1.X. Converting to DNG first was a good suggestion if you don't want to purchase 3.X. Yet another reason to hate proprietary raw image file formats.......

  • A serious issue with excel file read in ODI

    hi gurus,
    Issue with excel file read is that we can read only one file by setting the path from ODBC Data Source Administrator-->System DNS -->Select Work book
    what i want to read the dynamic path(Every time I cant go back and set the Work book to select the excel file..
    So i came up with a solution to write a Vbscript that convert the excel to csv my problem got solved for dynamic paths the script is as follow:
    Set objArgs = WScript.Arguments
    For I = 0 to objArgs.Count - 1
    FullName = objArgs(I)
    FileName = Left(objArgs(I), InstrRev(objArgs(I), ".") )
    Set objExcel = CreateObject("Excel.application")
    set objExcelBook = objExcel.Workbooks.Open(FullName)
    objExcel.application.visible=false
    objExcel.application.displayalerts=false
    objExcelBook.SaveAs FileName & "csv",23
    objExcel.Application.Quit
    objExcel.Quit
    Set objExcel = Nothing
    set objExcelBook = Nothing
    Next
    Now this script convert the xls file to csv with comma seprated values
    e.g in excel sheet if data is ABC XYZ PQR
    csv will come with ABC,XYZ,PQR
    here the delimiter is , i want the delimiter as pipe | who's ascii code is 124
    but if i change 23 with 124 its not working i getting the error cannot save as...
    can anyone tell me that what should be the correct code for pipe
    so that the output is ABC|XYZ|PQR
    AS WE CAN USE THE SCRIPTS IN TOOLS
    Edited by: 789141 on Sep 14, 2010 11:33 PM

    I dont have the answer for your question but i have different approach in handling multiple Excel File.
    Step 1. Copy a sample source Excel File and Call it Final.xls .
    Step 2. Map this Final.xls to DSN and in Topology call this Final.xls
    Step 3. Do the Reversing and Map and test the Interface . Once its done.
    Step 4. Create a Package and using a http://odiexperts.com/?p=1426 get the list of all the Excel File
    Step 5 . Using this http://odiexperts.com/?p=273 create a Loop to Read the Excel File name
    Step 6 . Copy using OdiFileCopy to Final.xls and run your interface .
    Step 7. Increment the Loop and copy your next File for Final and run the interface
    Step 8 . Finally you will be able to read all the Excel File .
    Step 9 . Delete the source file [ Optional ]
    Hope this helps.

  • Issue with Sender File FCC

    Hi Experts,
    I have an issue with Sender File FCC Adapter. The file being picked is of type TXT and it is tab seperated. The first line contains the field names and from next line onwards we have values for those fields.
    The field names and field values are tab seperated. Even inserting a single letter in some field value manually disrupts the whole setup & alignment of the TXT file and the Sender File CC is unable to pick up the file from the shared folder. If the first file is errorenous and after that a correct TXT file is posted, it fails to pick up the correct file as it is trying to pick the errorenous file first.
    The Error thrown is :
    "Conversion of file content to XML failed at position 0: java.lang.Exception: ERROR converting document line no. 2 according to structure 'ABCD':java.lang.Exception: ERROR in configuration / structure 'ABCD.': More elements in file csv structure than field names specified!"
    I have two questions:
    1. Is there a way to handle such a scenario? For e.g., the errornous TXT file gets picked but throws error in PI.
    2. Is there an alternative that the sender FCC channel picks up the correct files and filter out the errorneous ones ? ?
    Thanks,
    Arkesh

    Hi Arkesh,
    I think you are passing more number of fields than expected. Please check paramters defined and send the data accordingly.
    In the processing parameters tab of sender file adapter, you have an option called Archive faulty source files, below to that you would have option to enter the " Directory for Archiving files with Errors".
    I hope this helps you....
    Thanks,

  • Issue with corrupted file when dragging to timeline

    Has anyone ever had an issue with a files audio becoming corrupted when moving the file from the editing window to the timeline.  I am also seeing the my camtasia mp4 becomes blurry on the timeline but plays fine in the editing screen.
    I had not problem with camtasia Mp4s previously and today I have had so many issues with premier pro

    Hi,
    Even i faced this issue before...the problem with file adapter is the attribute nxsd:quotedBy takes " as default even if u dont mention it takes the same and now after the quotes it immediately expects | wch is not there in the data and it throws the error...now the fix for the problem is put some symbol for nxsd:quotedBy wch u never expect in the data some thing like less than or greater than symbol ....some thing like below
    <element name="FieldTwo" type="string" nxsd:style="terminated"
    nxsd:terminatedBy="|" nxsd:quotedBy="<"/>

  • Issue with VO extension after upgrading from 11i to R12

    Hi All,
    We are facing issue with VO extension after upgrading from 11i to R12(12.1.3).
    Most of the cases we are facing issue as given below,
    oracle.apps.fnd.framework.OAException: oracle.jbo.AttributeLoadException: JBO-27022: Failed to load value at index 21 with java object of type java.lang.Boolean due to java.sql.SQLException.
    Please help me out to resolve this issue.
    Any help/suggestion will highly appreciate.
    Thanks & Regards,
    Sunita

    Hi Gyan,
    Thanks for the response.
    There is one attribute has added in VO query.
    In VO.xml file ViewAttribute definition is as given below,
    <ViewAttribute
    Name="DisplayApproveButton"
    IsUpdateable="false"
    IsQueriable="true"
    IsPersistent="false"
    Type="java.lang.Boolean"
    ColumnType="NUMBER"
    AliasName="DisplayApproveButton"
    Expression="xxh_invoice_approval_pkg.check approval(invoice_id)"
    SQLType="BIT" >
    </ViewAttribute>
    Thanks & Regards,
    Sunita

  • Sharpening issues with RAW files

    Hi,
    I have downloaded lightroom 5 as a one month trial and have been playing with the program. I am not an experienced user and are wondering if I am doing something wrong, have wrong settings applied or if it is the known sharpening bug that messes with my photos. I know that sharpening and noise reduction includes a bug that does not let you export pictures 1/3 of original size with sharpening/noise intact. However, in my case, this also happens with RAW files. I do not crop or change size/resolution to any of the photos, but the sharpening is still not working. Photos look great in develop mode, but when I click on library mode to export them, all sharpening disappears!
    Is this the same bug previously reportered "only for pictures 1/3 of original size", or do I have some strange settings applied?
    I was loving lightroom 5 up until I noticed this, and now I am reluctant to buy the product...
    I'd be greatful if anyone has any input on this!
    Thanks in advance

    I have Aperture 2.X and had zero issues with RAW files from a 7D, so I think the problem is you are on 1.X. Converting to DNG first was a good suggestion if you don't want to purchase 3.X. Yet another reason to hate proprietary raw image file formats.......

  • Issue with Emoji icons when sent from iOS6 to iOS5

    Issue with Emoji icons when sent from iOS6 to iOS5, all icons appear as a square on the iOS5 message screen.
    Both iOS are the current version and the phones are 4S 64GB
    Anybody got this problem

    Hi!
    What kind of RFC do you use? If you use synchronous RFC the caller waits for the answer/result of the called function. In normal cases this should solve your issue.
    Regards,
    Volker

  • Issue with attachment file name

    Hi All,
    This is about an issue with attachment file name:
    we have a scenario wherein we have payload with attachments ...(attachments can be any doc ,pdf) , problem is main document is comming with messageid.sap.com and thats normal but attachments are comming with file names for example something.pdf or something.doc or something.txt ...this is failing in adapter as it expects same name as u have in main document...anybody have any idea to get through this issue...
    Regards
    kiran

    we have a scenario wherein we have payload with attachments ...(attachments can be any doc ,pdf) , problem is main document is comming with messageid.sap.com and thats normal but attachments are comming with file names for example something.pdf or something.doc or something.txt ...this is failing in adapter as it expects same name as u have in main document...anybody have any idea to get through this issue...
    - <SAP:Payload xlink:href="cid:payload-4CED452F17C601BDE10080000A492050---sap.com">
      <SAP:Name>1 .Header1.txt</SAP:Name>
    Error we are getting is
    Cannot cast 'Header' to boolean] in class com.sap.aii.mappingtool.flib7.NodeFunctions method createIf[Header, com.sap.aii.mappingtool.tf7.rt.Context---27a73bfa]
    So we have to change the File name Header1.txt to something which we can cast to creatif....(we cannot tell the sendr to change the file name as its is set already)
    Thanks for interste and assisting
    Regards
    Kiran

  • Issues with .mov files from Canon 5d mk3 - since Mavericks upgrade...

    Hello,
    Ever since I upgraded my OS to Mavericks, Premier Pro has been refusing to 'see' .mov files in my projects. In the timeline the bits of .mov footage are appearing as red blocks, in the preview pane you get 'Awaiting media' then the red block of doom.
    So currently I'm having to convert footage from .mov to mp4v - then it seems to be OK. The upgrading to Mavericks could be a coincidence ... but before that I had no issues with PP.
    This is my system:
    Processor  2.8 GHz Intel Core i5
    OS X 10.9.1 (13B42)
    Graphics  ATI Radeon HD 5750 1024 MB
    Memory  12 GB 1333 MHz DDR3
    I would love some help/ideas on this - it's doing my head in having to convert .mov files, and having to back convert stuff in my existing projects ... please help!
    Best - Abbottssnapper
    [Text formatting corrected.  Please type your posts into the browser, as copy/paste often leaves unwanted code.]
    Message was edited by: Jim Simon

    >Ever since I upgraded my OS to Mavericks
    Adobe/Jive have a BAD title for the SEARCH THIS FORUM function
    Go to http://forums.adobe.com/community/premiere and, in the area just under Ask a Question, type in
    maverick
    or
    mavericks
    You may now read previous discussions on this subject... be sure to click the See More Results at the bottom of the initial, short list if the initial list does not answer your question

  • Working with video files in Captivate

    We have recorded a short video that we want to insert as an
    animation in to Captivate. We've saved the wmv file using
    Moviemaker as an avi file, but Captivate doesn't like it. A message
    pops up to say "This avi file cannot be converted to swf". Any tips
    on how to get a simple video in to Captivate?

    Usually when audio is heard but the video is unseen, it's a
    codec issue.
    What codec are you using for the AVI creation? I'd think it
    is having
    issues being converted to SWF. Try exporting the AVI with a
    different codec.
    Generally, I would stay away from trying to load .avi files
    into CP
    directly (as you've experienced).
    Converting to FLV would be the next best thing (if not
    better) to a SWF
    conversion. Don't worry about the streaming - if there's no
    FLV (FMS)
    server, the movie will still play. However, if you're having
    sync
    issues, that also seems likely to be a conversion issue -
    mostly related
    to the codec (?). Perhaps try a different conversion tool -
    the one
    you're using seems to be...flaky.
    Related to SteveC's reply, I find conversion from QT to FLV
    to be the
    smoothest, so if you can output to QT (.mov), you may have
    better luck.
    If you can't export the original movie to QT, try MPEG or
    MPEG2.
    HTH
    Erik
    4views wrote:
    > Thanks Rick for another prompt reply. Unfortunately no
    quick fix so far on
    > this one. We have used AVI Video Converter to save a swf
    file. This file we
    > can place in to Captivate and it plays just fine in the
    edit screen. However,
    > when we preview the movie, the video portion cannot be
    seen,...
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - eLearning
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    Authorware Tips!

  • Issue with Deduplicated files and Mac OSX 10.9.2

    Running a Windows 2012 R2 DFS with Deduplication enabled on the storage drives.  Both Macs and PCs regularly interact with the system with no issues.
    However with Apple's rollout of 10.9.2 SMB2 'fix' users are no longer able to correctly interact with any files on the file server with the "SparseFile" attribute, which appears to be from the deduplication of the file.
    When the Macs attempted to download a "sparsed" file they get an error along the lines of "you do not have permissions to copy this file".  This is annoying enough, but the biggest head ache is when a user tries to
    copy a folder that has sparced files in it, the folder and its files are seemingly copied but the Mac does not copy the sparced files... and give no indication to the user that it ran into an error... Finder just closes like
    the operation was completely successful.
    Even more annoyingly the user can open the file directly from the server, and work on the file with seemingly no issues, but when they save the file the changes are often not saved, and the user gets NO feedback from the application or OS.
    It seems the Macs are seeing the file as having a NULL file size and they skip the file when they download it.  This was not the case in 10.9.1 or any other version of any other OS we have tested.  We have entered this as a bug to Apple
    and hope they will fix it... mostly just posting this for the next admin who is pulling his hair out trying to figure this out.
    For a work around you can force the Apple 10.9.2 system to use SMB1 by using the CIFS protocol to connect to the server instead of normal SMB... which is not ideal but will work for now.

    Hi,
    Please try to change "everyone" user permissions on a share folder to modify to see if the issue still exists.
    For more detailed information, please refer to the thread below:
    Problems with permissions when copying a files and folder on Windows remote share
    https://discussions.apple.com/thread/4902764?tstart=0
    Please Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Transparency Issues with PSD files in FCP 7

    I'm having some weird file layer transparency issues with FCP 7. I'm working on a project that's made up entirely of graphics drawn in Photoshop CS5. They Photoshop settings were done to match an HDTV 1080i (16:9) sequence in FCP. In FCP, the pixels were set to square, field dominance to none, frame rate to 29.97 and compressor is Apple ProRes 422.
    I exported my PSD files out of Photoshop, with each layer being exported to its own file. In general, things were fine, but there were a few files where you could see the outline of the character against the background, but mind you that this is only visible once the video is rendered out in the FCP timeline. Nothing is visible in Photoshop, nor is it visible while viewing from the Browser in FCP. I told this to the artist and he went back and made corrections, making sure everything was on a transparent background, but the result was still the same - once I rendered the graphics out in FCP, these edge lines were visible.
    I then went back into Photoshop, opened all the files that were giving me trouble, clicked on the "foreground color" and changed it to a color other than white, then back to white and hit ok. That seemed to work - even when rendered out, I was getting no artifacts, until I tried enlarging the graphics over 100%.
    Also, with some of the same graphics, I was trying to layer them so that a guy was in the foreground with other people and a van behind him in the background. Once again, no problem in Photoshop, but once brought into FCP, the background people were actually being displayed over the main foreground character.
    I'm pretty baffled - what to do? I'll attach a photo of the weird lines around the characters. It might be hard to see at this size, but if you download and enlarge it to 300% or so, you'll see what I mean.

    Just saw that Adam's original post was an older one.  Will keep this here anyway to maybe help the most recent poster.
    Sharon
    Adam, did you try what David said about pointing to the root folder?  Did that work?
    When I copy the SD card, I name a new folder on my hard drive something specific, like Smith Wedding.  Then I copy everything inside the SD card to that new folder.  The first level inside my new folder now has folders for
    AVF_INFO
    PRIVATE
    and on down from there.  When you open Log and Transfer, point it to the Smith Wedding folder (of course whatever you have named yours).
    ClipWrap2 also works great to convert the files beforehand if you want.
    What camera are you using?  I have the Sony NX30 and it was giving me fits because the .mts files don't ingest if the clips are longer than 11 min. My problem is that I'm still on FCP 6.0.6.  I think 7.0.3 fixed that.  But I did find enough work-arounds to keep the camera. 
    This is a link to the full discussion if you are interested.
    https://discussions.apple.com/message/19085158#19085158
    Sharon
    Message was edited by: SSteele

Maybe you are looking for

  • End User Role for Service Desk in Solution Manager

    Hey, I am launching the Service Desk functionality for my End Users. One thing that i want to know of is the role that I should assign my user in Solution Manager to access his message. E.g. I have a user 'A' who creates a message from any system in

  • ADF : Groovy Expression

    Hi Is it possible to reference the current entity object name using groovy? I would like to get the entity name in a validator to customize the error message. I currently have a validator and an error message with two placeholders, Attribute {0} is n

  • Some updates failed to install laptop on OSX 10.5.8

    attempted to download updates from the "help" section and got a screen that reads Adobe Bridge CS5 4.0.5 Update   There was an error downloading this update. Please quit and try again later.   Photoshop 12.0.4 update for Photoshop CS5   There was an

  • Broken iPod in less than 1 day

    I was importing songs onto my new 30gig iPod from my laptop when all of the sudden a bubble pops up and says that something about artwork is not found. so i go to disconnect and reconnect and another bubble pops up saying "usb device not recognized".

  • Logic pro 7 authorization failed

    I got the upgrade to 7 and have tried to get the auth code from xskey.apple.com, but it fails. I have the activation code correct and the xskey has been updated but xskey.apple.com won't provide a auth code. Apple was nice enough to provide a grace p