Notify when copy is done in W10

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
loek3000
Posts: 146
Joined: 12 Nov 2013, 03:24

Notify when copy is done in W10

12 Oct 2018, 09:06

I copy alot between pc and the cloud with webdav... but usually it takes about 4 minutes for 1 gb.... tho i would wish i was being informed when the copy had done...

so when copy starts, a file transfer is working with the % of display of work done...

When the popup display is closed, i would like to be informed that the copy is done...
eqv
Posts: 72
Joined: 18 Sep 2018, 22:17

Re: Notify when copy is done in W10

15 Oct 2018, 12:33

loek3000 wrote:
12 Oct 2018, 09:06
I copy alot between pc and the cloud with webdav... but usually it takes about 4 minutes for 1 gb.... tho i would wish i was being informed when the copy had done...

so when copy starts, a file transfer is working with the % of display of work done...

When the popup display is closed, i would like to be informed that the copy is done...
If you mean copying using windows, this script should work:

Code: Select all

Loop
{
If (WinExist("ahk_class OperationStatusWindow")) {
While (WinExist("ahk_class OperationStatusWindow"))
Sleep, 100
GoSub, Notify
} Sleep, 100
}

Notify:
SplashTextOn, 200, 21,, All copy\delete is done.
Sleep, 2500
SplashTextOff
Return
• To change notification; modify from "Notify:" until "Return"
If you are copying using other method, then you should explain how you are copying.

Hope it helps,
loek3000
Posts: 146
Joined: 12 Nov 2013, 03:24

Re: Notify when copy is done in W10

16 Oct 2018, 11:41

Great, thanx eqv :)

i just changed it a bit to

Because the box is located at the bottom - right on my screen, it notifies me, but not harreses ,me :p

thanx again :)

Code: Select all

Loop
{
If (WinExist("ahk_class OperationStatusWindow")) {
While (WinExist("ahk_class OperationStatusWindow"))
Sleep, 100
GoSub, Notify
} Sleep, 100
}

Notify:
CoordMode, ToolTip
ToolTip, Kopieer of verwijder opdracht is afgerond..., A_ScreenWidth, 999
Sleep, 3000
ToolTip
Return

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: mikeyww and 315 guests