Re: list issues Never mind!
Re: list issues Never mind!
- Subject: Re: list issues Never mind!
- From: Joshua Whalen <email@hidden>
- Date: Wed, 24 Jun 2009 20:30:14 -0400
name of files of thefolder whose name ends with ".html"
that does it.
Joshua Joshua Whalen +1 (212) 457-9908 - home, voicemail +1-646-299-8207 - cell +1-747-665-1905 - SIP
"Vision without action is a day dream, Action without vision is a nightmare." -- Japanese proverb
On Jun 24, 2009, at 7:34 PM, Christopher Stone wrote: On Jun 24, 2009, at 14:09, Joshua Whalen wrote: set myfilelist to every item of ((list folder thefolder) whose name ends with ".html") as list
______________________________________________________________________
Hey Joshua,
Where you went wrong is 'list folder'. function syntax
List folder does not allow for a filter form.
set fold to path to desktop folder tell application "System Events" files of fold whose name extension is "html" and visible is true end tell
Philip's script works fine. You can do the same thing with the Finder:
tell application "Finder" tell front window (files whose name ends with ".html") as alias list end tell end tell
tell application "Finder" tell front window (files whose name extension is "html") as alias list end tell end tell
Applescript can occasionally be crazy-making. :)
Best Regards,
Christopher Stone
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden
References: | |
| >list issues (From: Joshua Whalen <email@hidden>) |