"TypeError: undefined is not an object" after upgrading to 2014.1.1

I'm seeing the error: "TypeError: undefined is not an object (evaluating 'cpoint.getSymbolElement') in an _upgraded composition which is causing points and tooltips to not appear in the loaded composition.
Edge Animate version 2014.1.1
Mac OS 10.10.1
Safari 8.0.2, Chrome 40.0.2214.94, Firefox 35.0.1
This issue only began happening after upgrading to 2014.1.1
No changes were made to my computer and I've tested it on other computers with the same result
Here is the upgraded composition which is not working: http://inlightmedia.com/edge-interactive-svg-maps_upgraded/
Older composition which correctly shows the pins and tooltips: http://inlightmedia.com/edge-interactive-svg-maps/
Zip files of both compositions: Zip file
I am very much an Edge and JavaScript rookie and have been modifying this project (which was created by someone else who is no longer supporting it) to suit my needs. Any help getting this to work in the new version of Edge would be greatly appreciated.
Thanks,
Jansen

Hi,
It comes from compositionReady, line #34:
You wrote: var cpoint = sym.createChildSymbol("point", "stage");
and it was: var cpoint = sym.createChildSymbol("point", "Stage");
stage must be capitalized: Stage.

Similar Messages

  • TypeError:undefined is not an object message when opening a new window in Bridge

    Every time I open a new window in Adobe Bridge CS6, I get a long error message that says
    "TypeError: undefined is not an object: onResize()buildUIStack(true,"Cabinet")buildUIStack([TabbedPalette:[objectTabbedPalette]], true,"Cabinet")switchTo([TabbedPalette:[objectTabbedPalette]],[Group:[object Group]],true)AmgDesignWindow([TabbedPalette:[objectTabbedPalette]],[Group:[object Group]],true)populate([Group:[object Group]],true)"
    I'm running OS 10.8.5. I've tried uninstalling and then re-installing CS6 but I still get this error message. Once I click OK, a new window will open. I just want to know how to stop this message from popping up every time I click "new window".
    Any help is greatly appreciated.
    Thanks!

    It could also be a bug in OS.  Did it work before?  If so reset preferences.  Hold down Option key and start bridge.  You should get a reset window.

  • MuseJSAssert: Error calling selector function:TypeError: 'undefined' is not an object

    My Safari browser on my iPhone4s reads the following error when I visit my site www.premiercreativegroup.com:                   MuseJSAssert: Error calling selector function:TypeError: 'undefined' is not an object (evaluating 'this.elem.get(0).currentStyle').
    Not sure where to start on fixing this. Any ideas?

    You might to start by going to the Muse forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use

  • Note 1054131 - Invalid DB objects after upgrade

    HI,
    We performed a migration from SAP 4.6C/Oracle9i.solaris to SAP 4.6C/Oracle10g/HPUX.
    Now we need to upgrade SAP4.6C/Oracle10g/HPUX to ECC6.0.
    As a prerequisite, I have checked the note
    Note 1054131 - Invalid DB objects after upgrade
    And I ran the script
    SQL> SELECT OWNER, OBJECT_NAME, OBJECT_TYPE FROM DBA_OBJECTS
      2  WHERE STATUS='INVALID'
      3  AND
      4  OWNER='SYS';
    OWNER
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    SYS
    DBMS_REPCAT_FLA
    PACKAGE BODY        INVALID
    SYS
    DBMS_REPCAT_MAS
    PACKAGE BODY        INVALID
    OWNER
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    SYS
    DBMS_REPCAT_UTL2
    PACKAGE BODY        INVALID
    SYS
    DBMS_REDEFINITION
    OWNER
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    PACKAGE BODY        INVALID
    All the invalid objects are package body, can anyone help me how to proceed with this, can I proceed my upgrade to ECC 6.0 or do I need to delete the package body.
    If I want to delete the package body,can you pl give me the commands and also post which whether I need to execute any steps
    Pl help
    Thanks
    Senthil

    Hi,
    I guess you are talking about the Oracle Upgrade and not ECC Upgrade, as following are the pre-requisites for an ECC upgrade.
    Making Database-Specific Preparations for Oracle
    1. Check the value of parameter shared_pool_size:
    4 Preparation
    Making Preparations at the Database Level
    Oracle 9.2: Check the value in file $ORACLE_HOME/dbs/init<SID>.ora.
    Oracle 10.1 and higher:
    select NAME, VALUE from v$parameter where name=’shared_pool_size’;
    select NAME, VALUE from v$parameter where name=’shared_pool_reserved_size’;
    If the value is lower than 150 MB, increase it to at least 150 MB (400 MB is better), and restart the
    database.
    2. Log on as user <sapsid>adm at the operating system level.
    3. Log on to the database as the Oracle user system with sqlplus
    4. Check the resource quotas of the database user SAPR3 or SAP<SAPSID>:
    Oracle error 1536 can occur during the upgrade if the resource quotas of database user SAPR3
    orSAP<SAPSID> are limited. Make sure that these quotas are unlimited. Check whether the table
    DBA_SYS_PRIVS contains one of the following entries:
    grantee=’SAPR3/SAP<SAPSID>’,privilege=’UNLIMITED TABLESPACE’,adm=’YES’
    grantee=’SAPR3/SAP<SAPSID>’,privilege=’UNLIMITED TABLESPACE’,adm=’NO’
    To do this, enter the following SQLPLUS statement:
    select * from dba_sys_privs where grantee = ’SAPR3/SAP<SAPSID>’;
    If this entry does not exist, enter the SQLPLUS statement:
    grant unlimited tablespace to sapr3/SAP<SAPSID>;
    5. Log off from the database with the command quit.
    6. Only if using the dictionary managed tablespaces function:
    Make sure that the storage parameters MAXEXTENTS and NEXT have the correct values for certain tables and indexes. Otherwise, they may overflow during the upgrade. The Oracle-specific upgrade SAP Note contains the tables and the required minimum values.You can display the current settings with BRSPACE. The index names are not constant. However, you can also determine these names with BRSPACE. SAP Note 11777 describes how to change the parameters NEXT and MAXEXTENTS.
    7. Only valid for: SAP R/3 3.1I
    Make sure that parameter OPTIMIZER_MODE is set to OPTIMIZER_MODE=RULE.
    For Oracle 9.2, check and, if necessary, edit the following Oracle profile:
    $ORACLE_HOME/dbs/init<SAPSID>.ora
    For Oracle 10.1. and higher, use the following statements:
    Sqlplus /nolog
    Connect /as sysdba
    Alter system set OPTIMIZER_MODE=’RULE’ scope=spfile;
    8. Only if you do not switch off archiving during the upgrade:
    If you want to leave brarchive running during the upgrade to avoid archiver stuck situations (brarchive -f ...), proceed as follows:
    a) Create a temporary copy of brarchive:
    4 Preparation
    4.23 Making Preparations at the SAP System Level
    cp /usr/sap/<SAPSID>/SYS/exe/run/brarchive /tmp
    b) Start brarchive as user ora<sapsid> from the temporary directory /tmp/brarchive -f ...
    c) After the upgrade, delete the copy of brarchive.
    This procedure avoids upgrade errors caused by the program files being overwritten during the upgrade.
    9. If your database version is already higher than the minimum version for the new release, we recommend that you exchange the DBA tools (such as BRSPACE) for the upgrade. The Database Software Oracle DVD for the database contains the up-to-date tools that you unpacked on the current kernel when you migrated the database. After you execute PREPARE, unpack this archive again into the exe subdirectory of the upgrade directory. This overwrites the DBA tools optimized for the minimum required database version with the tools best suited to your database version.
    And if you are talking about an Oracle Upgrade then you just need these to compare once you have upgraded to 10g.
    3.9 Checking for Invalid Database Objects
    This optional step lets you check if there are any invalid database objects before the database upgrade to Oracle database 10g starts. After the upgrade it helps you distinguish database objects that have become invalid due to the upgrade process from those that were already invalid to start with.
    Procedure
    1. Execute the following commands:
    SQL> spool invalid_objects
    SQL> select unique object_name, object_type, owner from dba_objects where status
    = 'INVALID';
    SQL> @?/rdbms/admin/utlrp.sql
    SQL> select unique object_name, object_type, owner from dba_objects where status
    = 'INVALID';
    SQL> spool off
    A list of invalid objects before the upgrade is now generated.
    2. Check the list of invalid objects after the upgrade.
    If any objects in the list from before the upgrade are also in the list of invalid objects after the upgrade, you can be sure that this is not due to the upgrade process.
    Regards,
    Suhas

  • I am not able to change the object after upgrade(SPAU Activity).

    HI All,
    I am not able to change the object after upgrade(SPAU Activity). Please any one can tell what is the reason with below details.
    You are not authorized to make changes
    Message no. 37202
    Diagnosis
    You have no authorization for the authorization object 'S_DEVELOP', which would allow you to change the screen concerned.
    There is also a second possibility:
    You want to edit a modified SAP screen in a customer system after an upgrate (SAP transport). The screen remains locked for editing until the new SAP version and the customer version have been aligned (Transaction SPAU).
    System Response
    Authorizations are assigned to users in profiles. Profiles are stored in the user master record.
    Procedure
    Comsult your system administrator.
    Thanks in Advance,
    Mahesh Devershetty

    Hi,
    Does the user who would like to change the screen have the authorisation
    for S_DEVELOP in his profile? Please run transaction /NSU53 after the
    failed authorisation. You will get an information which authorisation
    is missing.
    Additional please check if you have open entries in transaction SPAU for
    that object.
    If you couldn´t solve the issue I need an user to analyse it in your
    development system.
    That user needs all authorisation for development and has to be
    registrated as developer.
    The system uses the authorization object S_DEVELOP for Workbench objects
    can you please check your user master record whether it contains the
    required autorization or not.
    Please also ensure that modification adjustment is turned on as per note:
    197600  Switching the Modification Assistant off and on
    Aidan

  • How to cope with "undefined is not an object" ?

    I'm tiptoeing towards a solution, but stepped on a thumbtack:
    The following snippet creates an error in the function GetTplParams
    var template = "DDD-BibFM-tpl.fm";  // located in script-dir var outFile  = "DDD-BibFM.fm";      // located in the source dir   oDoc = OpenTemplate (); alert ("Is template open now?"); function OpenTemplate () {   var tplDir, tplFile, openParams, openReturnParams, oFile;   tplFile = "E:\\_DDDprojects\\FM+EN-escript\\escript\\DDD-BibFM-tpl.fm" // SimpleOpen does not take the tplFile, but opens the dir of the active document //  oFile = SimpleOpen (tplFile, true);   openParams = GetTplParams ();    openReturnParams =  new PropVals();    oFile = Open (tplFile, openParams, openReturnParams);    return oFile; }   function GetTplParams() {  // =>>> "undefined is not an object" on line 22 var params, i;  // Change the params   i = GetPropIndex(params, Constants.FS_RefFileNotFound);    params[i].propVal.ival = Constants.FV_AllowAllRefFilesUnFindable;    i = GetPropIndex(params, Constants.FS_FileIsOldVersion);    params[i].propVal.ival = Constants.FV_DoOK;    i = GetPropIndex(params, Constants.FS_FontNotFoundInDoc);    params[i].propVal.ival = Constants.FV_DoOK;    i = GetPropIndex(params, Constants.FS_LockCantBeReset);    params[i].propVal.ival = Constants.FV_DoOK;    i = GetPropIndex(params, Constants.FS_FileIsInUse);    params[i].propVal.ival = Constants.FV_OpenViewOnly;    i = GetPropIndex(params,Constants.FS_AlertUserAboutFailure);    params[i].propVal.ival=Constants.FV_DoCancel;  /*   i = GetPropIndex(params,Constants.FS_MakeVisible );    params[i].propVal.ival=false;  */   return (params);  }
    (inserting JS code really has its quirks in this editor).

    Thanks Klaus - now it works!
    To Rick.
    The presented piece of code is part of a 're-furbishing' the FameMaker to EndNote 'connection.
    In a first step I collect temporary citations (such as [Daube, 1969, #123] ) from text, footnotes and tables into an array. This part already works fine (I had to postpone further development for a year now...).
    Then I write this data to a new document (which is created from the template - this is where the mentioned piece comes into play.
    This file then is saved as rtf to be worked off by the bibliographic application EndNote (or Citavi in another case) to resolve the temporary citation into formatted citations and the bibliography.
    After that the modified rtf is read in FM and the temp. citations in the FM-document/book are replaced by the formatted citations.
    The user then copies the bibliography (as text only) into his appropriate chapter/section and formats it to his liking.

  • Adobe Bridge CS6 undefined in not an object Help Please

    I am so sick and tired of getting this error message when I try to create a pdf contact sheet - undefined is not an object.  Can someone help me?
    What frustrates me the is there is no log file telling me what image has the problem which Bridge does not like.
    This example is of brand new eps files that were created in the last month
    I also have the same undefined object is not an object using AI files but none are shown in this example.
    If there is no solution to tell me what eps or ai file(s) bridge does not like - is there a setting I can change so Bridge skips the file it does not like?  Sorta silly skipping a file for a contact sheet but if that is a workaround to make it bridge work that would be a huge improvement versus the program not working at all, LOL...
    1. I have tried using another program to rename all my files to be sequential numbers too, so that is taking more time and I am losing the ability to find my files by name and I still get the undefined is not an object.
    2. I am to the point of using other programs to create jpeg images of AI and EPS files and then using bridge to make contact sheets and doing that takes a ton more time and is just silly to do so now I am to the point of asking for help. 
    3. Operating system is Wondows 7 - I use CS6 - Adobe Bridge for making contact sheets - screen shoot is attached - all CS6 items are up to date with updates.
    4. Yes, I have searched the internet for help and searched adobe for help --- seems like no one has posted a solution.

    I am having this same issue. I'm attempting to make a pdf in Bridge but am getting the error message "undefined is not an object." A log or a report of some kind would be very useful here to find out which object is the offender. Looking at my files they appear to be in order but obviously something is amiss....

  • Time machine fails backing up with a "backup disk not found" error after upgrade to Lion 10.7.2

    Time machine fails backing up with a "backup disk not found" error after upgrade to Lion 10.7.2. I've erased and reformatted the drive; reconnected Time Machine(it saw it) and began a new backup. The backup starts again but fails before completing with backup drive not found error. I used the 10.7.2 combo update. Any help on how to fix this problem would be appreciated.

    Arghhhhhhhhhhhhhhhhhhh!!!!!!
    After waiting since October for a fix, I have now upgraded the firmware on the Time Capsule and installed the new Airport Utility, released yesterday, and the situation is even worse.
    Up until now, the Airport Utility had an option to disconnect all drives manually and the Time Capsule would then work until the next reboot – a temporary (?) work-around.
    Now that option does not exist in the new-look Airport Utility. And the Airport Utility installation can’t be rolled back and the old utility won’t restore.
    The sparesbundle is still not accessible. Anyone worked out a work-around in the new environment yet?
    I have another Time Machine backup working fine to a trusty old Lacie Drive so erased the one on my Time Capsule to see if that works. I have renamed the Capsule and the Time Capsule Drive.  But to build another full backup will take at least two days and I shall be away from tomorrow and am reluctant to leave the Capsule and computer up and running for a week. And I’ll bet the sparsbundle will still be nowhere to be found.
    How can Apple screw up so badly when they are to become the richest company in the entire world and – soon – will have more cash in the bank than the entire United States? Can’t they afford someone who really can sort this out? Especially when a Firewire connected hard drive – my trusty and simple LaCie – works fine.
    Words, almost, fail me.

  • Indesign export to Dreamweaver XHTML, error undefined is not an object

    Please could you read the following email and make any suggestions, greatly appreciated.
    Hi Guys,
    Exporting it to a pdf and then again to HTML works okay so long as the text isnt in columns. Acrobat doesnt put the text in the right order which is a pain. Here is a breakdown of what i am doing and whats happening.
    1. Opening an indd file in SERVER NAME/Data/ONLINE/FOLDER NAME/
    2. Going to File à Cross-media Export à XHTML/Dreamweaver
    3. Saving the file in SERVER NAME/Data/ONLINE/FOLDERNAME/indd exports/
    4. In the export settings i am changing the Advanced settings to make sure there is No CSS
    5. I hit Export and get this error message: undefined is not an object
    If you go in to the indd export folder you can see that i have managed to export about half the files, the rest all have the same error message and i have no idea why.
    I have tried the following:
    1. Substituting all fonts it couldnt find on my computer for the default fonts
    2. Taking out all the images (we dont need them, just the text)
    3. Closing everything down and rebooting CS3
    4. Closing everything down and rebooting the Mac
    5. Saving the file on to the local machine and trying again

    Hi all,
    I'm getting this error "undefined is not an object" and can't get past it.
    What do you mean by "nested paragraph styles in your document"? How do I find these in my document?
    I went to all the Paragraph Styles Options -> Drop Caps and Nested Styles that I've defined im my doc and none of them have these (Drop Caps and Nested Styles) configs. Is this what you refer to?
    Thank you.

  • JavasScript error Metadata: 509 undefined is not an object

    Hi everybody,
    When I click on a thumbnail in Bridge 5 , I have a prompt that says "An error occured in Bridge extension.
    JavasScript error Metadata: 509 undefined is not an object"
    Thanks for your attention,
    JP

    When I click on an image with gif, png, I have a promt : "Undifined is not an object: 509"
    from the keywords-counter-0.72.jsx script.

  • Error message, "undefined is not an object" when exporting book to Digital Editions

    I have created a book file complete with a TOC and but cannot export to Digital Editions. I keep getting the error message, "undefined is not an object." I've attempted to create new book files in several different ways, but continue to get the same error. Any help would be greatly appreciated.
    Tricia

    HI!
    I'm getting the same message error with reference to the check on TOC just before exporting in digital editions. Yes I tried in many ways but I'm working on a MAC and I cannot change the computer because of fonts. Is there anyway to clean the cash memory of InDesign? Thanks!!!

  • Error in Java script "undefined is not an object"

    Dear All,
    Im using InDesign CS4. Im trying to remove the anchor frames containing some text. but i got the error msg "undefined is not an object". Here is my part code.
    app.findGrepPreferences.findWhat = "AQ\\d+";
    myFoundItems=app.findGrep();
    var myLen=myFoundItems.length;
    for(var i=myLen-1; i>=0;i--){
        alert(myFoundItems[i].contents);
        var a = app.select(myFoundItems[i].parentTextFrames);
        a.remove();
    Please help anyone.
    Thanks
    Selva

    Hi Ariel,
    First, you don't need to select an object to remove it. So you can just use: 
    myFoundsItems[i].parentTextFrames.remove()
    Unfortunately, that's not correct, because "parentTextFrames" is an Array of text frames, so this will fail. Maybe something like this:
    myFoundsItems[i].parentTextFrames[0].remove();
    Secondly, if you want to select something you need to write 
    myObject.select()
    This is not correct either. App object also have "select" method, and you can pass the object. Example:
    var doc = app.documents.add(),
        rec = doc.rectangles.add({geometricBounds:["0mm", "0mm", "10mm", "10mm"]});
    app.select(rec);
    Hope that helps.
    Marijan (tomaxxi)
    http://tomaxxi.com

  • Undefined is not an object error message

    Hi there.
      I'm just new to scripting in illustrator.  actually, i'm new to illustrator too!
    but i do have a programming background.  right now, i'm just trying to familiarize myself with scripting for illustrator files.
    i have an svg file that was created by our artist.  i've opened that file in illustrator.  i've also opened a sample javascript from adobe called "makelineargradient" and i'm trying to run this script against the svg file.
    it worked fine the first time. but on subsequent compiles / runs, i'm getting the error message "undefined is not an object"
    the line it's failing on is line 1:
    if (app.documents.length > 0)
    can someone point me in the right direction?  I'm using the extendscripts tool to open and run the javascript file.

    Be sure that you are targeting Illustrator, and not the Extendscript application (there is a dropdown menu at the top left.). I'll bet that yours is still set to Extendscript (it will default to this when opened.)
    Also, you can add the line:
    #target illustrator
    at the beginning of the code to set Illustrator as the target.

  • Undefined is not an object

    Hello!
    It seems this question may have been asked, but I cannot find an answer.
    When creating a PDF from Bridge, I get the error message "undefined is not an object." I have figured out which images are causing this problem, but is there a way to "fix" them so that I can make a PDF?
    They are named the same way that all of my other images are named, and re-saving them doesn't seem to help either.
    Just to give some background, these are all images that have been submitted to me by multiple people. I have renamed all of the files to follow a naming convention (ex: ABC0001.tif, ABC0002.tif). The images that seem to be causing the problem are all from the same person.
    Thanks for any help!

    I have renamed all of the files to follow a naming convention (ex: ABC0001.tif, ABC0002.tif)
    This might sound obvious because you also named open and resave files as no solution but you did rename using the existing file extension I presume? Otherwise also check if you have the correct permissions (read and write) for the files.
    And can you provide details about OS system, version and Bridge version?

  • Wifi is not working properly after upgrading 7.1.1 onmy i4s

    Dear Apple
                      i realy appriciate on your work ..right now i am suffreing from a problem that one i mentioned in subject .sometime my wifi is working good and sometime it shos dead to me ..but now its not working well after upgrading my phone on 7.1.1....
    its my humble request please find a solution and provide me as soon as possble..
    my totally work on wifi .
      and sometime it goes hang in setting when i come on setting folder and clicked on wifi its get hang and also showing wifi is not availabe..please provide me best solution
      Thanx & Regards
        Sam
      +91-92555-04628

    settings - general - reset - reset network settings.

Maybe you are looking for

  • Automatic insertion of file name in Pages footer?

    I'm considering using Pages instead of MS Word. One thing I can't figure out is if it is possible to use a function to automatically insert the filename in the footer of a page (or anywhere else for that matter)? Having the file name on printouts is

  • Pixels to mm conversion help needed!

    Hi.. it's a long shot, but I am constructing a dummy web page... and need to figure out how to take 1000 pixels and convert to a mm or cm box to do a design in. Does anyone know how to do that... as web designers say they need a 1000 pixel wide page!

  • Can I transfer songs from a PC to a Mac for my nano?

    Again, I am a new Mac owner, but I have had my iPod nano for 8 months. I have an extensive library on my PC and quite a few great playlists currently on the nano. Please tell me there is a way to transfer that music without losing everything. I know

  • Brand new user account, same old name

    I've been having some quirky behavior with the main account on my Powerbook. Most recently I purchased and installed Speed Download, only to find that it unexpectedly quits after just a few minutes of an FTP download. I can run it in a new account wi

  • Still having trouble with Adobe Viewer

    I'm still having the issue that when I have multi state objects, (state 1 is off the page, state 2 is on the page) the hidden state (state 2) is showing up on the iPad Adobe Viewer when you click the |||| icon from the menu in the upper left corner.