| Author |
Message |
Topic: Chord left and right mouse buttons to get a middle button? |
sinkfaze
Replies: 4
Views: 73
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 10:57 pm Subject: Chord left and right mouse buttons to get a middle button? |
| Have you searched the forums for 'chording script'? I'm pretty sure there are multiple of such scripts here. |
Topic: COM Click Issue |
sinkfaze
Replies: 5
Views: 102
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 10:03 pm Subject: Re: COM Click Issue |
That problem sounds vaguely familiar, humor me and run this modified code for me:
#include C:\Program Files\AutoHotkey\Lib\COM.AHK
IID := "{332C4427-26CB-11D0-B483-00C04FD90119 ... |
Topic: How do I warn if too much text is going to be sent |
sinkfaze
Replies: 11
Views: 145
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 8:07 pm Subject: How do I warn if too much text is going to be sent |
| Are you trying to ensure that you don't split a word if you only paste up to a certain amount of characters? |
Topic: Auto login to a webpage |
sinkfaze
Replies: 8
Views: 157
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 6:09 pm Subject: Auto login to a webpage |
| I don't know how Last Pass would necessarily perform better than AHK unless you're taking about using it on a non-IE browser. Here's a solution using the latest version (AHK_L) when using Internet Ex ... |
Topic: COM Click Issue |
sinkfaze
Replies: 5
Views: 102
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 5:17 pm Subject: COM Click Issue |
| When you choose to continue on the error message does it work for the other click without error? |
Topic: COM Click Issue |
sinkfaze
Replies: 5
Views: 102
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 3:51 pm Subject: COM Click Issue |
| They could've simply changed something on the web page, have you double-checked to make sure that's still the valid name/id of the Submit button? |
Topic: Obtain a string from within the Clipboard |
sinkfaze
Replies: 2
Views: 65
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 7:05 am Subject: Obtain a string from within the Clipboard |
Similarly:
RegExMatch(Clipboard,"here:\K[^""]+",match)
MsgBox % match |
Topic: [AHK_L] How do get my script to type Unicode? |
sinkfaze
Replies: 8
Views: 120
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 5:27 am Subject: [AHK_L] How do get my script to type Unicode? |
| Can't hurt to ask...are you using the ANSI or Unicode build? |
Topic: [AHK_L] How do get my script to type Unicode? |
sinkfaze
Replies: 8
Views: 120
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 5:18 am Subject: [AHK_L] How do get my script to type Unicode? |
| If you open the script as a Notepad document and choose to 'Save As...' what does it say your encoding is? |
Topic: Check to see if a COM object still exists |
sinkfaze
Replies: 6
Views: 120
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 4:22 am Subject: Check to see if a COM object still exists |
Not sure about that guest:
if IsObject(WB)
MsgBox still exists
else MsgBox it's gone |
Topic: RadioGroup's |
sinkfaze
Replies: 3
Views: 67
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 10:06 pm Subject: RadioGroup's |
| Well, 1) you don't have 4 radio buttons in each group, and 2) per Odlanir's note from the manual, your radio buttons should already be in two separate groups. |
Topic: help getting data from listview |
sinkfaze
Replies: 2
Views: 68
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 8:34 pm Subject: help getting data from listview |
If your listview is in a different app, use ControlGet, outputvar, List
AHK ListViews use SysListview321 as the control, you can use ControlGet on an AHK GUI as well, even in the same script. |
Topic: Newbie needing Directions |
sinkfaze
Replies: 3
Views: 103
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 7:27 pm Subject: Newbie needing Directions |
| If you use the Window Spy (AU3_Spy.exe) while the commercial app is active, can you see the names of the Edit fields where this data needs to be sent to? |
Topic: Terminating Excel application handle? |
sinkfaze
Replies: 3
Views: 78
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 7:23 pm Subject: Terminating Excel application handle? |
| You might want to download the .chm version of the Excel 2003 Visual Basic Reference. The program has obviously been updated since then but the vast majority of the programmatic structure remains exa ... |
Topic: Terminating Excel application handle? |
sinkfaze
Replies: 3
Views: 78
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 6:41 pm Subject: Terminating Excel application handle? |
| Not sure where you got the ObjRelease() idea from but it doesn't apply at all in this case. If you want to close the workbook and terminate the Excel application (using your code) you want to do this ... |
| |