Hi guys,
I am trying to backup Skype contacts when the Skype window is minimized or machine is locked. But ControlSend is not working.
However when I run program, when Skype is active & focused, same program works.
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_UseX64=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
$pid = Run("skype.exe")
$hWnd = WinWait("[CLASS:tSkMainForm]", "", 10)
WinSetState($hWnd, "", @SW_SHOW)
Sleep( 1000 )
ControlSend($hWnd,"","TConversationsControl1", "!cdb")
If I change
WinSetState($hWnd, "", @SW_SHOW)
to
WinSetState($hWnd, "", @SW_MINIMIZE)
The file dialog to save contact as file will never appear. Where FAQs says ControlSend() instead of Send() will work even computer is locked.
Thanks for your time.
P.S: I've tried to find if backing up Skype contacts violate any EULA but do not find anything. Kindly enlighten me if this post is against forum rules in any sense.