| Author |
Message |
Topic: Merry XMas! |
k3ph
Replies: 29
Views: 4520
|
Forum: Scripts & Functions Posted: Fri Jan 06, 2012 3:01 am Subject: Merry XMas! |
Guest #13452: It's because RemoveAfter function
which can be found at http://www.autohotkey.com/forum/viewtopic.php?t=37179 |
Topic: Google Chrome Handler |
k3ph
Replies: 4
Views: 4309
|
Forum: Scripts & Functions Posted: Thu Jan 05, 2012 5:28 am Subject: Google Chrome Handler |
oh sorry, didn't see your reply!
yes, I've been way too long without accessing this forum.
you can get these information using some window spy like this one:
http://www.autohotkey.com/forum/vie ... |
Topic: Google Chrome Handler |
k3ph
Replies: 4
Views: 4309
|
Forum: Scripts & Functions Posted: Fri Sep 23, 2011 9:56 am Subject: Google Chrome Handler |
Hi.
I noticed that the code stopped working. Do you perhaps have an updated version of your previous script?
Ref post: http://www.autohotkey.com/forum/topic43203.html
Chrome: 14.0.835.xxx. ( ... |
Topic: BASS Library - extreme AHK multimedia power! |
k3ph
Replies: 102
Views: 22953
|
Forum: Scripts & Functions Posted: Wed Jan 06, 2010 6:43 am Subject: BASS Library - extreme AHK multimedia power! |
hi there,
sorry I've been very busy and I could not keep up providing that kind of specific support.
please note my website had problems with dns for some months. if you still have problems add ... |
Topic: BitRotate functions |
k3ph
Replies: 10
Views: 3808
|
Forum: Scripts & Functions Posted: Fri Apr 17, 2009 2:16 am Subject: BitRotate functions |
pretty useful, thanks for sharing.
in the seek for the holy grail of perfomance, i was waiting for a native solution (autoit has it) |
Topic: Division bug?? |
k3ph
Replies: 7
Views: 1411
|
Forum: Bug Reports Posted: Tue Apr 14, 2009 12:32 pm Subject: Division bug?? |
/*
used as reference:
1.024**3 = 1.07374182
1 000.27 / 1.07374182 = 931.574035
*/
size1:=1000.27
size1/=1.024**3
MsgBox % size1 ; 931.573879
/*
explanation from scri ... |
Topic: Google Chrome Handler |
k3ph
Replies: 4
Views: 4309
|
Forum: Scripts & Functions Posted: Tue Apr 14, 2009 10:30 am Subject: Google Chrome Handler |
a simple demo to show how to get gchrome data like webpage title and address. feel free to modify and use under the terms of the settitlematchmode, 2
g_chrome_wintitle:="Google Chrome"
... |
Topic: AHKHID - An AHK implementation of the HID functions |
k3ph
Replies: 386
Views: 83287
|
Forum: Scripts & Functions Posted: Thu Apr 09, 2009 12:48 am Subject: AHKHID - An AHK implementation of the HID functions |
wow, awesome! this is a must have tool!
this really should be included in the official installation pack!!!
i loved the vlc/mpc stuff, great idea!
thanks for sharing it, wonderful work
when i ... |
Topic: Store url address in variable. |
k3ph
Replies: 36
Views: 2444
|
Forum: Ask for Help Posted: Thu Mar 19, 2009 4:24 am Subject: Store url address in variable. |
| For Mozilla apps there is one cool trick (using mozrepl which uses xpcom): http://www.autohotkey.com/forum/viewtopic.php?p=254150 |
Topic: ASCII (+Extended) with CHR() seems problematic |
k3ph
Replies: 16
Views: 3931
|
Forum: Ask for Help Posted: Wed Mar 18, 2009 2:52 pm Subject: ASCII (+Extended) with CHR() seems problematic |
I afraid you are a bit late, but thanks anyways, I appreciate a lot your attention.
I've edited the post after Lexikos reply to centralize the information also propose encoding functions, it could ... |
Topic: ASCII (+Extended) with CHR() seems problematic |
k3ph
Replies: 16
Views: 3931
|
Forum: Ask for Help Posted: Wed Mar 18, 2009 2:32 pm Subject: ASCII (+Extended) with CHR() seems problematic |
Compare
Loop 255
FileAppend,% Chr(A_Index),*ascii-chartable.txt
Loop 255
FileAppend,% Chr(A_Index),ascii-chartable.txt
first: 255 bytes
second: 256 bytes (FF in the end by text ... |
Topic: ASCII (+Extended) with CHR() seems problematic |
k3ph
Replies: 16
Views: 3931
|
Forum: Ask for Help Posted: Wed Mar 18, 2009 1:47 pm Subject: to sum up... |
| If each character is exactly 7 bits, there can only be 128 (2**7) unique values for any given character, not 255. "Every single bit" can only represent two unique values. (I know I'm being p ... |
Topic: ASCII (+Extended) with CHR() seems problematic |
k3ph
Replies: 16
Views: 3931
|
Forum: Ask for Help Posted: Tue Mar 17, 2009 9:46 pm Subject: ASCII (+Extended) with CHR() seems problematic |
| the problem is the map of the characters in ascii of non alphanumeric, they are wrong. generate full map and compare with standard US-ASCII table. Some of them are in wrong order and some are missing. ... |
Topic: ASCII (+Extended) with CHR() seems problematic |
k3ph
Replies: 16
Views: 3931
|
Forum: Ask for Help Posted: Tue Mar 17, 2009 9:38 pm Subject: ASCII (+Extended) with CHR() seems problematic |
Loop 255
IfNotEqual,A_Index,26, FileAppend, % A_Index . " : " Chr(a_index) . "`n", C:\asc.txt
1) Try type c:\asc.txt | more from command prompt to view ASCII
... |
Topic: ASCII (+Extended) with CHR() seems problematic |
k3ph
Replies: 16
Views: 3931
|
Forum: Ask for Help Posted: Tue Mar 17, 2009 9:14 pm Subject: ASCII (+Extended) with CHR() seems problematic |
ASCII stands for American Standard Code for Information Interchange. It's a 7-bit character code where every single bit represents a unique character and has 255 characters
If AHK uses 256 charact ... |
| |