Re: Filter for folders
Re: Filter for folders
- Subject: Re: Filter for folders
- From: Matthew Smith <email@hidden>
- Date: Sun, 24 Mar 2002 09:42:32 +1100
on 24/03/2002 02:15, Jean-Marie Hoornaert at email@hidden wrote:
>
> This does not work:
>
>
>
> on open TheItems
>
> tell application "Finder" to set TheFiles [noBreak]
>
> to every item of TheItems whose kind is not "Dossier"
>
> end open
>
>
test this :
>
>
on open TheItems
>
tell application "Finder" to set TheFiles [noBreak]
>
to every item of TheItems whose file type is not "fold"
>
end open
Why not:
on open TheItems
tell application "Finder" to set TheFiles [noBreak]
to every file of TheItems
end open
--
Matthew Smith
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.