AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

I little GUI help please.

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Permagrin



Joined: 05 Apr 2007
Posts: 8

PostPosted: Tue Jun 03, 2008 12:29 am    Post subject: I little GUI help please. Reply with quote

I have a script that I am working on that at one point, opens a gui with 4 buttons.

What I need to happen is this:

1. Open GUI at right point (got this already)
2. Press one of four buttons
3. Close GUI
4. Send one of four strings depending on what button is clicked.

I am having trouble making it work..

Any help with a basic framework of how to accomplish this would be greatly appreciated.
Back to top
View user's profile Send private message
pokercurious



Joined: 16 Dec 2007
Posts: 47

PostPosted: Tue Jun 03, 2008 12:51 am    Post subject: Reply with quote

Code:
textb1 = Top Left
textb2 = Top Right
textb3 = Bottom Left
textb4 = Bottom Right

Gui, +toolwindow
Gui, Add, Button, gb1 x5 y5 w50 h50, Top`nLeft
Gui, Add, Button, gb2 x60 y5 w50 h50, Top`n Right
Gui, Add, Button, gb3 x5 y60 w50 h50, Bottom`n Left
Gui, Add, Button, gb4 x60 y60 w50 h50, Bottom`nRight
Gui, Show, w115 h115, Buttons
return

GuiClose:
GuiEscape:
Exitapp

b1:
b2:
b3:
b4:
  Gui, Destroy
  Msgbox, % text%A_ThisLabel%
  Exitapp
return
Back to top
View user's profile Send private message
Permagrin



Joined: 05 Apr 2007
Posts: 8

PostPosted: Tue Jun 03, 2008 5:55 pm    Post subject: Reply with quote

Thanks a lot! that helped and my script is working perfectly now.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group