• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: How do I do this? (Converting class property to class list)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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

  • Prev by Date: Re: How do I do this? (Converting class property to class list)
  • Next by Date: Re: Parallel Processing in AppleScript
  • Previous by thread: Re: How do I do this? (Converting class property to class list)
  • Next by thread: Excel 2008 - Print to PDF
  • Index(es):
    • Date
    • Thread