Content deleted Content added
m Removed unnecessary link |
Tag: Reverted |
||
Line 23:
Prior to [[Mac OS X 10.3]], Script Editor was developed using [[Carbon (API)|Carbon]]. 10.3 introduced a new Script Editor written using [[Cocoa (API)|Cocoa]]. From [[Mac OS X 10.6]] to [[OS X 10.10|10.10]], it was called AppleScript Editor. It likely regained its original name because of the introduction of JavaScript for Automation.
tell application "System Events"
set texttosay to "
"
display dialog "Text to type:" default answer " "
set texttosay to the text returned of the result
repeat
activate application "Roblox"
delay 300
repeat 1 times
keystroke "/"
delay 2
keystroke texttosay
delay 3.0
keystroke return
end repeat
end repeat
end tell
==References==
|