Economy-x-Talk - Sample Scripts
DeleteFile()
The AppleScript deleteFile show how to delete files. Don't try it, you might loose your entire HyperCard folder and its contencts.
These scripts also demonstrate communication between AppleScript and HyperTalk using HT global variables.
--on deleteFile()
try
set fileToDelete to variable "theFile" as alias
tell application "Finder"
delete fileToDelete
-- empty trash
end tell
on error errorMsg
beep
display dialog errorMsg
end try
--end deleteFile
on chooseFile
global theFile
answer file "Choose Stack..." of type "STAK"
put it into theFile
-- put theFile into field 1
end chooseFile
Keep this extensive resource of tutorials and samples on-line! Support RunRev.info!
| Yes, this script is useful. I make a donation and choose freely how much I want to donate on-line (PayPal). Click here if you want to make a donation in dollars. | This script has not (completely) solved my problem and I want Economy-x-Talk to take care of it. Let me contact you. |
Copyright©2002-2008 by Mark Schonewille, Nijmegen, the Netherlands. This web site is in no way affiliated with Runtime Revolution Ltd., but we do recommend the Revolution development platform.