Re: get current display resolution
Re: get current display resolution
- Subject: Re: get current display resolution
- From: Nigel Garvey <email@hidden>
- Date: Thu, 19 Jul 2001 11:35:33 +0100
Erik Norton wrote on Wed, 18 Jul 2001 18:31:20 -0700 (PDT):
>
went searching for a one-liner to get the current
>
screen resolution.
tell application "Finder" to get items 3 thru 4 of (get bounds of
desktop's content space)
... or, with Jon's Commands:
screen size of item 1 of (screen list)
Both produce a list result, eg. {800, 600}
NG