OSAX(スクリプティング機能追加)
OSAXをインストールすると、インストールしたOSAXが提供するコマンドが新たに使用可能に。OSAXはScripting Additions @ macscripter.netなどでまとめて紹介されています。以下、フリーのOS9向けOSAXからいくつかピックアップ。

Menu Events
pickup command: select menu item - 任意のアプリのメニュー項目を実行
Finderの"編集"メニューの"すべてを選択"を実行
tell application "Finder"
	activate
	Select Menu Item menu title "編集" menu item text "すべてを選択"
end tell
Sigma's Additions
pickup command: type text - 任意のキーを入力
Command, Shift, 3 を入力してスクリーンショット
type text "3" holding down {command, shift}
Control Strip Stuff
pickup command: show/hide control strip - コントロールバーを表示/隠す
コントロールバーの表示をオン/オフ
if visible of (control strip info) then
	hide control strip
else
	show control strip
end if
File Visibility
pickup command: make file visible/invisible - ファイルの可視属性をオン/オフ
指定ファイルの可視属性をオン/オフ
set test to (choose file)

if visible of (info for test) then
	make file invisible test
else
	make file visible test
end if
Flashmenu
pickup command: flashmenu - メニューをパカパカとフラッシュさせる
回数3間隔5でメニューをフラッシュ
Flashmenu 3 hilite time 5
Network Info
pickup command: network information - ネットワーク情報を取得
自分のIPアドレスとホスト名を表示
set test to network information
display dialog (IP name of test) default answer (IP address of test)
ICScriptor
pickup command: Get/SetICPreference - インターネット設定を取得/設定
httpプロキシーをオン/オフ
tell application "ICScriptor"
	if GetICPreference use HTTP proxy then
		SetICPreference use HTTP proxy without to
	else
		SetICPreference use HTTP proxy with to
	end if
	quit
end tell
Jon's Commands
pickup command: keys pressed - 押されているキーを取得
押されているキーを表示
display dialog (keys pressed) & "が押されています。" as string
StuffIt Commands
pickup command: Stuff - 項目をStuffIt圧縮
指定ファイルをStuffIt圧縮
set test to (choose file)
Stuff test into (test & ".sit" as string)
GraphicsImporter OSAX
pickup command: giconvert - 画像をQuickTimeで変換
指定画像ファイルをJPEG形式に品質90で変換
set test to (choose file)
giconvert test type "JPEG" image (test & ".jpg" as string) quality 90
Transliterate
pickup command: Transliterate - 日本語文字列をいろいろ変換
全角英数を半角英数に変換
display dialog "" default answer "MacOS 9.3"
Transliterate (text returned of result) srcMask 8 target 2 scriptCode 1
display dialog "" default answer result
Kamprath's Text Utilities
pickup command: set capitalization in - 大文字小文字を指定した書式に変換
各単語の頭文字が大文字の書式に変換
display dialog "" default answer "apple SCRIPT"
set capitalization in (text returned of result) to word capitalization
display dialog "" default answer result
Folder Actions Plus
extension: ウインドウを開いていなくてもフォルダアクションが動作
項目が追加されるとダイアログでお知らせ("コンパイル済み"で保存してフォルダアクションとして貼り付け)
on adding folder items to test after receiving itms
	tell application "Finder"
		activate
		display dialog "「" & name of test & " 」フォルダに「" & name of item 1 of itms & "」が追加されました。"
	end tell
end adding folder items to
24U Appearance OSAX 1.3
pickup command: create/update/close message window - フローティングウインドウでメッセージを表示/更新/閉じる
メッセージを表示→更新→閉じる
set test to create message window "お試し中.." with properties {closeable:true}
delay 1
update message window test message text "3秒後に消えます"
delay 3
close message window test