Re: Display Dialog
Re: Display Dialog
- Subject: Re: Display Dialog
- From: Jon Pugh <email@hidden>
- Date: Sat, 29 Sep 2001 11:16:11 -0700
At 5:19 PM +0200 9/19/2001, email@hidden wrote:
>
I wonder how I get the dialog window to the front of all other running
>
applications??
I generally target it at an application and activate the application first.
For example:
tell app "Finder"
activate
display dialog "Whatever"
end tell
Good luck.
Jon