| Author |
Message |
Topic: OnMessage 0x4a is ignored when a ToolTip is displayed |
Kai
Replies: 13
Views: 253
|
Forum: Ask for Help Posted: Wed Oct 21, 2009 1:49 pm Subject: OnMessage 0x4a is ignored when a ToolTip is displayed |
LOL, unbelievable! XD
Thanks guys  |
Topic: OnMessage 0x4a is ignored when a ToolTip is displayed |
Kai
Replies: 13
Views: 253
|
Forum: Ask for Help Posted: Tue Oct 20, 2009 5:58 pm Subject: OnMessage 0x4a is ignored when a ToolTip is displayed |
No, I haven't.
I tried this
SendMessage, 0x4a, 1, &CopyDataStruct,, ahk_PID %param1% ahk_class AutoHotKey
but the script doesn't receive anything without tooltip too.
I'll find a solution, t ... |
Topic: OnMessage 0x4a is ignored when a ToolTip is displayed |
Kai
Replies: 13
Views: 253
|
Forum: Ask for Help Posted: Tue Oct 20, 2009 4:53 pm Subject: OnMessage 0x4a is ignored when a ToolTip is displayed |
SendMessage, 0x4a, 0, &CopyDataStruct,, ahk_PID %RecPID% ahk_class AutoHotkey
I tried but it doesn't work to me... |
Topic: OnMessage 0x4a is ignored when a ToolTip is displayed |
Kai
Replies: 13
Views: 253
|
Forum: Ask for Help Posted: Tue Oct 20, 2009 1:50 pm Subject: OnMessage 0x4a is ignored when a ToolTip is displayed |
| That makes sense. If you use only ahk_pid, you are specifying "any window in that process." I think that usually means the top-most window in that process; i.e. the tooltip. I suppose the ... |
Topic: OnMessage 0x4a is ignored when a ToolTip is displayed |
Kai
Replies: 13
Views: 253
|
Forum: Ask for Help Posted: Tue Oct 20, 2009 11:09 am Subject: OnMessage 0x4a is ignored when a ToolTip is displayed |
Thanks Z_Gecko, and sorry for double-posting.
I did some tests and I think this problem appear when "ahk_PID" is specified in SendMessage. When I specify "ahk_class", and not &q ... |
Topic: OnMessage 0x4a is ignored when a ToolTip is displayed |
Kai
Replies: 13
Views: 253
|
Forum: Ask for Help Posted: Tue Oct 20, 2009 12:35 am Subject: OnMessage 0x4a is ignored when a ToolTip is displayed |
Hi.
I have 2 scripts that communicate with each one with onmessage/sendmessage functions. They pass data with 0x4a message (WM_COPYDATA). When on the first script a tooltip is displayed, first scri ... |
Topic: BlockInput Alt Key |
Kai
Replies: 2
Views: 133
|
Forum: Ask for Help Posted: Sat Aug 22, 2009 8:11 pm Subject: BlockInput Alt Key |
Thanks
I think should be specified on help file  |
Topic: AES Encryption Function ~ the syntaxes |
Kai
Replies: 12
Views: 702
|
Forum: Ask for Help Posted: Sat Aug 22, 2009 3:26 pm Subject: AES Encryption Function ~ the syntaxes |
| Buffer contains the encrypted binary data, the actual size used in bytes is contained in the variable "size". It is not always the same as the length of the input (the length of cleartext), ... |
Topic: AES Encryption Function ~ the syntaxes |
Kai
Replies: 12
Views: 702
|
Forum: Ask for Help Posted: Sat Aug 22, 2009 3:00 pm Subject: AES Encryption Function ~ the syntaxes |
Ehr... the second parameter variable "size" on this
Crypt_AES(&Buffer, size, Password, 256, 0)
is the encrypted string, isn't it?
If so, what to set in "Buffer" ... |
Topic: BlockInput Alt Key |
Kai
Replies: 2
Views: 133
|
Forum: Ask for Help Posted: Sat Aug 22, 2009 2:55 pm Subject: BlockInput Alt Key |
I want to switch off blockinput with a key, but blockinput blocks any keys (except ctrl+alt+del)...
I found this on AHK Help
Input blocking is automatically and momentarily disabled whenever an AL ... |
Topic: AES Encryption Function ~ the syntaxes |
Kai
Replies: 12
Views: 702
|
Forum: Ask for Help Posted: Fri Aug 21, 2009 9:51 pm Subject: AES Encryption Function ~ the syntaxes |
You got the size parameter when the original data was encrypted. You have to use that.
This means that I have to store the original size too...? |
Topic: AES Encryption Function ~ the syntaxes |
Kai
Replies: 12
Views: 702
|
Forum: Ask for Help Posted: Fri Aug 21, 2009 8:52 pm Subject: AES Encryption Function ~ the syntaxes |
Set the last parameter of Crypt_AES to 0.
thanks lazlo but I knew that...
i.e.:
Password = AutoHotkey
Data = 2aosi231 ; encrypted data before with the same password
Len := StrLen(Da ... |
Topic: AES Encryption Function ~ the syntaxes |
Kai
Replies: 12
Views: 702
|
Forum: Ask for Help Posted: Fri Aug 21, 2009 11:17 am Subject: AES Encryption Function ~ the syntaxes |
How to decrypt encrypted data only?
i.e. If I encrypt a string, 123456, and the encrypted string is 2aosi231, how to decrypt encrypted string later?
I wonder if that script encrypt and decrypt a ... |
Topic: encrypt AES decrypt PHP |
Kai
Replies: 16
Views: 5135
|
Forum: Ask for Help Posted: Sun Aug 09, 2009 3:00 pm Subject: encrypt AES decrypt PHP |
I now saw the linked page in the top post in this thread. Is that official implementation of AES in PHP?
I looked and compared it to $plaintext will be padded with up to 16 additional bytes. Other ... |
Topic: encrypt AES decrypt PHP |
Kai
Replies: 16
Views: 5135
|
Forum: Ask for Help Posted: Sun Aug 09, 2009 4:20 am Subject: encrypt AES decrypt PHP |
I got the sha1 with AHK and it's the same on php, but AES encrypted string still wrong...
Now I'm re-checking all php code...
Thanks for your help. |
| |