FW: Set Selection with a list of items - SOLVED
FW: Set Selection with a list of items - SOLVED
- Subject: FW: Set Selection with a list of items - SOLVED
- From: Irwin Poche <email@hidden>
- Date: Sat, 06 Oct 2001 22:10:03 -0500
Michelle,
The solution to this is so simple. It doesn't even have to be a different
command for lists.
tell application "Finder"
set theItems to {"Note Pad File", "Scrapbook File"}
set theFolder to "TiBook:System Folder"
open folder theFolder
select (items in folder theFolder whose name is in theItems)
end tell
-Irwin
----------