Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Code Block
titlemy1.scpt
beep 2
say "Hello World"
tell application "OpenOffice.org"
open "his_file.doc"
end tell
 
set stringToBeDisplayed to "Julia is a pretty actress."
set tempVar to display dialog stringToBeDisplayed buttons {"OK", "no", "xx"}

set theButtonPressed to button returned of tempVar
display dialog "You pressed the following button: " & theButtonPressed
 
set temp to display dialog "Who is your favorite actress?" default answer "What Ever"
 
set theTextReturned to text returned of temp
 
display dialog theTextReturned