| Author |
Message |
Topic: Need help in integrating autohot key script in Selenium RC |
trenton_xavier
Replies: 1
Views: 54
|
Forum: Ask for Help Posted: Fri Nov 14, 2008 12:50 pm Subject: Need help in integrating autohot key script in Selenium RC |
Do you mean to actually include AHK script inside your Selenium scripts or just have it be called and run on its own?
I'm not familiar with Selenium, but from a quick search it looks like its Java? ... |
Topic: Vista Help |
trenton_xavier
Replies: 2
Views: 117
|
Forum: Ask for Help Posted: Sun Nov 02, 2008 10:49 pm Subject: Vista Help |
In Explorer, just press alt+f and the old menu bar will popup.
and when you right-click on a folder and choose Properties and New, there's no Create AHK script option
don't right-click on a folde ... |
Topic: Can't open clipboard for reading. |
trenton_xavier
Replies: 11
Views: 275
|
Forum: Ask for Help Posted: Mon Oct 20, 2008 4:31 pm Subject: Can't open clipboard for reading. |
| Try using ClipWait after each time you copy in your code and try moving the clipboard into another var rather than reading straight from it. |
Topic: stringreplace question |
trenton_xavier
Replies: 1
Views: 76
|
Forum: Ask for Help Posted: Sun Sep 28, 2008 12:04 am Subject: stringreplace question |
| try using `r`n instead of just `n when reading from a txt file |
Topic: phone number too word generator |
trenton_xavier
Replies: 5
Views: 305
|
Forum: Ask for Help Posted: Sat Sep 27, 2008 9:06 pm Subject: phone number too word generator |
Does this work for you?
inpt = 2453425
inptlen := StrLen(inpt)
var0 = 0
var1 = 1.
var2 = ABC
var3 = DEF
var4 = GHI
var5 = JKL
var6 = NMO
var7 = PQRS
var8 = TUV
var9 = WXY ... |
Topic: Complete automation of an application - message boxes |
trenton_xavier
Replies: 1
Views: 62
|
Forum: Ask for Help Posted: Thu Sep 25, 2008 10:42 am Subject: Complete automation of an application - message boxes |
| Check to see if the dialogs/message boxes steal the active window status. If they do, then you can use SetTimer to see when the active window changes from emule and then take the appropriate action t ... |
Topic: copy and paste |
trenton_xavier
Replies: 2
Views: 175
|
Forum: Ask for Help Posted: Fri Sep 19, 2008 12:54 am Subject: copy and paste |
| post the code and use the code tags |
Topic: MouseMove, to a certain Color |
trenton_xavier
Replies: 2
Views: 111
|
Forum: Ask for Help Posted: Wed Sep 17, 2008 10:23 am Subject: MouseMove, to a certain Color |
| PixelSearch, OutputVarX, OutputVarY, X1, Y1, X2, Y2, 0x324A77, 0, Fast RGB |
Topic: Install two of the same Autohotkey programs |
trenton_xavier
Replies: 22
Views: 454
|
Forum: Ask for Help Posted: Tue Sep 16, 2008 5:41 pm Subject: Install two of the same Autohotkey programs |
ANSWER THIS QUESTION NOW:
Why do you need two instances running together? |
Topic: Install two of the same Autohotkey programs |
trenton_xavier
Replies: 22
Views: 454
|
Forum: Ask for Help Posted: Tue Sep 16, 2008 4:46 pm Subject: Install two of the same Autohotkey programs |
| No..... its comes with AHK. Either right click a running script's icon then click Window Spy or run it through the start menu in AutoHotkey's program folder. |
Topic: Install two of the same Autohotkey programs |
trenton_xavier
Replies: 22
Views: 454
|
Forum: Ask for Help Posted: Tue Sep 16, 2008 4:37 pm Subject: Install two of the same Autohotkey programs |
| Why do u want two instances of it running together? Are you trying to rebind, aka remap, one button to two different buttons? I don't understand the reasoning for wanting that program to be running ... |
Topic: Install two of the same Autohotkey programs |
trenton_xavier
Replies: 22
Views: 454
|
Forum: Ask for Help Posted: Tue Sep 16, 2008 2:15 pm Subject: Install two of the same Autohotkey programs |
| Why do you need this running two times simultaneaously? Are you just trying to remap keys? Because if so, theres a MUCH easier way to go about all this. |
Topic: Accentuated accent |
trenton_xavier
Replies: 16
Views: 270
|
Forum: Ask for Help Posted: Fri Sep 12, 2008 10:26 am Subject: Accentuated accent |
| It works fine for me. Well, i'm actually using ^SC029 because thats the correct scancode for my `. However ^`:: works fine for me, too. |
Topic: Functions default setting how? |
trenton_xavier
Replies: 6
Views: 137
|
Forum: Ask for Help Posted: Thu Sep 11, 2008 9:28 pm Subject: Functions default setting how? |
Like this?
Func(v2, v1 = "lmao") ;v1 default is "lmao"
{
MsgBox, %v2%`, %v1%
}
Func("lol")
Produces message box with "lol, lmao& ... |
Topic: why cant i get the trans color working |
trenton_xavier
Replies: 6
Views: 128
|
Forum: Ask for Help Posted: Thu Sep 11, 2008 8:16 pm Subject: why cant i get the trans color working |
From the help file:To additionally remove the border and title bar from a window with a transparent background, use the following after the window has been made transparent:
Gui -Caption ; Or use ... |
| |