| Author |
Message |
Forum: Scripts Topic: UNICODE version of AutoHotkey |
| mosaic |
|
Posted: November 4th, 2009, 2:49 pm
|
|
Replies: 236 Views: 35712
|
| UTOA won't work properly with UTF-8 and/or Double-Byte CharacterSet like Chinese, likely to crash AHK or truncate the string due to too short buffer. ... Anyway, you don't need these convert functions UTOA/ATOU with AutoHotkeyU, just use Unicode directly. You are right, what was I thinking. I suppo... |
|
 |
Forum: Scripts Topic: UNICODE version of AutoHotkey |
| mosaic |
|
Posted: November 4th, 2009, 1:22 pm
|
|
Replies: 236 Views: 35712
|
| sorry, forgot to sign in. I also hope this topic become a stickie. by the way, Skan in this topic implemented a short and sweet ATOU (Ansi to Unicode) and UTOA function: ( http://www.autohotkey.com/forum/topic38346.html ) ATOU( ByRef Unicode, Ansi ) { ; Ansi to Unicode VarSetCapacity... |
|
 |
Forum: Scripts Topic: UNICODE version of AutoHotkey |
| mosaic |
|
Posted: November 4th, 2009, 5:32 am
|
|
Replies: 236 Views: 35712
|
| Super excited about this unicode version. I'm testing the Unicode versions by either fincs or original one from the first post on Garry's youtube mp4 download script. (http://www.autohotkey.com/forum/topic34932.html) on some Chinese songs (with Chinese titles), I was hoping the unicode version would... |
|
 |
Forum: Scripts Topic: Voice Recognition COM |
| mosaic |
|
Posted: December 30th, 2008, 4:49 pm
|
|
Replies: 128 Views: 26298
|
| Whether you leave the commented lines in or not, does not affect the outcomes, I have tried both ways. Did it work too (for the specified word rules) with? COM_Invoke(pgrammar, "DictationSetState", 0) @Sean, That does not work for me. As a matter of fact, that's the only differenc... |
|
 |
Forum: Scripts Topic: Voice Recognition COM |
| mosaic |
|
Posted: December 30th, 2008, 6:01 am
|
|
Replies: 128 Views: 26298
|
| @peter_schubie: Whether you leave the commented lines in or not, does not affect the outcomes, I have tried both ways. in your OnRecognition function, try to add the following debug line after sText := COM_Invoke(pphrase, "GetText") MsgBox, %sText% To see whether what you say is be... |
|
 |
Forum: Scripts Topic: Voice Recognition COM |
| mosaic |
|
Posted: December 30th, 2008, 5:00 am
|
|
Replies: 128 Views: 26298
|
@raven-gm: thanks, it worked
@peter_schubie: you may post your code, maybe we can figure out together |
|
 |
Forum: Scripts Topic: Voice Recognition COM |
| mosaic |
|
Posted: November 10th, 2008, 10:16 pm
|
|
Replies: 128 Views: 26298
|
| Use SAPI.SpInProcRecognizer instead of SAPI.SpSharedRecognizer would initialize on my vista machine without invoking the one with the level meter. I have no knowledge on how to get voice input work though. For those who have COM experience, you may want to check out the following article: http://sap... |
|
 |
Forum: Scripts Topic: For those who use Notepad++ (aka npp) |
| mosaic |
|
Posted: November 1st, 2008, 6:47 pm
|
|
Replies: 39 Views: 33160
|
| Using Notepad++ v4.7.5 and Function List v2.0 alpha I added the following lines to the file notepad++_install_dir\plugins\Config\FunctionListRules.xml right at the end before the closing </FunctionList> tag. <Language name="AHK Autohotkey" imagelistpath=""> <CommList param1=&quo... |
|
 |
Forum: Scripts Topic: For those who use Notepad++ (aka npp) |
| mosaic |
|
Posted: November 1st, 2008, 6:36 pm
|
|
Replies: 39 Views: 33160
|
| Have been reading this thread and can't understand whether the method of syntax highlighting being discussed here is different to the one I posted in a new thread so I thought I would post it here. http://www.autohotkey.net/~ludamo/AHK%20Autohotkey.zip This is AHK Autohotkey.xml file to put in note... |
|
 |
Forum: Scripts Topic: Weather |
| mosaic |
|
Posted: July 2nd, 2008, 2:23 pm
|
|
Replies: 76 Views: 14197
|
How about this:
Code: forecast := plaintxt(forecast)
forecast := RegExReplace(forecast, ":\s+", ": ") forecast := RegExReplace(forecast, "\r\n", "")
|
|
 |
Forum: Scripts Topic: For those who use Notepad++ (aka npp) |
| mosaic |
|
Posted: January 16th, 2008, 4:11 am
|
|
Replies: 39 Views: 33160
|
| Is someone already working with the newest version of Notepad++ (now 4.7.3) having support for ahk-subroutines? mosaic described how to do it for earlier versions of Notepad++ . I tried to adjust to the new version, but in vain. (Someone will say that I am posting in the wrong thread, but this subj... |
|
 |
Forum: Utilities Topic: LexAHK: syntax highlighting for Scintilla (SciTE, others?) |
| mosaic |
|
Posted: June 7th, 2007, 2:04 pm
|
|
Replies: 122 Views: 55431
|
| Greetings PhiLho/Toralf and others, I did not realize there is another topic on Notepad++ here. While I like the syntax highlighting, the function list plugin is way more powerful, it allows one to browse the code efficiently. The following is the screen shot, you can see the function list on the ri... |
|
 |
Forum: Scripts Topic: For those who use Notepad++ (aka npp) |
| mosaic |
|
Posted: May 24th, 2007, 1:51 pm
|
|
Replies: 39 Views: 33160
|
| Update for insertExt.ini to recognize Subroutine definition with comment on the same line as the subroutine name, for example: (This code snippet is from PicturePuzzle0.9a) Auto-Solve: ; [ Auto-Solve ] Loop, Parse, Coords, | ControlMove,, % AGetF( A_LoopField,1,"-"), % AGetF( A... |
|
 |
Forum: Scripts Topic: SysMon |
| mosaic |
|
Posted: May 23rd, 2007, 12:00 pm
|
|
Replies: 29 Views: 5882
|
| I added Monitor Info (with support for more than one monitor) Put the following after Cpu and Memory and Before Network Info. ; Monitor Info. Gui %SMGuiID%:Font Gui %SMGuiID%:Add, GroupBox, xm yp+16 Section w210 h70 Gui %SMGuiID%:Font, s8 c%InfoColour%, Tahoma Gui %SMGuiID%:Add, Text, xs+10 ys+15 c%... |
|
 |
Forum: Scripts Topic: SysMon |
| mosaic |
|
Posted: May 23rd, 2007, 2:20 am
|
|
Replies: 29 Views: 5882
|
| Nice script. Is there any way to get the real ip address, instead, it's giving me: 192.168.0.1? |
|
 |
| Sort by: |