デバイスの補助アクセスを有効にしようとしていると思います。たとえば、GUI スクリプトでは、これを有効にする必要があります。直接有効にすることはできませんが、ユーザーを必要な場所に誘導することはできます。以下は、補助アクセスが有効になっているかどうかを調べ、オプションがあるシステム環境設定ペインを表示します。
tell application "System Events"
set UI_enabled to UI elements enabled
end tell
if UI_enabled is false then
tell application "System Preferences"
activate
set current pane to pane id "com.apple.preference.universalaccess"
display dialog "This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS x which is currently disabled." & return & return & "You can activate GUI Scripting by selecting the checkbox \"Enable access for assistive devices\" in the Universal Access preference pane." with icon 1 buttons {"Cancel"} default button 1
end tell
end if
ユーザーがヒントを得るには、これで十分です。