ERROR 'undefined' is not an object. CK.Application

Hello all,
      I keep getting the following message whenever I click the 'find my iphone app.
ERROR 'undefined' is not an object. The calling function is CK.Application#_applicationShouldInvokeMain
FILE Unknown
I am using a blackberry playbook, however, I am signing into icloud from the browser. Could this be the reason?
Any advice will be greatly appreciated.
Thanks in advance.

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.

Similar Messages

  • 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.

  • 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.

  • 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

  • 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

  • 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....

  • "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.

  • 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.

  • 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?

  • Shape Layers: Undefined is not an object

    I’ve used rd_GimmePropPath to get the Match Names for shape properties but I get an “undefined is not an object” error using the following:
    app.project.item(1).layer("Shape").("ADBE Root Vectors Group")("ADBE Vector Shape - Ellipse")("ADBE Vector Ellipse Position”).setValue(-535,-311);
    Any insight into accessing shape layer properties via scripting would be appreciated.

    Are you still getting the "undefined is not an object" error?
    I would break it into pieces and see where you're getting the error:
    var myLayer = app.project.item(1).layer("Pinky");
    var temp1 = myLayer.property("ADBE Root Vectors Group");
    var temp2 = temp1.property("ADBE Vector Group");
    var temp3 = temp2.property("ADBE Vectors Group");
    var temp4 = temp3.property("ADBE Vector Shape - Ellipse");
    var temp5 = temp4.property("ADBE Vector Ellipse Position");
    temp5.setValue([-535,-311]);
    Dan

  • OLE DB error: OLE DB or ODBC error: %1 is not a valid Win32 application

    Hi,
    I am creating the Cubes with couple of dimensions. My backend is Oracle. I can able to deploy the cube in my local machine which is running 32 Bit Windoes 7 OS. But when I try to deploy the cube in another server which is running Windows 2003 R2 64 bit OS,
    returns "OLE DB error: OLE DB or ODBC error: %1 is not a valid Win32 application" this error. The driver whic I am using to connect the Oracel DB is "Native OLE DB\Oracle Provider for OLE DB". I have also installed the Oracle 10g 32 bit client in my machine.
    Any solution for this issue?
    Thanks,
    Jeen

    Hi Jeen,
    What's the specific version of your SQL Server? Please try to install the latest Service Pack on 64bit box to see if this help.
    How to obtain the latest service pack for SQL Server 2005:
    http://support.microsoft.com/kb/913089
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • What does undefined is not an object (evaluating 'item.notificationIds.each') mean? how do i get rid of it?

    This " undefined is not an object (evaluating 'item.notificationIds.each') " only comes up on my student website not allowing me to do anything on my student blackboard for school. How do i get rid of this or move past it so I can work?

    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

Maybe you are looking for

  • AEBS-GB: Successful workaround for HP Laserjet printer in Windows Vista

    I have been struggling for weeks to get this high-priced 802.11n router to see my USB HP Laserjet 1300 and allow me to print wirelessly over my network. The HP Laserjet is only the most ubiquitous printer on the planet. But, with the help of another

  • Importing alpha into FC looks jaggy

    Im exporting from: AE CS5.5: HDTV 1920x1080 alpha channel codecs tried- 4444, animation, none rgb+ FCP 7: 1920x1080 prores when i import into FC the edges are all jaggy?? is it the HDTV to prores? if so, how do i load prores into AE? macpro tower OS

  • Updated to Flash 10 for OSX10.4 but it doesn't work on some websites

    I'm using Firefox but it happens in Safari as well. Some websites are OK. But others with flash appear blank or on myspace the music says i need to update my flash player. I have the newest flash player. I went to the check if flash installed correct

  • Partner data copy from notification to repair order

    Hi, all I have this question, where I want to use one time customer for my repair order. Usually I add this one time customer in notification, when I creating service order (SM03)from repair order it not showing the customer in the service order... a

  • Adobe Update Error Message

    Everytime I start or re-start my computer I get an error message that says to "restart so updating can continue" I have re-installed CS4 and I still get the same message. I know you don't support CS4 any more but hopefully you can still solve this pr