Sign In/My Account | View Cart  

advertisement

AddThis Social Bookmark Button

Article:
  Controlling Your Mac with AppleScript and Java
Subject:   Error -1750
Date:   2003-06-12 13:10:47
From:   pcbeard
Response to: Error -1750

Yes, I see the same problem. Something in the way Cocoa works in Mac OS X 10.2.6 has triggered this. A simple work around is to add the following code to your application:


import com.apple.cocoa.application.NSApplication;


then


NSApplication.sharedApplication();


before you use the NSAppleScript class.

Full Threads Oldest First

Showing messages 1 through 1 of 1.

  • Error -1750
    2003-06-14 08:29:58  pcbeard [View]

    The technical reason this has broken is that the Carbon.framework is no longer automatically loaded into a Java program running from the command line. I have another workaround whereby I dynamically load the library /System/Library/Frameworks/Carbon.framework/Carbon using the NSAddImage() API, and this also allows programs using NSAppleScript to work.