tell application "iTerm" to activate
delay 0.1
tell application "System Events" to tell process "iTerm"
keystroke "Lsj!"
end tell
私はいくつかの文字を入力する正しい方法を知りたいのですが。 keystrokeコマンドは大文字小文字を区別できません。applescriptのkeystrokeコマンドで大文字と小文字を区別することができません
tell application "iTerm" to activate
delay 0.1
tell application "System Events" to tell process "iTerm"
keystroke "Lsj!"
end tell
私はいくつかの文字を入力する正しい方法を知りたいのですが。 keystrokeコマンドは大文字小文字を区別できません。applescriptのkeystrokeコマンドで大文字と小文字を区別することができません
これは
set the clipboard to "Lsj!" as text
tell application "iTerm" to activate
delay 0.1
tell application "System Events" to tell process "iTerm"
keystroke (the clipboard)
end tell
wch1zpinkの答えは動作するはず動作するはずです。
keystroke "l" using {shift down} -- uppercase
keystroke "sj!" -- lowercase
を必要に応じて
また働くべきであると個別に手紙を書くことができ
tell application "iTerm" to activate
delay 0.1
tell application "System Events" to tell process "iTerm"
key code 37 using {shift down}
key code 1
key code 38
end tell