Killer willst du ihm erklären?:D
MsgBox(64, "", "4Story wird jetzt für 10 Sekunden ausgeblendet")
WinSetState("4Story", "", @SW_HIDE)
Sleep(10000)
WinSetState("4Story", "", @SW_SHOW)
MsgBox(64, "", "Das Fenster wurde wieder eingeblendet")
HotKeySet("{PGUP}", "_hide")
HotKeySet("{PGDN}", "_show")
While True
Sleep(10)
WEnd
Func _hide()
WinSetState("4Story", "", @SW_HIDE)
EndFunc
Func _show()
WinSetState("4Story", "", @SW_SHOW)
EndFunc