Re: Quit application
Re: Quit application
- Subject: Re: Quit application
- From: Bill White <email@hidden>
- Date: Thu, 15 Nov 2001 17:23:50 -0500
>
This does not work
>
>
set v_appl to "Simple text"
>
tell application "Finder"
>
quit v_appl
>
end tell
>
>
Can anybody tell me why and what I'm doing wrong.
You don't need to involve the Finder at all here. Try this:
set v_apl to "Simple Text"
tell application v_apl to quit
Hope that helps.
Bill