The best place to look for on the subject is the Mac OS X Reference Library.
Here is all the information that you will need to get started:
SimpleScripting
This sample walks you through the most
basic steps required to make an
application scriptable. This includes
setting up the info.plist file, adding
a scripting dictionary, and adding a
property to the main application
class.
SimpleScriptingObjects
This sample is a follow-on to the
SimpleScripting and
SimpleScriptingProperties sample and
it shows how to add an object
hierarchy to the terminology provided
by a AppleScriptable application.
SimpleScriptingProperties
This sample is a follow-on to the
SimpleScripting sample and it shows
how to add some properties to the
terminology provided by a
AppleScriptable application.
SimpleScriptingVerbs
This sample is a follow-on to the
SimpleScripting sample and it shows
how to add some verbs to the
terminology provided by a
AppleScriptable application.
SimpleScriptingPlugin
This sample is a follow-on to the
SimpleScriptingObjects sample, and it
uses many of the techniques from the
SimpleScriptingVerbs sample. After
completing the steps defined in the
SimpleScriptingObjects sample to set
up and create a scriptable
application, you can continue with the
steps in this sample to add both
scripting plugin capabilities to the
application and an example scripting
plugin.
The techniques presented here
illustrate a number of interesting
things you can do with a scripting
plugin. These include:
(a) adding new scripting classes
(b) extending existing scripting
classes
(c) adding new scripting commands
Briefly said, once an application is
scriptable, allowing for scripting
plugins is easy work. The
modifications to the host application
are minimal and very generic. No
special code needs to be added to the
existing scripting classes to allow
for plugins. And, creating the
scripting plugins is no more difficult
than adding some additional scripting
to the application. The scripting
plugin itself is a simple Cocoa
Loadable Bundle that contains one or
more .sdef files describing its
scripting functionality.