Re: Hiding OE's window
Re: Hiding OE's window
- Subject: Re: Hiding OE's window
- From: Kai Edwards <email@hidden>
- Date: Sat, 02 Mar 2002 22:33:42 +0000
on Fri, 01 Mar 2002 08:14:07 -0700, Gnarlodious <email@hidden>
wrote:
>
For some reason I can only get this to work one way, it will hide the window
>
but not show it. Is this why the dictionary says "Read Only"?
>
>
property oew : 0
>
tell application "Outlook Express"
>
activate
>
if oew = 0 then
>
set oew to 1
>
set visible of window 1 to true
>
else
>
set oew to 0
>
set visible of window 1 to false
>
end if
>
end tell
Hi Rachel!
As I understand it, you're trying to toggle the visible of a particular
window in OE.
Would something like this help?
property oew : ""
tell application "Outlook Express"
activate
if oew = "" then
set oew to window 1's name
set visible of window oew to false
else
set visible of window oew to true
set oew to ""
end if
end tell
HTH
Kai
--
**********************************
Kai Edwards Creative Resources
1 Compton Avenue Brighton UK
Telephone +44 (0)1273 326810
**********************************
_______________________________________________
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.