Adjusting properties of container window
Adjusting properties of container window
- Subject: Adjusting properties of container window
- From: "Michiel (werk)" <email@hidden>
- Date: Thu, 25 Jul 2002 12:52:24 +0200
Nigel,
You're Brilliant!!
This really works!
Also thanks for you explenation......
Only one thing......
I hoped that it also get faster but that isn't true.
Thanks anyway.
Michiel
Nigel wrote:
tell application "Finder"
tell container window of folder "test" to set {view, bounds,
position} to {1, {20, 100, 200, 300}, {100, 100}}
end tell
If you 'tell' the container window to set a list containing the names of
properties, it will assume they're its properties. Otherwise, you have to
write 'of container window of folder "test"' after every item in the list.
When setting by list like this, the compiler can't tell if you mean
'icon' the view setting or 'icon' the item property, so you have to use
the integer alternative. The integer alternative for 'icon' view is 1.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.