Re: How do I do this? (Converting class property to class list)
Re: How do I do this? (Converting class property to class list)
- Subject: Re: How do I do this? (Converting class property to class list)
- From: email@hidden
- Date: Fri, 3 Apr 2009 16:34:26 +0000
- Importance: Normal
- Sensitivity: Normal
Perfect! Thank you Yvan.
Steve
------Original Message------
From: Yvan KOENIG
Sender: applescript-users-bounces+stevet=email@hidden
To: Applescript Users
Sent: 3 Apr 2009 17:11
Subject: Re: How do I do this? (Converting class property to class list)
Le 3 avr. 2009 à 18:00, Steve Thompson a écrit :
> tell application "Finder"
> bounds of every window
> name of every window
> every window whose bounds is {658, 277, 1539, 777}
> end tell
tell application "Finder"
set theWindows to {}
repeat with i from 1 to count of windows
tell window i
if (get bounds) is {658, 277, 1539, 777} then
copy name to end of theWindows
end if
end tell
end repeat
theWindows
end tell
Yvan KOENIG (from FRANCE vendredi 3 avril 2009 18:11:16)
_______________________________________________
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
Sent from my BlackBerry® wireless device
_______________________________________________
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