Jump to content

Freezing screen besides GUI


Recommended Posts

$IEForm = GUICreate(" ", 484, 165, 0, 0, $WS_DLGFRAME)
GUICtrlCreateLabel("You are currently viewing the", 17, 16, 265, 20)
GUICtrlSetFont(-1, 12, 400, 0, "Courier")
$OnlineList = GUICtrlCreateList("", 304, 32, 169, 102, -1, $WS_EX_CLIENTEDGE)
GUICtrlSetFont(-1, 8, 400, 0, "Trebuchet MS")
GUICtrlCreateLabel("process of finding an assault.", 17, 36, 274, 20)
GUICtrlSetFont(-1, 12, 400, 0, "Courier")
GUICtrlCreateLabel("Players found online so far:", 304, 16, 131, 15)
$HideIE = GUICtrlCreateButton("Hide", 16, 96, 271, 33)
GUICtrlSetFont(-1, 15, 400, 0, "Courier")


Func PrimaryDouble()
    Local $Handle = _IEPropertyGet ($o_IE, "hwnd")
    WinSetState($Handle, "", @SW_MAXIMIZE)
    _IEAction ($o_IE, "visible")
    GUISetState(@SW_SHOW,$IEForm)
EndFunc   ;==>PrimaryDouble

Upon that form showing I want to freeze the $o_IE from any user inputs. I still want $o_IE to be doing what its doing in the background but I don't want the user to be able to mess with it at all. Just look at it.

Ideally what I want is to disable that window, but at the same time still have the script maniplate it.

Link to comment
Share on other sites

Why not just use BlockInput


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

Because the user can't unfreeze it without using CTRL ALT DEL. I wanted the user to be able to click the button on the GUI to return input, however if you know a way that you can run BlockInput(0) with a hotkey, please let me know.

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...