Re: Calling an Applescript from Cocoa Java App
Re: Calling an Applescript from Cocoa Java App
- Subject: Re: Calling an Applescript from Cocoa Java App
- From: Chris Beauvois <email@hidden>
- Date: Mon, 14 Jan 2002 21:39:30 -0600
>
> class error for 'ASKNibObjectInfoManager': class not loaded
Actually, an error of this type is logged when a nib file is loaded that
references a class that hasn't been loaded yet. From the class
namespace, it looks like it should be part of AppleScriptKit.framework;
This may be linked for you automagically in an AppleScriptStudio-based
app, but probably not in a pure AppKit-based app (while
AppKitScripting.framework is). You might try linking against
AppleScriptKit.framework explicitly in your project to rule this out.
-Chris