| Author |
Message |
Topic: One more SendMessage question |
IVG
Replies: 1
Views: 171
|
Forum: Ask for Help Posted: Tue May 15, 2007 5:26 am Subject: One more SendMessage question |
I want to send a message from AHK to C# and then let C# do some work and send a new message back to AHK.
Just try to read documentation..
This answers the question about SendMessage/PostMessa ... |
Topic: Remote control for PC with ahk |
IVG
Replies: 0
Views: 261
|
Forum: Ask for Help Posted: Mon May 14, 2007 5:41 am Subject: Remote control for PC with ahk |
I've searched this forum for 'remote control' and saw some topics on infrared receiver that uses serial port and winlirc.
The question is if I can use a standart plug'n'play USB IR receiver/transmi ... |
Topic: best way to create a editable database ... |
IVG
Replies: 5
Views: 405
|
Forum: Ask for Help Posted: Sat Apr 14, 2007 10:54 am Subject: best way to create a editable database ... |
But of course ! why not to use SQL?
... |
Topic: Auto WordWrap ToolTip? |
IVG
Replies: 7
Views: 230
|
Forum: Ask for Help Posted: Fri Apr 13, 2007 8:33 am Subject: Auto WordWrap ToolTip? |
what about making it append a `r`n after it finds say 10 spaces
Try
[Just Do It]
... |
Topic: Start and Stop |
IVG
Replies: 5
Views: 719
|
Forum: Ask for Help Posted: Fri Apr 13, 2007 8:30 am Subject: Start and Stop |
Try smth like this:
$LButton::
Loop {
if GetKeyState("Space")
break
Send, {WheelDown}
Sleep 50
}
return
But you'll have to hol ... |
Topic: Auto WordWrap ToolTip? |
IVG
Replies: 7
Views: 230
|
Forum: Ask for Help Posted: Fri Apr 13, 2007 8:20 am Subject: Auto WordWrap ToolTip? |
You could make some function that could insert `r`n after a certain number of words, that might be the easiest way I think, but not very reliable
... |
Topic: I recorded keystrokes, then made to exe but cannot load |
IVG
Replies: 8
Views: 296
|
Forum: Ask for Help Posted: Wed Apr 11, 2007 6:57 am Subject: I recorded keystrokes, then made to exe but cannot load |
It runs only one time and sends ten times F2 to a window with no delay...
Here's what you might do, if I understand what you want:
SenderOn = 0
Minutes = 1000 * 60 * 10
!f::GoSub, Togl ... |
Topic: HDD Activity Monitoring LED |
IVG
Replies: 19
Views: 5993
|
Forum: Scripts & Functions Posted: Sat Mar 31, 2007 10:06 am Subject: HDD Activity Monitoring LED |
Real nice  |
Topic: ahk script generator |
IVG
Replies: 17
Views: 817
|
Forum: Ask for Help Posted: Sat Mar 31, 2007 10:01 am Subject: ahk script generator |
I don't think you know what you really want
... |
Topic: Suppressing "File contents was changed, reload?" |
IVG
Replies: 4
Views: 247
|
Forum: Ask for Help Posted: Sat Mar 31, 2007 9:36 am Subject: Suppressing "File contents was changed, reload?" |
You can check the datetime stamp of a script to know wether it has been changed yet like this:
FileGetTime, OriginTime, %A_ScriptFullPath%, M
SetTimer, CheckScriptUpdate, 1000 ; check script every ... |
Topic: GetDrive Question |
IVG
Replies: 4
Views: 292
|
Forum: Ask for Help Posted: Fri Mar 30, 2007 8:53 am Subject: GetDrive Question |
I had a problem with the DriveGet function. It somewhy requires a ":" sign at the end of the disk letter, just like this:
DriveGet, type, type, %NetDrive%:
... |
Topic: Help clean my scritp up pls |
IVG
Replies: 3
Views: 466
|
Forum: Ask for Help Posted: Wed Mar 28, 2007 6:50 am Subject: Help clean my scritp up pls |
very funny, pmsl  |
Topic: RegExReplace to remove *almost* all spaces |
IVG
Replies: 10
Views: 318
|
Forum: Ask for Help Posted: Tue Mar 27, 2007 6:00 am Subject: RegExReplace to remove *almost* all spaces |
JiaNa, where r u from then? it's really nice to know that my nickname means anything at all  |
Topic: function WinGetActiveStats |
IVG
Replies: 7
Views: 236
|
Forum: Ask for Help Posted: Mon Mar 26, 2007 11:54 am Subject: function WinGetActiveStats |
My bad
Thank you a lot for help  |
Topic: RegExReplace to remove *almost* all spaces |
IVG
Replies: 10
Views: 318
|
Forum: Ask for Help Posted: Mon Mar 26, 2007 8:17 am Subject: RegExReplace to remove *almost* all spaces |
My favourite is:
RegExReplace(str, " *", " ")
It's used to replace as many spaces as there is to only one  |
| |