Jump to content

sample question with GUI


pumpas
 Share

Recommended Posts

  • Developers

sample question how i can change this buttons size ?

:(  :ph34r:

<{POST_SNAPBACK}>

GUISetControl ( type, "text", left, top [,width [,height [,style [,exStyle]]] )

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

AutoBuilder

#cs - ### Generated by AutoBuilder 0.4 -- do not modify ###
394 278
0   1   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
button  $button_1   Button 1    30  30  320 210 0   0   
#ce - ### End of Dump ###

;Script generated by AutoBuilder 0.4


Opt("GUICoordMode", 1)
Opt("GUINotifyMode", 1)
GuiCreate("MyGUI", 392,273,(@DesktopWidth-392)/2, (@DesktopHeight-273)/2 , 0x04CF0000)

$button_1 = GUISetControl("button", "Button 1", 30, 30, 320, 210)

GuiShow()

While 1
    sleep(100)
    $msg = GuiMsg(0)
    Select
    Case $msg = -3
        Exit
    Case $msg = $button_1
       ;;;
    EndSelect
WEnd
Exit
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Link to comment
Share on other sites

AutoBuilder

#cs - ### Generated by AutoBuilder 0.4 -- do not modify ###
394    278
0    1    0    0    0    0    0    0    0    0    0    0    0    0    0    0    
button    $button_1    Button 1    30    30    320    210    0    0    
#ce - ### End of Dump ###

;Script generated by AutoBuilder 0.4
Opt("GUICoordMode", 1)
Opt("GUINotifyMode", 1)
GuiCreate("MyGUI", 392,273,(@DesktopWidth-392)/2, (@DesktopHeight-273)/2 , 0x04CF0000)

$button_1 = GUISetControl("button", "Button 1", 30, 30, 320, 210)

GuiShow()

While 1
    sleep(100)
    $msg = GuiMsg(0)
    Select
    Case $msg = -3
        Exit
    Case $msg = $button_1
      ;;;
    EndSelect
WEnd
Exit

<{POST_SNAPBACK}>

:( its booton like my head

thanks :ph34r:

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