| Author |
Message |
Topic: UNICODE version of AutoHotkey |
scribbly
Replies: 236
Views: 34259
|
Forum: Scripts & Functions Posted: Wed Feb 03, 2010 2:27 pm Subject: UNICODE version of AutoHotkey |
I tested using the following:
scribbly, please confirm how you were specifying the path for UrlDownloadToFile. I've identified an issue with A_Desktop and similar built-in variables (specifically, o ... |
Topic: UNICODE version of AutoHotkey |
scribbly
Replies: 236
Views: 34259
|
Forum: Scripts & Functions Posted: Tue Feb 02, 2010 11:27 pm Subject: Re: URLDownloadToFile |
Am I right in thinking that URLDownloadToFile is not working in AHKU?
It works here.
Please try the Unicode build of AutoHotkey_L (see the first post) first. If it fails, please give us more details ... |
Topic: UNICODE version of AutoHotkey |
scribbly
Replies: 236
Views: 34259
|
Forum: Scripts & Functions Posted: Tue Feb 02, 2010 1:33 pm Subject: URLDownloadToFile |
| Am I right in thinking that URLDownloadToFile is not working in AHKU? |
Topic: Is there a reason why winGet returns different values? |
scribbly
Replies: 7
Views: 536
|
Forum: Ask for Help Posted: Tue Oct 13, 2009 9:55 pm Subject: Re: Is there a reason why winGet returns different values? |
BTW, ...
unique:= winexist(ahk_pid %cmd_PID%)
...
should be unique:= winexist("ahk_pid " . cmd_PID)
Yes, of course: thanks.
I presume that WinExists() wa ... |
Topic: Is there a reason why winGet returns different values? |
scribbly
Replies: 7
Views: 536
|
Forum: Ask for Help Posted: Tue Oct 13, 2009 3:01 am Subject: Is there a reason why winGet returns different values? |
| perhaps the program you are running is creating multiple windows ? (you may not be able to see all of them) in that case also specify a window title or something like My Window Title ahk_pid %pid% ... ... |
Topic: Is there a reason why winGet returns different values? |
scribbly
Replies: 7
Views: 536
|
Forum: Ask for Help Posted: Tue Oct 13, 2009 2:20 am Subject: Is there a reason why winGet returns different values? |
to use pid you have to have full path to exe
Thanks: where do you mean? %programme_to_run% is the full path, and Run returns the correct PID.
WinWait ahk_pid %cmd_PID% finds a window OK
WinGe ... |
Topic: Is there a reason why winGet returns different values? |
scribbly
Replies: 7
Views: 536
|
Forum: Ask for Help Posted: Tue Oct 13, 2009 12:30 am Subject: Is there a reason why winGet returns different values? |
Consider the snippet:
Run, %programme_to_run%, , UseErrorLevel, cmd_PID
WinWait ahk_pid %cmd_PID%,,10
if not ERRORLEVEL
{
WinGet, win_ID, ID, ahk_pid %cmd_PID%
if !win_ID
MsgB ... |
Topic: Ghost Window after move |
scribbly
Replies: 3
Views: 288
|
Forum: Ask for Help Posted: Thu Jun 18, 2009 12:41 pm Subject: Ghost Window after move |
I'm trying to move the Media Monkey window but when I do the move AHK seems to move the skinned window leaving behind the ghost outline of the window.
Can't seem to interact with the "ghost&qu ... |
Topic: Get the icon number from a ListView |
scribbly
Replies: 2
Views: 403
|
Forum: Ask for Help Posted: Fri Apr 24, 2009 4:38 pm Subject: Get the icon number from a ListView |
I have a list view where the user can promote or demote rows (ie move a row up or down), each row has an icon from an imagelist.
Moving the rows works, except that the icon is lost, ie defaults bac ... |
| |