| Author |
Message |
Topic: Wine-Doors uses AHK! |
AiKscroll
Replies: 2
Views: 581
|
Forum: General Chat Posted: Wed Jul 11, 2007 5:44 am Subject: Wine-Doors uses AHK! |
For those who don't know what Wine-Doors is, it provides a way to install apps under Wine on Linux. I installed the application and upon the first run I got this error:
http://bayimg.com/LAdFLAABL
... |
Topic: phpAbs2Rel |
AiKscroll
Replies: 0
Views: 324
|
Forum: Scripts & Functions Posted: Sat Feb 17, 2007 4:45 am Subject: phpAbs2Rel |
| A long while back I posted a [url=http://www.autohotkey.com/forum/viewtopic.php?t=11722]script that would convert scripts generated by Rajat's SmartGUI Creator to relative coordinates. I have ported t ... |
Topic: Help with GUI.... |
AiKscroll
Replies: 3
Views: 333
|
Forum: Ask for Help Posted: Thu Feb 15, 2007 9:48 am Subject: Help with GUI.... |
| I think the updown is trying to attach itself to a text control, when it is meant to be used with an Edit control. |
Topic: Overclicking question |
AiKscroll
Replies: 2
Views: 255
|
Forum: Ask for Help Posted: Mon Jan 01, 2007 8:28 am Subject: Overclicking question |
There are many approaches to that situation. I think the most straight forward solution would be to use a SetTimer to Disable the button after the click but then Enable it after x seconds.
You coul ... |
Topic: Intended behavior of Pause? |
AiKscroll
Replies: 1
Views: 428
|
Forum: Ask for Help Posted: Wed Dec 20, 2006 3:24 am Subject: Intended behavior of Pause? |
| I wrote a script that essentially has two keys do the same thing, pause the script. But to unpause the script I nust press the key that was not pressed to pause the script. Is this supposed to happen? ... |
Topic: AHK on Rails??? |
AiKscroll
Replies: 1
Views: 421
|
Forum: Wish List Posted: Mon Nov 27, 2006 7:38 am Subject: AHK on Rails??? |
Hey, I hope most of you have heard of Ruby on Rails. It's a web framework for Ruby. It helps establish conventions, allows for cleaner code, etc, yada yada yada.
I think AHK’s equivalent woul ... |
Topic: InStr Function skipping literal commas |
AiKscroll
Replies: 1
Views: 236
|
Forum: Ask for Help Posted: Wed Nov 15, 2006 10:42 pm Subject: InStr Function skipping literal commas |
AHK seems to be skipping any `, commas and giving a blank parameter error message.
Use this code to see what I mean:
var = abc,123
comma := InStr(var, `,)
msgbox, %comma%
Output sho ... |
Topic: Using other people's functions |
AiKscroll
Replies: 1
Views: 283
|
Forum: Ask for Help Posted: Wed Nov 01, 2006 3:29 am Subject: Using other people's functions |
found out how
http://www.autohotkey.com/forum/viewtopic.php?t=5379 -this post helped alot |
Topic: Using other people's functions |
AiKscroll
Replies: 1
Views: 283
|
Forum: Ask for Help Posted: Wed Nov 01, 2006 2:19 am Subject: Using other people's functions |
| I'm sorry but I just can figure out how you use other people's functions in other scripts or in the same one. I've tried simply stating the name of the function, including the function in an expressio ... |
Topic: how to make it wait for a mouse click |
AiKscroll
Replies: 4
Views: 295
|
Forum: Ask for Help Posted: Sun Oct 29, 2006 6:11 pm Subject: how to make it wait for a mouse click |
KeyWait, LButton
CoordMode, Mouse, Screen
|
Topic: ALT-TAB replacement with icons and window titles in ListView |
AiKscroll
Replies: 131
Views: 22088
|
Forum: Scripts & Functions Posted: Tue Oct 24, 2006 4:02 am Subject: ALT-TAB replacement with icons and window titles in ListView |
| Hi, i just came across this script and is really NICE. I suggest people use it with Windows Vista Transformation pack. Looks real nice. |
Topic: trigger macro when program is closed |
AiKscroll
Replies: 2
Views: 252
|
Forum: Ask for Help Posted: Tue Oct 24, 2006 2:45 am Subject: trigger macro when program is closed |
| Check out [url=http://www.autohotkey.com/docs/misc/SendMessageList.htm]Windows Messages |
Topic: Multiple GUI's at once.... |
AiKscroll
Replies: 5
Views: 297
|
Forum: Ask for Help Posted: Sun Oct 22, 2006 4:37 pm Subject: Multiple GUI's at once.... |
2GuiClose:
....
Return
would do what you tell it to do when the second GUI is closed. |
Topic: Multiple GUI's at once.... |
AiKscroll
Replies: 5
Views: 297
|
Forum: Ask for Help Posted: Sun Oct 22, 2006 6:09 am Subject: Multiple GUI's at once.... |
This example should help you understand.
Gui, Add, Button, vbtn1 gbtn1, Click to see Window 2
Gui, 2:Add, Button, vbtn2 gbtn2, See us both
Gui, Show, w300 h300, Window 1
Return
btn1:
... |
Topic: How do you select an edit box in a GUI script for sending? |
AiKscroll
Replies: 2
Views: 252
|
Forum: Ask for Help Posted: Sat Oct 21, 2006 5:29 am Subject: How do you select an edit box in a GUI script for sending? |
If this GUI is your own GUI (created with Gui, Add...) then you can use the
ControlSetText, CLASSNN, NewText, WinTitle
since it seems you just want to change the text in an edit field |
| |