Jump to content

What's wrong?


FuZi0h
 Share

Recommended Posts

Hi all,

can anyone see whats wrong in this code?

#region;Hotkeys
HotKeySet("pgdn", "Hide")
HotKeySet("pgup", "Unhide")
#endregion


#region;Gui'en
GUICreate("Hvilket Window?",200,200)
GUISetState()
Opt("wintitlematchmode", 2)
$Window=GUICtrlCreateInput("",0,75,155,25)
$Hvilket=GUICtrlCreateLabel("Hvilket vindue skal hides?",0,50)
$Credit = GUICtrlCreateLabel("Created by Mathias Blohm",0,180)
$go = GUICtrlCreateButton("Go!",155,72,30,30)
while 1
    
    $msg = GUIGetMsg()
    
    Select
    case $msg=$GUI_EVENT_CLOSE
        Exit
    Case $msg = $go
        Sleep(2500)
        Send("pgdn") 
        sleep(1000)
        exit
    EndSelect
WEnd
#endregion
 #region;Funcs
 
 Func Hide() 
     WinSetState($Window,"",@SW_HIDE)
 EndFunc
 
 Func Unhide()
     WinSetState($Window,"",@SW_SHOW)
 EndFunc
 #endregion
[~FuZi0h~]ScriptRipping? = ┴¬┴¬┴┴¬ (My word for sucks.)'FuZi0h, Liope and Rambo3889 4-EvaHelp me by pressin This!all clicks appreciated :)
Link to comment
Share on other sites

#region;Hotkeys
HotKeySet("{pgdn}", "Hide")
HotKeySet("{pgup}", "Unhide")
#endregion


#region;Gui'en
GUICreate("Hvilket Window?",200,200)
GUISetState()
Opt("wintitlematchmode", 2)
$Window=GUICtrlCreateInput("",0,75,155,25)
$Hvilket=GUICtrlCreateLabel("Hvilket vindue skal hides?",0,50)
$Credit = GUICtrlCreateLabel("Created by Mathias Blohm",0,180)
$go = GUICtrlCreateButton("Go!",155,72,30,30)
while 1
    
    $msg = GUIGetMsg()
    
    Select
    case $msg=$GUI_EVENT_CLOSE
        Exit
    Case $msg = $go
        Sleep(2500)
        Send("{pgdn}")
        sleep(1000)
        exit
    EndSelect
WEnd
#endregion
#region;Funcs

Func Hide()
     WinSetState($Window,"",@SW_HIDE)
EndFunc

Func Unhide()
     WinSetState($Window,"",@SW_SHOW)
EndFunc
#endregion

that should do it..

Edited by Liope
Link to comment
Share on other sites

aye

Now you are talking Scottish. :lmao:


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

#include <GuiConstants.au3>
#region;Hotkeys
HotKeySet("{pgdn}", "Hide")
HotKeySet("{pgup}", "Unhide")
#endregion


#region;Gui'en
GUICreate("Hvilket Window?",200,200)
GUISetState()
Opt("wintitlematchmode", 2)
$Window=GUICtrlCreateInput("",0,75,155,25)
$Hvilket=GUICtrlCreateLabel("Hvilket vindue skal hides?",0,50)
$Credit = GUICtrlCreateLabel("Created by Mathias Blohm",0,180)
$go = GUICtrlCreateButton("Go!",155,72,30,30)
while 1
    
    $msg = GUIGetMsg()
    
    Select
    case $msg =$GUI_EVENT_CLOSE
        Exit
    Case $msg = $go
        Sleep(2500)
        Send("{pgdn}")
        sleep(1000)
        exit
    EndSelect
WEnd
#endregion
#region;Funcs

Func Hide()
     WinSetState($Window,"",@SW_HIDE)
EndFunc

Func Unhide()
     WinSetState($Window,"",@SW_SHOW)
EndFunc
#endregion

this worked you need to add guiconstants.au3 else it doesnt know Gui_Event_Close

Link to comment
Share on other sites

this worked you need to add guiconstants.au3 else it doesnt know Gui_Event_Close

Do'h! cant belive i forgot that.. :lmao: Edited by FuZi0h
[~FuZi0h~]ScriptRipping? = ┴¬┴¬┴┴¬ (My word for sucks.)'FuZi0h, Liope and Rambo3889 4-EvaHelp me by pressin This!all clicks appreciated :)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...