ApplescriptでAutomatorのアクションを作成しています。main.xbで”mytext”というテキストフィールドを配置してバインドでき、中身を取得まで出来ましたが、テキストフィールドに文字を書き込む書式が分からず、書き込みできません。
お分かりの方ご指導お願いします
Applescript
1script test 2 property parent : class "AMBundleAction" 3 4 on runWithInput_fromAction_error_(input, anAction, errorRef) 5 set thetext to valueForKey_("mytext") of parameters() of me as string 6 display alert thetext --ここまでは正常 7 tell (valueForKey_("mytext") of parameters() of me) to setStringValue_("test words") 8 end runWithInput_fromAction_error_ 9 10end script
あなたの回答
tips
プレビュー