| Author |
Message |
Topic: Double Memory usage when using FileRead |
sosaited
Replies: 1
Views: 191
|
Forum: Ask for Help Posted: Mon Aug 02, 2010 1:45 am Subject: Double Memory usage when using FileRead |
I am using the following to separate a bunch of text from a 110MB txt file:
SetBatchLines, -1
Process, Priority, , R
FileRead, file, ALL.txt
Loop, Parse, file, `n
{
StringLeft, check ... |
Topic: Transparent Menus? |
sosaited
Replies: 4
Views: 603
|
Forum: Ask for Help Posted: Tue Oct 06, 2009 5:59 pm Subject: Transparent Menus? |
Add this in a separate script and run it:
DetectHiddenWindows, on
SetBatchLines -1
Loop
{
IfWinExist, ahk_class #32768
WinSet, Transparent, 150
Sleep, 5
}
return |
Topic: Script for letting go of a button - then pressing another |
sosaited
Replies: 4
Views: 342
|
Forum: Ask for Help Posted: Tue Oct 06, 2009 2:46 pm Subject: Script for letting go of a button - then pressing another |
LShift::
KeyWait, LShift
Send, 1
Send, 1
return
|
Topic: Timer help |
sosaited
Replies: 3
Views: 299
|
Forum: Ask for Help Posted: Tue Oct 06, 2009 2:35 pm Subject: Timer help |
#Persistent
SetTimer, CheckIdle, 5000
return
CheckIdle:
If A_TimeIdle > 600000
GoSub, Move
return
Move:
MouseMove, 640, 480
MouseMove, 660, 500
return |
Topic: Creating a "Control Window" GUI |
sosaited
Replies: 2
Views: 283
|
Forum: Ask for Help Posted: Mon Sep 28, 2009 7:50 pm Subject: Creating a "Control Window" GUI |
You can create multiple GUI windows. For Example, to create a second window:
Gui, 2:Add, Text, , Second GUI
Gui, 2:Show |
Topic: new line / break line |
sosaited
Replies: 10
Views: 2079
|
Forum: Ask for Help Posted: Sun Sep 13, 2009 5:42 am Subject: new line / break line |
Example script:
FileAppend, First Line`nSecond Line`nThird Line`nFourth Line, Sample.txt
Run, Sample.txt
|
Topic: Trouble with radios |
sosaited
Replies: 4
Views: 415
|
Forum: Ask for Help Posted: Sun Sep 13, 2009 5:40 am Subject: Trouble with radios |
You don't have to add % signs around Variable names before the = Operator of If statement. So this should work:
Gui, Add, Edit,gsubmit x22 y22 w330 h20 vsearch,
Gui, Add, Button,gbuttonokay x42 ... |
Topic: Retrieve Chat history in Windows Live Messenger |
sosaited
Replies: 10
Views: 4126
|
Forum: Scripts & Functions Posted: Thu Sep 10, 2009 7:41 pm Subject: Retrieve Chat history in Windows Live Messenger |
| Exactly where did it fail? As a matter of fact, I assumed a few as Live Messenger is a MS product. Notice that I replaced acc_Name/acc_Value functions with COM_Invoke. If I could test, I might even ha ... |
Topic: Retrieve Chat history in Windows Live Messenger |
sosaited
Replies: 10
Views: 4126
|
Forum: Scripts & Functions Posted: Wed Sep 09, 2009 11:27 pm Subject: Retrieve Chat history in Windows Live Messenger |
DllCall(NumGet(NumGet(1*ppv)+0)
Aren't DLL functions static inside a .dll file? |
Topic: Retrieve Chat history in Windows Live Messenger |
sosaited
Replies: 10
Views: 4126
|
Forum: Scripts & Functions Posted: Wed Sep 09, 2009 2:41 pm Subject: Retrieve Chat history in Windows Live Messenger |
If your code works, I suppose the child you are accessing always has an IDispatch interface; I recommend removing the two lines shown above. Then again, it might work in some obscure case, and prob ... |
Topic: problem with Traytip [not 'solved', but works again] |
sosaited
Replies: 8
Views: 409
|
Forum: Ask for Help Posted: Wed Sep 09, 2009 6:32 am Subject: problem with Traytip [not 'solved', but works again] |
Computers have a way of playing with you once in a while . Dont worry. |
Topic: CONDITIONS!!! |
sosaited
Replies: 8
Views: 531
|
Forum: Ask for Help Posted: Wed Sep 09, 2009 6:29 am Subject: CONDITIONS!!! |
if the word is found in textfile1 and if the word is not in textfile2 then send the word in textfile three
i want a script for the above condition.
word = word in file 1 but not in 2
file1 = f ... |
Topic: Finding a Process' RAM Memory Usage |
sosaited
Replies: 6
Views: 1675
|
Forum: Ask for Help Posted: Wed Sep 09, 2009 6:15 am Subject: Finding a Process' RAM Memory Usage |
| You should be using GetProcessMemoryInfo [url=http://msdn.microsoft.com/en-us/library/ms683219%28VS.85%29.aspx][msdn] to get the memory usage of a process. |
Topic: Help needed converting VB MSAA dllcalls into AHK code |
sosaited
Replies: 7
Views: 756
|
Forum: Ask for Help Posted: Wed Sep 09, 2009 6:08 am Subject: Help needed converting VB MSAA dllcalls into AHK code |
The solution was not that hard, but for some reason I got stuck with it. But finally got it working:
http://www.autohotkey.com/forum/viewtopic.php?t=48629 |
Topic: Retrieve Chat history in Windows Live Messenger |
sosaited
Replies: 10
Views: 4126
|
Forum: Scripts & Functions Posted: Wed Sep 09, 2009 6:05 am Subject: Retrieve Chat history in Windows Live Messenger |
| I have been trying to get a script working which will retrieve the messages sent (chat history) in a Windows Live Messenger conversation without activating the window, and with the awesome ACC.ahk and ... |
| |