# スクリプトフックの追加 スクリプトフックは、特定のイベント発生時にスクリプトを起動する機能です。 CotEditor は、次に挙げるイベントでのフックをサポートしています。 * `document opened`: ファイルを開く操作を行い、テキストが読み込まれた直後 * `document saved`: ファイルを保存する操作を行い、テキストが書き込まれた直後 イベントの詳細な仕様については、AppleScript 辞書の CotEditor Event Handler suite 項を参照してください。 このページでは CotEditor スクリプトをスクリプトフックへ対応させる方法について説明します。 ## 概要 フックに対応したスクリプトを作成する場合、以下の制約を満足する必要があります。 - AppleScript または JavaScript for Automation (JXA) による記述 - スクリプト バンドル 形式 (`.scptd`) で格納 以上に加えて、フックしたいイベントをメタデータファイルにて明示し、イベントハンドラを記述する必要があります。 ## スクリプトバンドルの構造 スクリプト バンドルは、以下に示す構造を持つディレクトリ構造です。 ``` HookingScript.scptd └── Contents ├── Info.plist └── Resources ├── Script Libraries │   └── my-fancy-library.scpt ├── Scripts │   └── main.scpt └── description.rtfd └── TXT.rtf ``` この形式には、macOSに標準で添付されているスクリプト エディタを用いることにより、簡単に書き出すことができます。 CotEditorのスクリプトフックに対応させるためには、まず、`Info.plist`にフックしたいイベントの一覧を記載する必要があります。 `plist`ファイルはプロパティリストと呼ばれ、その内容は以下に示すようなXML形式で記述されたバンドルのメタデータです。 ```plist CFBundleIdentifier com.coteditor.hooking-script CFBundleName Hooking Script CFBundleShortVersionString 1.0 ``` フックしたいイベントの一覧は、キー`CotEditorHandlers`に文字列の配列として記載します。以下にその一例を示します。 ```plist CotEditorHandlers document opened document saved ``` ## イベントハンドラ イベントハンドラは、アプリケーションが発生させたイベントを受信し、処理を行うスクリプトを指します。 ここでは、ファイルを読み込んだ後と書き込んだ後にダイアログを表示するスクリプトを例に採り上げ、イベントハンドラの記述方法について説明します。 ### AppleScript AppleScriptでスクリプトを記述する場合、`using terms from`ブロックと`on`ブロックを組み合わせることで、ハンドラを作成します。 ```applescript using terms from application "CotEditor" on document opened theDocument set thePath to file of theDocument display alert "Opened " & thePath end document opened on document saved theDocument set thePath to file of theDocument display alert "Saved " & thePath end document saved end using terms from ``` ### JavaScript for Automation (JXA) JXAでスクリプトを記述する場合、`function`文を用いてハンドラを作成します。関数はグローバルオブジェクト上で定義する必要があります。 ```javascript CotEditor = Application.currentApplication() CotEditor.includeStandardAdditions = true function documentOpened(document) { CotEditor.displayAlert("Opened " + document.file().toString()) } function documentSaved(document) { CotEditor.displayAlert("Saved " + document.file().toString()) } ```