| Author |
Message |
Topic: Can a website trigger an AHK script? |
Carcophan
Replies: 8
Views: 229
|
Forum: Ask for Help Posted: Tue Mar 09, 2010 9:46 pm Subject: Can a website trigger an AHK script? |
to run a script from a webpage
Another option:
I have stored a .AHK file on a MicroSoft SharePoint site, and you can click and run it directly from the SP page itself.
Haven't tried with an ... |
Topic: click in game |
Carcophan
Replies: 4
Views: 108
|
Forum: Ask for Help Posted: Tue Mar 09, 2010 9:36 pm Subject: click in game |
its like the game blocks ahk keybord/mouse
It probably is.
Have you tried SendInput, SendPlay, SendRaw ? |
Topic: click in game |
Carcophan
Replies: 4
Views: 108
|
Forum: Ask for Help Posted: Tue Mar 09, 2010 9:20 pm Subject: click in game |
| The names of the variables in which to store the X and Y coordinates of the upper-left pixel of where the image was found on the screen (if no match is found, the variables are made blank). Coordinate ... |
Topic: Doesn't collect all the information |
Carcophan
Replies: 1
Views: 74
|
Forum: Ask for Help Posted: Fri Mar 05, 2010 12:40 am Subject: Re: Doesn't collect all the information |
The problem is that when it finished running via AHK it has 2,000KB, but when I manually run it it collects 4,000KB. .
When it runs and you get the 2mb file, is the content correct?
Did you m ... |
Topic: Hitting Enter from editbox to launch sub/button [solved] |
Carcophan
Replies: 3
Views: 50
|
Forum: Ask for Help Posted: Fri Mar 05, 2010 12:20 am Subject: Hitting Enter from editbox to launch sub/button [solved] |
The example above includes the word Default in its Options to make "OK" the default button. The default button's action is automatically triggered whenever the user presses ENTER...
@jp ... |
Topic: Hitting Enter from editbox to launch sub/button [solved] |
Carcophan
Replies: 3
Views: 50
|
Forum: Ask for Help Posted: Thu Mar 04, 2010 11:38 pm Subject: Hitting Enter from editbox to launch sub/button [solved] |
I am sort embarassed becuase I cannot remember this, I had this working at one time, but cannot find the snippet that I need now.
Basically, while the curser is in an Edit field in a GU ... |
Topic: Does the user (NOT the program) have admin privileges? |
Carcophan
Replies: 6
Views: 173
|
Forum: Ask for Help Posted: Wed Mar 03, 2010 6:14 pm Subject: Does the user (NOT the program) have admin privileges? |
Do you know who your admins are? Or is this aimed at an open audience you have no control over?
I personally use 'a_username' and an If statement to verify they are/are not an admin.
I know it ... |
Topic: Loop parse question: Index count/break and invalid info |
Carcophan
Replies: 22
Views: 480
|
Forum: Ask for Help Posted: Mon Mar 01, 2010 3:26 pm Subject: Loop parse question: Index count/break and invalid info |
That was only to demonstrate that it works with either input. You should remove the outer loop entirely and replace "var%A_Index%" with the appropriate variable name.
Yea... ... |
Topic: Loop parse question: Index count/break and invalid info |
Carcophan
Replies: 22
Views: 480
|
Forum: Ask for Help Posted: Sun Feb 28, 2010 4:20 pm Subject: Loop parse question: Index count/break and invalid info |
Would the following suffice?
Loop 2 ; Test both vars.
{
i = 0
Loop, Parse, var%A_Index%, `n, `r
{
if SubStr(A_LoopField,1,8)="Account:"
... |
Topic: Loop parse question: Index count/break and invalid info |
Carcophan
Replies: 22
Views: 480
|
Forum: Ask for Help Posted: Sun Feb 28, 2010 12:54 am Subject: Loop parse question: Index count/break and invalid info |
So if you switch it from e=3 to e=5 in the code does it work?
In short, no.
I do remember trying e5 specifically, but I do not know what the loop counter was at the time. I think it was loop6 ... |
Topic: Loop parse question: Index count/break and invalid info |
Carcophan
Replies: 22
Views: 480
|
Forum: Ask for Help Posted: Sat Feb 27, 2010 7:17 pm Subject: Loop parse question: Index count/break and invalid info |
Just an update:
Replaced the old code, with new method, and I am actually still having the same issue. All content is still submitted to 'address3' is there is no appartment.
I am still fid ... |
Topic: Loop parse question: Index count/break and invalid info |
Carcophan
Replies: 22
Views: 480
|
Forum: Ask for Help Posted: Fri Feb 26, 2010 1:08 am Subject: Loop parse question: Index count/break and invalid info |
RegExMatch(var,"is)(?<=Account: ).*(?=SSN:)",Acct)
RegExMatch(var,"is)(?<=Home Phone: ).*(?=Other Phone:)",HomePh)
RegExMatch(var,"is)(?<=Email Address: ).*(?=Sec ... |
Topic: Google search with quotes doesn't work, no error code |
Carcophan
Replies: 10
Views: 197
|
Forum: Ask for Help Posted: Thu Feb 25, 2010 11:21 pm Subject: Google search with quotes doesn't work, no error code |
Google it
http://www.webmasterworld.com/forum92/2045.htm |
Topic: Google search with quotes doesn't work, no error code |
Carcophan
Replies: 10
Views: 197
|
Forum: Ask for Help Posted: Thu Feb 25, 2010 11:21 pm Subject: Google search with quotes doesn't work, no error code |
Spaces are treated different in urls. They invlove %'s and stuff.
I don't know exactly off the top of my head, but its lke %a20% or something, you have probably seen them 1000 times and never eve ... |
Topic: Loop parse question: Index count/break and invalid info |
Carcophan
Replies: 22
Views: 480
|
Forum: Ask for Help Posted: Thu Feb 25, 2010 11:16 pm Subject: Loop parse question: Index count/break and invalid info |
Dumb question, but can I just plug in my 'clipboard' variable inplace of the 'var' variable?
and I should also be able to .= the values of my other regex stuff, output 'line1, line2, line3, line4 ... |
| |