Re: Folder copy
Re: Folder copy
- Subject: Re: Folder copy
- From: What does not kill you only makes you stronger <email@hidden>
- Date: Wed, 31 Jan 2001 21:32:01 -0600
on 01/31/01 8:02 PM, email@hidden wrote:
>
property toggle : {}
>
>
on run
>
set toggle to false
>
end run
>
>
on idle
>
tell application "Finder"
>
if execution state = copying then --Mac OS 9.1
>
activate
>
set position of status window 1 to {408, 386}
>
activate
>
display dialog "Copying" giving up after 3 with icon 1
>
else if execution state copying then --Mac OS 9.1
Should be:
else if execution state is not copying then --Mac OS 9.1
References: | |
| >Re: Folder copy (From: What does not kill you only makes you stronger <email@hidden>) |