| Author |
Message |
Topic: Autohotkey compiled script, A Trojan? W32/YahLover.worm |
t0rch1t
Replies: 13
Views: 894
|
Forum: Ask for Help Posted: Wed May 07, 2008 10:57 pm Subject: Autohotkey compiled script, A Trojan? W32/YahLover.worm |
| Another way to get around this is to manually compress the file yourself after it is compiled. Rename upx.exe to something else before you compile and then compress after it is compiled. |
Topic: Trapping input from a usb mic |
t0rch1t
Replies: 11
Views: 289
|
Forum: Ask for Help Posted: Fri Nov 30, 2007 1:04 am Subject: Trapping input from a usb mic |
| Ok, here is the key history that is captured when the conditions are NOT met. If needed, here is the code that is supposed to either pass the button press to the dictation app or display the alert th ... |
Topic: Trapping input from a usb mic |
t0rch1t
Replies: 11
Views: 289
|
Forum: Ask for Help Posted: Thu Nov 29, 2007 12:21 pm Subject: Trapping input from a usb mic |
| I will check the key history when I get to work. What else would I need to give you? The code that was included in the prior post is what returns the value of the button press. |
Topic: Trapping input from a usb mic |
t0rch1t
Replies: 11
Views: 289
|
Forum: Ask for Help Posted: Tue Nov 27, 2007 4:07 am Subject: Trapping input from a usb mic |
That is what is returned from:
loop, %DataSize%
{
Zahl := NumGet(RawData, a_index-1,"UChar")
Zahl := Dez2Hex(Zahl)
Vals = %Vals%%Zahl%
}
I used a ms ... |
Topic: Trapping input from a usb mic |
t0rch1t
Replies: 11
Views: 289
|
Forum: Ask for Help Posted: Tue Nov 27, 2007 12:08 am Subject: Trapping input from a usb mic |
Yes, it does show up in the key list. The button whose value I want to trap shows up as 0080000000. Blockinput does not stop it from being passed on to the dictation application.
thanks |
Topic: Trapping input from a usb mic |
t0rch1t
Replies: 11
Views: 289
|
Forum: Ask for Help Posted: Wed Nov 21, 2007 10:29 pm Subject: Trapping input from a usb mic |
The code to capture the button press is taken directly from the example I am using and is:
InputMsg(wParam, lParam, msg, hwnd)
{
global vals
DataSize = 5000
VarSetCapacity ... |
Topic: Trapping input from a usb mic |
t0rch1t
Replies: 11
Views: 289
|
Forum: Ask for Help Posted: Wed Nov 21, 2007 12:52 pm Subject: Trapping input from a usb mic |
Hello,
I have an dictation application that uses a usb mic. I am trying to write a script that waits until a button is pressed on the microphone, and if certain conditons are met, it passes the sign ... |
Topic: Help getting a gui to close |
t0rch1t
Replies: 1
Views: 133
|
Forum: Ask for Help Posted: Mon Oct 22, 2007 11:24 pm Subject: Help getting a gui to close |
| I have a couple of problems that I am having trouble figuring out. I am trying to, based on a condition, to display text to a user. I know I could use a msgbox, but I want to try some gui stuff. If ... |
Topic: Help with if, variables and gosub |
t0rch1t
Replies: 2
Views: 154
|
Forum: Ask for Help Posted: Mon Oct 08, 2007 11:38 am Subject: Help with if, variables and gosub |
| I am trying to write a script that gets the contents from a window and then and based on the length of the text, it either continues or it gets the content again until the length of the content reache ... |
Topic: Help with Mailto link |
t0rch1t
Replies: 27
Views: 2544
|
Forum: Ask for Help Posted: Fri Sep 07, 2007 7:37 pm Subject: Sending email with attachments. |
run, mailto:somebody@somemail.com?subject=Mail subject&body=This works 100`%25! All right!!
Is there anyway to add an attachment to the email using this method? I am trying to write a script ... |
| |