Jump to content

full screen? how?


Recommended Posts

hello there do anyone knows how to make full screen??

i mean then you make a script and then you start it up its in full screen???

ty

---------------------------------------------------------------------------------------------------------------->>>>>>| |My scripts: |Warcraft lll auto login -- an auto login to warcraft lll ;) |Wow auto login -- an auto login to wow ;) | |---------------------------------------------------------------------------------------------------------------->>>>>>|

Link to comment
Share on other sites

heh but i really need some help (read my q) :)

---------------------------------------------------------------------------------------------------------------->>>>>>| |My scripts: |Warcraft lll auto login -- an auto login to warcraft lll ;) |Wow auto login -- an auto login to wow ;) | |---------------------------------------------------------------------------------------------------------------->>>>>>|

Link to comment
Share on other sites

This works for multiple monitors too:

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

$FullScreenX = DLLCall("user32.dll", "int", "GetSystemMetrics", "int", $SM_XVIRTUALSCREEN)
$FullScreenY = DLLCall("user32.dll", "int", "GetSystemMetrics", "int", $SM_YVIRTUALSCREEN)
$FullScreenW = DllCall("user32.dll", "int", "GetSystemMetrics", "int", $SM_CXVIRTUALSCREEN)
$FullScreenH = DllCall("user32.dll", "int", "GetSystemMetrics", "int", $SM_CYVIRTUALSCREEN)

Opt("GUICloseOnEsc",1)
GUICreate("FullScreen",$FullScreenW[0],$FullScreenH[0],$FullScreenX[0],$FullScreenY[0],$WS_POPUP)

GUISetState()
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
Link to comment
Share on other sites

ty and sry for the simple q

---------------------------------------------------------------------------------------------------------------->>>>>>| |My scripts: |Warcraft lll auto login -- an auto login to warcraft lll ;) |Wow auto login -- an auto login to wow ;) | |---------------------------------------------------------------------------------------------------------------->>>>>>|

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