Re: App switcher in OS 9
Re: App switcher in OS 9
- Subject: Re: App switcher in OS 9
- From: Jan Pieter Kunst <email@hidden>
- Date: Mon, 30 Apr 2001 10:45:58 +0200
This seemed to work on my machine:
tell application "Programmakiezer" -- (*)
set icon size of palette to small
set frame visible of palette to false
set visible of palette to true
set position of palette to lower left
set myPosition to position of palette
end tell
set x to item 1 of myPosition
set y to item 2 of myPosition
-- (*) Name of Application Switcher in Dutch system 9.1
In the short time I've been working with Applescript, I already found that
if properties seem out of reach, it often works to set a variable to the
value of the property and reference that variable instead of the property
itself. I'm sure someone else can explain the deeper reasons behind this.
Jan Pieter Kunst.-