AppleScript Editor: Difference between revisions

Content deleted Content added
Tag: Reverted
Undid revision 1070291384 by 69.117.25.169 (talk) - rv AppleScript vandalism.
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.
 
== See also ==
tell application "System Events"
*{{section link|AppleScript|Development tools}}
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==