ウィンドウを画面の左上隅に移動しようとしています。
これは私が書いたものです:
tell application "System Events"
tell application process "appIT"
tell window 1
--Move lobby to left corner
set s to size
activate
set the bounds to {40, 40, item 1 of s, item 2 of s}
end tell
end tell
end tell
しかし、スクリプトを実行すると、次のエラーが発生します。
システム イベントでエラーが検出されました: アプリケーション プロセス "appIT" のウィンドウ 1 の境界を {40, 40, 1037, 696} に設定できません
私は何を間違っていますか?