Quit skype with alt-F4 (Autohotkey needed)

Due to overzealous user interface design Skype does not close with alt-F4 but instead minimises. That is not considered good behaviour.

I have found no setting in Skype to restore it normal Windows behaviour.

So I found and copied a Authotkey script that restores makes alt-F4 properly close Skype.

1
2
3
4
5
6
#IfWinActive ahk_exe Skype.exe ahk_class tSkMainForm
!f4::
WinClose
ExitApp
Return
#IfWinActive

Kudos to original article https://autohotkey.com/board/topic/126066-script-to-run-skype-with-real-alt-f4/

Tags: , ,

Leave a Reply