AutoHotkey Community

It is currently May 26th, 2012, 7:49 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 24 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: May 15th, 2009, 5:19 pm 
Offline

Joined: June 29th, 2007, 4:26 pm
Posts: 60
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


Report this post
Top
 Profile  
Reply with quote  
PostPosted: May 15th, 2009, 5:28 pm 
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.)


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 5:50 pm 
Offline

Joined: November 11th, 2005, 3:13 am
Posts: 202
you can also use Rajat's SmartGUI and replicate the UI with its 'GUI Stealer' feature..


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 5:58 pm 
Offline

Joined: July 25th, 2006, 7:37 pm
Posts: 490
Location: Midwest, USA
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. :)

_________________
SilverEdge78


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 7:24 pm 
Offline

Joined: June 29th, 2007, 4:26 pm
Posts: 60
It only grabs the gray box nothing on the inside was grabbed


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 7:42 pm 
Offline

Joined: November 11th, 2005, 3:13 am
Posts: 202
what program is it anyway?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 7:47 pm 
Offline

Joined: December 24th, 2008, 3:25 am
Posts: 1401
Location: :noitacoL
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?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 7:53 pm 
Offline

Joined: June 29th, 2007, 4:26 pm
Posts: 60
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 7:58 pm 
Offline

Joined: July 25th, 2006, 7:37 pm
Posts: 490
Location: Midwest, USA
I'm not sure if you read the manual or not, but check out the GUI command.

_________________
SilverEdge78


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 8:01 pm 
Offline

Joined: June 29th, 2007, 4:26 pm
Posts: 60
i made a listbox with an upanddown by it but i cant make it change numbers how do i do that


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 8:05 pm 
Offline

Joined: July 25th, 2006, 7:37 pm
Posts: 490
Location: Midwest, USA
Look at UpDown. See if that helps.

_________________
SilverEdge78


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 8:09 pm 
Offline

Joined: June 29th, 2007, 4:26 pm
Posts: 60
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 8:20 pm 
Offline

Joined: June 29th, 2007, 4:26 pm
Posts: 60
also Carcophan how do you do a windowspy or what ever it is


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 8:22 pm 
Offline

Joined: June 29th, 2007, 4:26 pm
Posts: 60
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2009, 8:28 pm 
Offline

Joined: June 29th, 2007, 4:26 pm
Posts: 60
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


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 24 posts ]  Go to page 1, 2  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: 0x150||ISO, Azevedo, perlsmith and 68 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group