Positioning New Windows |
| Author |
Sherman Wilcox
|
| Last modified |
2003-01-01
|
|
What is this?
Someone asked about positioning new windows and I suggested using an attached script. I'd never tried attaching scripts to menu commands before so I thought I'd give it a shot. Here's the (probably very kludgy -- I'm no Applescripter) solution I came up with. Name it "New•Mail Message" and put it in the Menu Scripts folder.
|
on menuselect(menuName, itemName)
tell application "Mailsmith 1.5"
make new message window
set bounds of message window 1 to {101, 44, 735, 700}
set weHandledCommand to true
return weHandledCommand
end tell
end menuselect
|