Re: what the ***? literal paths update "automatically"
Re: what the ***? literal paths update "automatically"
- Subject: Re: what the ***? literal paths update "automatically"
- From: JollyRoger <email@hidden>
- Date: Wed, 14 Feb 2001 17:35:28 -0600
on 2/14/2001 3:21 PM, Michael Turner at email@hidden wrote:
>
tell application "Palindrome:Desktop Folder:testbed:scripts:MSetterWOPT.qks"
>
activate
>
end tell
>
>
moved to:
>
>
tell application "Palindrome:Desktop Folder:prod:scripts:MSetterWOPT.qks"
>
activate
>
end tell
Why specify the path at all? Just use:
tell application "MSetterWOPT.qks"
activate
end tell
JR