Differences between Applescript in 8 and 9?
Differences between Applescript in 8 and 9?
- Subject: Differences between Applescript in 8 and 9?
- From: Hellum Timothy <email@hidden>
- Date: Wed, 22 Nov 2000 23:28:41 -0500
I, too, am experiencing scripts that are written in 9 that don't work in 8.
Currently: 9.0.4 and Applescript 1.4.3
My script that doesn't seem to work in 8 as follows:
on open (theList)
tell application "Finder"
repeat with theItem in theList
if class of theItem is file then
set locked of theItem to false
end if
set fileName to name of theItem
set fileType to file type of theItem
set creator type of theItem to "8BIM"
end repeat
end tell
end open
Any ideas?