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 

Can someone help me with this problem please?
Goto page 1, 2  Next
 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Espio



Joined: 29 Jun 2007
Posts: 60

PostPosted: Fri May 15, 2009 4:19 pm    Post subject: Can someone help me with this problem please? Reply with quote

i want to make something similar to this picture but not sure if autohotkey can do it.

http://img33.imageshack.us/img33/5360/picp.png
Back to top
View user's profile Send private message
Guest






PostPosted: Fri May 15, 2009 4:28 pm    Post subject: Re: Can someone help me with this problem please? Reply with quote

Espio wrote:
i want to make something similar to this picture but not sure if autohotkey can do it.

http://img33.imageshack.us/img33/5360/picp.png


Per your title, what problem are you running into?

(And yes, AHK deff can do that.)
Back to top
badmojo



Joined: 11 Nov 2005
Posts: 202

PostPosted: Fri May 15, 2009 4:50 pm    Post subject: Reply with quote

you can also use Rajat's SmartGUI and replicate the UI with its 'GUI Stealer' feature..
Back to top
View user's profile Send private message
silveredge78



Joined: 25 Jul 2006
Posts: 481
Location: Midwest, USA

PostPosted: Fri May 15, 2009 4:58 pm    Post subject: Reply with quote

I second badmojo's recommendation.

Also, as a suggestion, put a more descriptive subject line. You're more likely to get the help you need if you do. Given that you're posting in the 'Ask for Help' forum, we know you need help. Smile
_________________
SilverEdge78
Back to top
View user's profile Send private message
Espio



Joined: 29 Jun 2007
Posts: 60

PostPosted: Fri May 15, 2009 6:24 pm    Post subject: Reply with quote

It only grabs the gray box nothing on the inside was grabbed
Back to top
View user's profile Send private message
badmojo



Joined: 11 Nov 2005
Posts: 202

PostPosted: Fri May 15, 2009 6:42 pm    Post subject: Reply with quote

what program is it anyway?
Back to top
View user's profile Send private message
Carcophan



Joined: 24 Dec 2008
Posts: 1308
Location: :noitacoL

PostPosted: Fri May 15, 2009 6:47 pm    Post subject: Reply with quote

Just from looking at the pic, I can see:

- a list box, with incrmental up/down for seconds.
- X and Y location, like windowSpy
- a list box with incr for the number of mouse clicks
- start button and exit button


so really, you should be able to make a simple watered down version that does the same stuff. This doesnt seem to complicated.

Make 2 'Edit' boxs, to enter the time and number of clicks, stored as variables. On ctrl+mouse click, get X and Y coord, and update the the GUI to display the clicks?
Back to top
View user's profile Send private message
Espio



Joined: 29 Jun 2007
Posts: 60

PostPosted: Fri May 15, 2009 6:53 pm    Post subject: Reply with quote

Carcophan, i am a noob to this is there like a place i can go that explains what u just said to me, also how do you make those input fields with an upanddown next to it, i tried forever to do that, and i could only manage to get one up and down to show tried to make the second one appear and it never did
Back to top
View user's profile Send private message
silveredge78



Joined: 25 Jul 2006
Posts: 481
Location: Midwest, USA

PostPosted: Fri May 15, 2009 6:58 pm    Post subject: Reply with quote

I'm not sure if you read the manual or not, but check out the GUI command.
_________________
SilverEdge78
Back to top
View user's profile Send private message
Espio



Joined: 29 Jun 2007
Posts: 60

PostPosted: Fri May 15, 2009 7:01 pm    Post subject: Reply with quote

i made a listbox with an upanddown by it but i cant make it change numbers how do i do that
Back to top
View user's profile Send private message
silveredge78



Joined: 25 Jul 2006
Posts: 481
Location: Midwest, USA

PostPosted: Fri May 15, 2009 7:05 pm    Post subject: Reply with quote

Look at UpDown. See if that helps.
_________________
SilverEdge78
Back to top
View user's profile Send private message
Espio



Joined: 29 Jun 2007
Posts: 60

PostPosted: Fri May 15, 2009 7:09 pm    Post subject: Reply with quote

crap it wont make the numbers go up in the list box here is my script so far

Code:
Gui, Add, Groupbox, h250 w200, Options
Gui, Add, ListBox, x150 y40 w50 h20
Gui, Add, UpDown, vSeconds Range1-10, 1
Gui, Add, ListBox, x150 y150 w50 h20
Gui, Add, UpDown, vClicks Range1-10, 1
Gui, Show, x1140 y88 h300 w220
Return


+s::Suspend
+x::ExitApp

GuiClose:
ExitApp
Back to top
View user's profile Send private message
Espio



Joined: 29 Jun 2007
Posts: 60

PostPosted: Fri May 15, 2009 7:20 pm    Post subject: Reply with quote

also Carcophan how do you do a windowspy or what ever it is
Back to top
View user's profile Send private message
Espio



Joined: 29 Jun 2007
Posts: 60

PostPosted: Fri May 15, 2009 7:22 pm    Post subject: Reply with quote

i foundout it is an edit not a listbox but im still stuck on getting the window spy and make it tell the script to receive those number inputs
Back to top
View user's profile Send private message
Espio



Joined: 29 Jun 2007
Posts: 60

PostPosted: Fri May 15, 2009 7:28 pm    Post subject: Reply with quote

i have this so far and im trying to get close enough to this as possible

http://img33.imageshack.us/img33/5360/picp.png

Code:
Gui, Add, Groupbox, h250 w200, Options
Gui, Add, Text, cFFFFFF x60 y43, Interval (In Secs):
Gui, Add, Edit, x150 y40 w50 h20
Gui, Add, UpDown, vSeconds Range1-1000, 60
Gui, Add, Text, cFFFFFF x40 y153, Mouse Double-Clicks:
Gui, Add, Edit, x150 y150 w50 h20
Gui, Add, UpDown, vClicks Range1-100, 1
Gui, Add, Button, x20 y260 h25 w75 gExit, Exit
Gui, Add, Button, x125 y260 h25 w75 gStart, Start
Gui, Color, 000000
Gui, Show, x1140 y88 h300 w220


Return

Start:
ExitApp

Exit:
ExitApp

+s::Suspend
+x::ExitApp

GuiClose:
ExitApp
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
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