Jump to content

about removing top bar


Recommended Posts

i want to remove the blue bar at the top of one of my gui's...the one that has minimize(-), the resize thing(two boxes),and exit(x)...is this actually possible? (it probably is and i just don't notice it yet)

Edited by nonplayablecharacter

You can always count on me for the dumb questions ;)My Scripts:Rikku

Link to comment
Share on other sites

One method is to create a window with a Popup Style. Note that the Window Name is not visible, but still assigned.

$WS_POPUP = -2147483648

$gui = GUICreate("Window Title",200,200,-1,-1,$WS_POPUP)
$button = GUICtrlCreateButton("X",182,0,18,18)
    GUICtrlSetFont(-1,10,800)
GUISetState()

Do
    $msg = GUIGetMsg()
Until $msg = -3 or $msg = $buttonoÝ÷ Ù.q©ÚÊ+zj/^Â)Ý£ë¢kazÖ¬¶«o+¶Ø§Ø^B)j·§¶Ø^¶zÉ-¢ë¢
ÚƧj«©Ý殶­sbb33c¶wVÒuT7&VFRgV÷CµvæF÷rFFÆRgV÷C²Ã#Ã#ÂÓÂÓÂb33cµu5õõUÃÅvävWDæFÆRgV÷Cµ&öw&ÒÖævW"gV÷C²
Edited by spudw2k
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...