Runtime error Object Required - Captivate 5

Hi,
Wondering if anyone else has come across this problem and found any solution.
I have created .swf using Captivate 5 and when I upload them to our learning environment (Learning Pool), the flash plays through to the end fine but clicking on next/menu (within the learning environment) I get Runtime Error, Line 52 Object Required.
Is there any publishing setting or anything that anyone has come across to make the swf work?  (I have a call logged with our environment provider but obviously they don't support captivate so...)
Regards
Annabel

Are you uploading the Captivate content as a SCORM package to your LMS or are you just uploading the SWF?

Similar Messages

  • Microsoft Jscript runtime error: Object expected

    I have a Visual Studio 2005 web application that uses a Crystal Viewer to display reports developed in XI. When I run the application on my development PC, I get no error, even with the debug turned on in IE7.  When I run the application on my PC, using the web server address  and click on the drop down to select the parameter, I get an error that says; u201CMicrosoft Jscript runtime error: Object expectedu201D.  Both my development PC and the code published on the web server use the fully qualified report path down to the webserver name.  No problem on my development PC running in Visual Studio, but a problem accessing the server.  The onClick portion is the highlighted area is where the debug  stops.  This is code that is created from crystal.  Originally, I was getting an error; 'Load Report Failed', but once I used the full path name of the report down the the webserver name, that error disappeared. I have XI installed on the web server and I can open and run the reports there.  What am I missing on the web server?  Thanks.

    That would be the CR Service Pack located here:
    https://smpdl.sap-ag.de/~sapidp/012002523100006255422008E/crxir2_sp4_inc.exe
    You will then have to ensure that the same runtime is on the server. Use the msm or msi files from here:
    http://resources.businessobjects.com/support/communityCS/FilesAndUpdates/crxir2sp4_net_merge_modules.zip
    https://smpdl.sap-ag.de/~sapidp/012002523100009657852008E/crxir2sp4_net_si.zip
    I'd recommend the msi as it does not require you to build a deployment project. Ensure that you uninstall the current CR runtime on the server. Also, once that is done, check to make sure that the c:\program files\business objects directory is removed. Then install the CR runtime using the above msi file.
    Ludek

  • Script error "object required" when log off

    I have created a new user and assigned the "Everyone" role to it. I log in to the portal using this new user. Then I press logoff. Then I press OK. Now I get the script error below:
    line:91
    char:8
    Error: Object required
    code:0
    URL: http://.....
    any idea why I get this error?
    note: I don't get a logoff error when I use the administrator or other user IDs.

    Hi,
    you are using a customized masthead. InSP14 SAP changed some Javascript and therefor, the "object" your are colling in your logoff() function is missing. You'll have to comment out this JS call in your masthead. Check the IE error message explanation, it will show you the line where the error occurs.
    I've already posted the solution in this forum, but unfortunately, I'm not able to find my previous post
    br,
    Tobias

  • Javascript Error : Object Required

    the title sums it up....
    I'VE DONE
    searched the forum, didn't find anything to solve my problem
    and with google this seems to be a symptom for many problems, no
    luck there either.
    there isn't really any component i can play with to
    troublshoot, it's syntax related.
    MY SETUP:
    I'm using javascript and reading an XML document. using a for
    loop, i display all the nodes in the XML and print to the page.
    MY PROBLEM:
    i get the following annoying error after page load:
    Line: 239
    Char: 5
    Error: "Object Required"
    Code: 0
    URL: www.blah.com
    i've pasted the related code.
    line "239", the error is indicated.
    novice web programmer, greatly appreciate any pointers,
    directions, tips, tricks, workarounds etc.

    DanM. wrote:
    > SIMPLIFIED QUESTION:
    >
    >
    > in short, why is this illegal?
    >
    > var titleArray = new Array();
    > for (var x = 0; x < 20; x++) {
    > //BELOW IS LINE 239, THE ERROR****************
    > titleArray[x] = news.childNodes(x).firstChild.text;
    var titleArray = new Array();
    for (var x = 0; x < 20; x++) {
    var TEXT;
    if(TEXT=news.childNodes.item(x).firstChild.data){
    if (TEXT.nodeType == 1){
    titleArray.push(TEXT);
    You may be grabbing white space or another <tag>, not
    text nodes. And
    hard coding the loop max can be a problem too, unless you
    know there are
    exactly 20.
    for (var x = 0; x <news.childNodes.length ; x++)
    Mick
    > }
    >
    > because i commented out everything but those lines, and
    still got the same
    > error.
    >
    >
    >

  • Error: Object Required apperas when accessing Content Admin Portal Content

    After installing Ep 7.0 sp16 Portal and logging in as Administrator we get
    Error: Object Required apperas when accessing Content Admin >Portal Content
    The same error appears when trying to access System Admin > permissions.
    Anything to do with catolog search is throwing Error: Object Required  popup.
    Appreciate feedback in resolving this.
    Rajesh.R.

    I have just started to get this error as well... On my computer I get the "Error: Object Required" when accessing the Portal Content page but if I log in on someone elses computer using the same browser, OS, etc The error does not appear and I am able to browse the Portal Content.
    Any more insight on the resolution to this issue would be appreciated.

  • Problem: Portal Content Structure (Javascript error: object required)

    Hello,
    i have a problem with my Internet Explorer 7 and the Enterprise Portal 6.0 SP 16. After the login, the Navigation Structure of the Portal Content isn't shown, after a while a error message pops up saying: error: object required.
    The Portal is functional in Firefox 3.0 so i suggest that the problem is based on the internet explorer Browser.
    Maybe someone has an idea and can help me resolving this annoying problem. Java from Sun is installed an activated in IE.
    Thank you!
    here a screenshot
    http://s6b.directupload.net/images/081016/oy2nau9e.jpg
    Edited by: Mehmet Apaydin on Oct 16, 2008 10:49 AM

    solved!
    something really timewasting. I just had to add the site as a trusted site in IE. But it only works if you youse the NAME e.g. www.sapportal60:50000/irj/portal, using the ip adress dosn't work and that's what i did in the first place.
    with best regards
    Mehmet Apaydin

  • JavaScript runtime error: Object doesn't support property or method 'Load'

    I'm pretty new to SharePoint 2013 apps and CSOM. I have written a simple SharePoint-hosted App in Visual Studio 2013 which attempts to display the current user's user profile picture using CSOM and JavaScript. Here is the code in my App.js file:
    $(document).ready(function () {
        var context = SP.ClientContext.get_current();
        var peopleManager = new SP.UserProfiles.PeopleManager(context);
        var userProperties = peopleManager.getMyProperties();
        context.Load(userProperties);
        context.executeQueryAsync(function (){
            if (properties) {
                var pic = userProperties.get_pictureUrl();
                $('#userProfileImage').attr("src", pic);
    I am getting error "JavaScript runtime error: Object doesn't support property or method 'Load'" on line "context.Load(userProperties);"
    I have SP.UserProfiles.js referenced, which is why this command executes successfully: var peopleManager = new SP.UserProfiles.PeopleManager(context); Is it my context object or userProperties object that is causing this error, and why? Thanks
    in advance for your help.
    Frank Foreman

    Hi,
      This method is case Sensitive, try this context.load(userProperties);

  • Reg Javascript Error Object required Error

    Hi all,
      I have configured ITS 6.20 and implemented ESS in EP 6.0 SR1. I am getting Javascript Error Object required Error in some browsers when i try to access the ITS pages . What should i do in browser settings in order to resolve this error.
    Thanks
    Vasudevan Gopalan

    Hi all
    Resolved the issue as mentioned in note# 852690 . Thanks
    Regards
    Vasu

  • Script throwing error" Object required: 'API'

    Hi All,
    We need help in one issue. We have following script which is running fine when we ran it from script editor, but when use this as expression in import format is throwing error
    Error: An error occurred importing the file.
    Detail: Object required: 'API'
    At line: 12
    Script:
    Function ME_to_LE(strField, strRecord)
    ME_to_LE =API.SqlMgr.fMapItemLookup (749, "UD8", Left(strField,3))
    End Function
    We have created few other Scripts which are running fine and producing required result when we check them with MsgBox. But when we are using these scripts in import format it is saying: Object required: 'API'
    IF I can not use API object in import script, how can I process multiple column with one script. We need to derive three-four column based on one input column and we don't want to write separate import script for each column. How and where we can write this script?
    Are we missing any step? Any help will be highly appreciated. Looks I asked long question :)
    Thanks,
    Shivendra
    Edited by: shiv2 on Sep 16, 2011 9:30 AM
    Edited by: shiv2 on Sep 16, 2011 10:36 AM

    Hi Robb,
    "It looks like you and James are on the same project" That is correct.
    OK. In requirment we have three-four column based on these column we need to derive few other column. We want to do spilitting and validation in Import itself. This is mainly a Validation requirment.
    There is one column which may have 12,13,14,17 or any other number of character in it. first three will represent one dimension but exact value be a mapped result based on these three digits.
    There are many validation based on the number on charaters and most importantly we don't want to process other column is validation get failed at any stage.
    Do we have anything like Import Action? Probably we want to change that script. Or if we can write something like integration script. We need every column to be processed in one shot.
    I don't think it is self explantry. Can we have your email please?
    Thanks,
    Shivendra
    Edited by: shiv2 on Sep 16, 2011 8:52 PM

  • Runtime Error on loading captivate 5

    Hi.
    Has anyone had the following issue with Captivate 5? I've been using on and off for a few weeks now and it's worked fine, until today. As i launch captivate 5 it loads up as normal to the front screen. I then select either blank project or an existing project and get the error message below. I've tried re-installing the upgrade from the disk but still no joy. I've trawled through the forums today but cannot find a specific issue like this.

    Scrap that. As my upgrade still kept captivate 3 on my system, i opened 3 and then 5 again and it seems to be working. Strange but may help anyone else who has a similar issue.

  • Webutil runtime error, object not found

    Hi,
    I´m trying to use webutil, but i cant even run the demo. When the first webutil function is called, theres a exception because its not found, although there is no error in connecting the library.
    If someone has a hint,that would be very kind.
    Thanks

    upload the folder named Scripts to the remote site.
    http://www.bruzzies.com/Scripts/AC_RunActiveContent.js
    is 404 not found.
    http://www.bruzzies.com/tuffpodcast/index.html
    <script src="../Scripts/AC_RunActiveContent.js"
    type="text/javascript">
    > www.tuffpodcast.com

  • Error: Object required".

    When I click on Content Administrator Role , I find one Popup u201CError: Object requiredu201D.
    I assigned all actions in content admin role. But the result is same.
    I assigned Content/User/System Administrator Roles to User .How to solve it.

    Hi Sanjay,
    1.Try to check in the Portal URL access using the hostname and not by Ip Address.
    2.Restart the server
    Thanks,
    Tulasi Palnati
    Edited by: Tulasi Palnati on Mar 13, 2009 7:53 AM

  • Javascript - Object required error for visual studio 2010

    Hi - I have downloaded the crystal report RTM for visual studio 2010.
    My App server is windows 2008.
    We are using crystal reports as part of CRM application
    I am getting  javascript error 'Object Required'  at the following line:
    The debugger after the error message refers to this:
    bobj.crv.stateManager.setComponentState('ctl00_ContentPlaceHolder2_CrystalReportViewer1__UI',eval('('document.getElementById('__CRYSTALSTATEctl00$ContentPlaceHolder2$CrystalReportViewer1').value')'));
    The website has all the required aspnet_client files and have made sure the application is able to load them.
    When tried with a new sample solution the reports work.
    Please help. I need to make the crystal reports work with the CRM solution...

    I am assuming this is happening after you have deployed your app and that the app works as expected on your development computer(?). Please confirm...
    I need you to tell me the following:
    1) how was the app compiled; any cpu, 32 bit, 64 bit?
    2) how was the CR runtime deployed (what MSI / MSM did you use?)?
    3) if this app is installed under custom app pool see the following:
    Deploy the CrystalReportViewers13 virtual directory as a sub-directory of your application.
    Copy the Crystalreportviewers13 folder to be a sub-folder at the root of your application. You can configure where your application looks for this folder by using the following Help file [SAP Crystal Reports .NET SDK Developer Guide
    |http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip] and search the document for ("web.config";). In the section "Configuring your web.config file" follow the instructions specified for setting the resourceURI attribute. This way you can control updates to the viewers when deploying your application.
    Note the resourceURI value is the name of the viewers directory and should be preceded with a Tilde
    ie value="~/crystalreportviewers13"
    Also, have a look at the following two articles. Both are pre CRVS2010, however the ideas re. deploying to a custom app pool still apply. All that changes is the folder name.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Jsp calling a function in js -- object expected runtime error

    Hi,
    I have a js file. script.js
    *function popup( url ) {*
    newWin=window.open(url,'popupWindow,resizable=yes,menubar=no,status=no,toolbar=no,scrollbars=yes');
    newWin.focus();
    void(0);
    and a jsp calling the function in js
    *<HTML>*
    *<HEAD>*
    *<SCRIPT>*
    *<jsp:include page="script.js"/>*
    *</SCRIPT>*
    *</HEAD>*
    *<BODY onLoad="javascript:popup('http;//www.google.com');">*
    *</BODY>*
    *</HTML>*
    Now when i execute the jsp, it gives runtime error -> object expected..
    Not able to figure out why this occurs.. am I doing it the right way ?

    Do you think is this the right way to include .js file...
    <SCRIPT>
    <jsp:include page="script.js"/>
    </SCRIPT>I generally do this way...
    <head>
    <script language="javascript" src = "script.js">
    </script>
    </head>

  • Crystal Report Viewer Microsoft JScript runtime error

    When I use the crystal viewer control to render a report on the screen I receive the following error message:
    Microsoft JScript runtime error: Object doesn't support property or method 'isObject' ... and the following line is hilighted:
    if(!bobj.isObject(json)).
    Here is the markup for the test page I'm using
    {<body>
    <form id="form1" runat="server">
    <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
    AutoDataBind="true" ReportSourceID="crSource" />
    <CR:CrystalReportSource ID="crSource" runat="server">
    </CR:CrystalReportSource>
    </form>}
    I believe I set all info on crSource correctly (report path etc ...) because If I remove the Crystal reports viewer from the page and just use the crsource (i.e crptSource.ReportDocument.ExportToHttpResponse ...) I can export the report OK. Its only when I have the crViewer on the page Is when I recieve this error.
    Web Config
    <assemblies>
    <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
    <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
    <controls>
    <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagPrefix="CR" />
    <http handlers>
    <add path="CrystalImageHandler.aspx" verb="GET" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
    appsettings
    <add key="CrystalImageCleaner-AutoStart" value="true" />
    <add key="CrystalImageCleaner-Sleep" value="60000" />
    <add key="CrystalImageCleaner-Age" value="120000" />
    I am using crystal reports 2008, visual studio 2008, windows 7 pro, MS Sql Server 2005, IE9
    I uninstalled crystal reports, and reinstalled crystal reports 2008 sp3 (Full build) - No help
    When I goto help about visual studio it says crystal reports 2008 (No specific version info)
    Assembly cache on the machine has
    12.0.2000.0 and 12.0.1100.00 as the vast majority ... a few (Design and Engine) have older 10.5.3700 and so forth (There are so many)
    I found this problem on the web with different solutions involving frame work folder or not having IIS setup to server the crystal reports viewer ... this is happening to me on my local development machine using the ASP.Net Develepoment server included with VS2008 ..
    Any help you could give me would greatly be appreciated
    Thanks in advance
    Kevin

    Hi Kevin,
    Take a look at below SAP Note.
    [1531003 - Error: bobj undefined - javascript error |http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533333331333033303333%7D.do]
    I got this result just by searching 'bobj is undefined javascript' in the top right search box.
    Thanks,
    Bhushan.

Maybe you are looking for

  • IPhoto and Adobe Bridge Workflow

    I finally picked up Photoshop CS3 and am curious as to the best method of integrating the applications in the most effective manner. I do like iPhoto, and I've used it extensively for some time now, but I wonder if it's better suited as simply a prog

  • Syncing issues with 6th gen Nano

    Hi, Not sure this should be an iTunes specific question of a Nano 6G one, I plumped for this one anyway. My Nano seems to have problems fully syncing playlists of either kind. I am trying to sync a handful onto it and having the following issues. 1)

  • Action Keys

    I wanted the action keys to work with no need of pressing the fn key. Action keys were already enabled in BIOS. I switched them to disabled still did not work. I put it back to enabled. The same thing. Action Keys don't work at all. How can i fix thi

  • Mail not displaying attachments properly

    hello ive got apple mail setup with Gmail imap. one account. sent new message today with .jpg image attached. when i look at the attachment in the sent folder it appears as this: "ÿØÿà Message was edited by: coldplay123

  • What is psfile.ps file?

    I am working with a set of FrameMaker files that contain information about mutual funds. These files are included in a FrameMaker book file. During our publishing process, we need to separate each mutual fund in the FrameMaker files into its own post