home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-05-03 | 527 b | 20 lines | [TEXT/ToyS] |
- on fileName(f)
- set oldDelims to AppleScript's text item delimiters
- set AppleScript's text item delimiters to ":"
- set n to the last text item of (f as string)
- set AppleScript's text item delimiters to oldDelims
- return n
- end fileName
-
- on open f
- set f to f as list
- repeat with i in f
- play every sound in i
- display dialog "There were " & (number of sounds in i) & " sounds in the file " & fileName(f) & "."
- end repeat
- end open
-
- on run
- choose file with prompt "Choose file to play the sounds from:"
- open result
- end run