Jump to content


Photo

gui control screenshots


  • Please log in to reply
4 replies to this topic

#1 azure

azure
  • Members
  • 1203 posts

Posted 23 May 2012 - 08:54 AM

hello!

I am trying to figure out which GUI controls are which, and I dont see a single screenshot as example in <!-- m -->http://www.autohotke...GuiControls.htm<!-- m -->

I think this would be essentially helpful

thanks

#2 LazyMan

LazyMan
  • Members
  • 450 posts

Posted 23 May 2012 - 10:13 PM

You could make a reference thread providing exactly this. ;)

#3 azure

azure
  • Members
  • 1203 posts

Posted 23 May 2012 - 10:21 PM

I would, but I dont think I know :/

#4 Leef_me

Leef_me
  • Moderators
  • 7704 posts

Posted 27 May 2012 - 02:50 AM

I would, but I dont think I know :/

Do you want to do it together ? It would be fun!! :D I'll start :arrow:
#singleinstance force
#Persistent

; this is an open example of gui controls, 
; the first comes directly from the helpfile.
;   Any may add to the demo as long as we play nice.

Gui, Font, s10, Courier

; notes:
;    use 'xm' to place your control at the left margin.
;    use 'x+10 yp' to force you comment <--- to the right of the control
;    be sure to add a comment to end your example section
;    don't rely of text controls wrapping to the next line, please specify width.


Gui, Add, Text,xm w300 , Please enter your name:
Gui, Add, Text,x+10 yp w400 , <--- this is a text control width 300

Gui, Add, Text,xm  , Please enter your name:
Gui, Add, Text,x+10 yp w400 , <--- again without width specified


Gui, Add, Text,xm w300 center , text 
Gui, Add, Text,x+10 yp cred w400 , <--- center justified width 300 colored red

Gui, Add, Text,xm w300 right , text 
Gui, Add, Text,x+10 yp w400 , <--- right justified width 300

Gui, Add, Text,xm w400 , this is all I have for the text control

;===========================================================================

gui, show,, Gui Control Example

msgbox press OK to continue with the next examples.

gui, destroy

return

GuiEscape:
GuiClose:

exitapp


#5 azure

azure
  • Members
  • 1203 posts

Posted 27 May 2012 - 10:03 PM

I would, but I dont think I know :/

Do you want to do it together ? It would be fun!! :D


ofcourse I want to do it together!

I will study a bit and contribute soon