| Author |
Message |
Topic: Mouse Movement & Click Recorder |
garath
Replies: 34
Views: 11887
|
Forum: Scripts & Functions Posted: Sun Jan 09, 2011 8:37 am Subject: Mouse Movement & Click Recorder |
I like your solution.
Once ago, I did a [url=http://www.autohotkey.com/forum/viewtopic.php?t=16473]Mouse-Recorder, too.
But yours is more handsome.
Best regards,
Garath |
Topic: How to parse HTML string? |
garath
Replies: 10
Views: 2043
|
Forum: Ask for Help Posted: Fri Jul 17, 2009 5:44 am Subject: How to parse HTML string? |
use
voundPos := RegExMatch("abcXYZ123", "abc(.*)123", SubPat) ; Returns 1 and stores "XYZ" in SubPat1
http://www.autohotkey.com/docs/commands/RegExMatch.htm
Rea ... |
Topic: How to record Status Bar Text until a button is pushed |
garath
Replies: 5
Views: 940
|
Forum: Ask for Help Posted: Wed Jul 15, 2009 3:38 pm Subject: How to record Status Bar Text until a button is pushed |
you need
SetTitleMatchMode RegEx
did you use it?
read about SetTitleMatchMode in the helpfile, if not.
Here is an example with your Skript, I changed it a bit,
Statusbarwait blocked checking ... |
Topic: An accurate way to record duration of keypresses |
garath
Replies: 7
Views: 507
|
Forum: Ask for Help Posted: Tue Jul 14, 2009 7:23 pm Subject: An accurate way to record duration of keypresses |
A long tome ago I used Shimanovs high precisission Timer to messure key-press-lenght.
It worked very accurate.
http://www.autohotkey.com/forum/viewtopic.php?t=7545timer |
Topic: GUI Style? |
garath
Replies: 23
Views: 1500
|
Forum: Ask for Help Posted: Tue Jul 14, 2009 7:08 pm Subject: GUI Style? |
What is wrong with skans version?
http://img18.yfrog.com/img18/5201/clipboard01wrg.jpg |
Topic: Custom MsgBox |
garath
Replies: 14
Views: 899
|
Forum: Ask for Help Posted: Tue Jul 14, 2009 6:59 pm Subject: Custom MsgBox |
I would prefer a Gui, but you can use this, too:
SetTimer, ChangeButtonNames, 50
MsgBox, 3, TightVNC, Leo, diz ae qual dos programas você quer abrir:
IfMsgBox, YES
Run, D:\Appz\4 ... |
Topic: Need Help Using Multiplication Command |
garath
Replies: 1
Views: 345
|
Forum: Ask for Help Posted: Tue Jul 14, 2009 6:45 pm Subject: Need Help Using Multiplication Command |
You are working with an expression, so you have to use :=
read about expressions in the Helpfile
RepostTime := (80000+(22000*NumListAcc1)) |
Topic: Copying pictures from one folder to another |
garath
Replies: 3
Views: 355
|
Forum: Ask for Help Posted: Mon Jul 13, 2009 5:21 pm Subject: Copying pictures from one folder to another |
Sorry but I dont have the time to write this skript, but for starting you could use this from the helpfile and elsewhere:
First get Folder and Target Folder
FileSelectFolder, SourceFolder, , 3, ... |
Topic: Run program with windows key, but keep other shortcuts |
garath
Replies: 9
Views: 1093
|
Forum: Ask for Help Posted: Mon Jul 13, 2009 12:27 am Subject: Run program with windows key, but keep other shortcuts |
Lwin an # are the same button, so both need the ~
~LWin::
Input,v,L1 M
If ErrorLevel=Max
Send, #{%v%}
else if ErrorLevel=NewInput
Run, c:\program ... |
Topic: IE button that must be clicked: can i get the co-ordinates ? |
garath
Replies: 10
Views: 520
|
Forum: Ask for Help Posted: Mon Jul 13, 2009 12:13 am Subject: IE button that must be clicked: can i get the co-ordinates ? |
| maybe you could use javaskript to push the button |
Topic: Run program with windows key, but keep other shortcuts |
garath
Replies: 9
Views: 1093
|
Forum: Ask for Help Posted: Sun Jul 12, 2009 11:40 pm Subject: Run program with windows key, but keep other shortcuts |
from the Helpfile:
You can use the following modifier symbols to define hotkeys:
# Win (Windows logo key)
~ When the hotkey fires, its key's native function will not be blocked (hi ... |
Topic: Copying pictures from one folder to another |
garath
Replies: 3
Views: 355
|
Forum: Ask for Help Posted: Sun Jul 12, 2009 11:30 pm Subject: Copying pictures from one folder to another |
Just an idea:
Maybe something like this nonworking example
vFileList =
Loop, %A_MyDocuments%\Photos\*.jpg, 0
FileList = %FileList%%A_LoopFileName%`n
msgbox, %filelist
Loop, parse, File ... |
Topic: Help with Filelineread and IE_LoadURL |
garath
Replies: 3
Views: 382
|
Forum: Ask for Help Posted: Sun Jul 12, 2009 11:02 pm Subject: Help with Filelineread and IE_LoadURL |
did you include the Wrapper IEControl.ahk and CoHelper.ahk?
I think we need your whole code to see your mistake or the Problem |
Topic: Ask for name/psw before sending into script |
garath
Replies: 13
Views: 540
|
Forum: Ask for Help Posted: Sun Jul 12, 2009 7:46 pm Subject: Ask for name/psw before sending into script |
You forgot the %-Signs, try the following code example:
name = LadyDutch
pasword = blond
ftp_script = open localhost
ftp_script = %ftp_script%`r`n%name%
ftp_script = %ftp_script%`r`n%paswor ... |
Topic: Locating Input Box |
garath
Replies: 14
Views: 959
|
Forum: Ask for Help Posted: Sun Jul 12, 2009 7:10 pm Subject: Locating Input Box |
| there is no Control called FAQ, this is an HTML-Button, you only can handle Windows-Buttons, but you could use Javaskript instead to fill in the cells and push IE Buttons |
| |