FuZi0h Posted February 9, 2006 Posted February 9, 2006 Hi all, can anyone see whats wrong in this code? expandcollapse popup#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 :)
Faustvii Posted February 9, 2006 Posted February 9, 2006 (edited) expandcollapse popup#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 February 9, 2006 by Liope
FuZi0h Posted February 9, 2006 Author Posted February 9, 2006 cant tell the difference? [~FuZi0h~]ScriptRipping? = ┴¬┴¬┴┴¬ (My word for sucks.)'FuZi0h, Liope and Rambo3889 4-EvaHelp me by pressin This!all clicks appreciated :)
Faustvii Posted February 9, 2006 Posted February 9, 2006 cant tell the difference? this was yours hotkeys #region;Hotkeys HotKeySet("pgdn", "Hide") HotKeySet("pgup", "Unhide") #endregion this is mine #region;Hotkeys HotKeySet("{pgdn}", "Hide") HotKeySet("{pgup}", "Unhide") #endregion
FuZi0h Posted February 9, 2006 Author Posted February 9, 2006 (edited) Nope, that aint it.. Edited February 9, 2006 by FuZi0h [~FuZi0h~]ScriptRipping? = ┴¬┴¬┴┴¬ (My word for sucks.)'FuZi0h, Liope and Rambo3889 4-EvaHelp me by pressin This!all clicks appreciated :)
BigDod Posted February 9, 2006 Posted February 9, 2006 ayeNow you are talking Scottish. 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
FuZi0h Posted February 9, 2006 Author Posted February 9, 2006 Now you are talking Scottish. [~FuZi0h~]ScriptRipping? = ┴¬┴¬┴┴¬ (My word for sucks.)'FuZi0h, Liope and Rambo3889 4-EvaHelp me by pressin This!all clicks appreciated :)
Faustvii Posted February 9, 2006 Posted February 9, 2006 expandcollapse popup#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
FuZi0h Posted February 9, 2006 Author Posted February 9, 2006 (edited) this worked you need to add guiconstants.au3 else it doesnt know Gui_Event_CloseDo'h! cant belive i forgot that.. Edited February 9, 2006 by FuZi0h [~FuZi0h~]ScriptRipping? = ┴¬┴¬┴┴¬ (My word for sucks.)'FuZi0h, Liope and Rambo3889 4-EvaHelp me by pressin This!all clicks appreciated :)
FuZi0h Posted February 9, 2006 Author Posted February 9, 2006 though i didnt just forgot to get it inhere.. still not workin. [~FuZi0h~]ScriptRipping? = ┴¬┴¬┴┴¬ (My word for sucks.)'FuZi0h, Liope and Rambo3889 4-EvaHelp me by pressin This!all clicks appreciated :)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now