| Author |
Message |
Topic: D and space in loop |
Astrognaw
Replies: 4
Views: 163
|
Forum: Ask for Help Posted: Sun Nov 29, 2009 11:34 pm Subject: D and space in loop |
Acecoder's script doesn't seem to work for me. It'll continue if I press Insert for 3+ seconds, and it takes another press of insert to stop the D's.
I'm oddly terrible with hotkeys, perhaps this i ... |
Topic: D and space in loop |
Astrognaw
Replies: 4
Views: 163
|
Forum: Ask for Help Posted: Sun Nov 29, 2009 6:13 pm Subject: D and space in loop |
Sendmode Input
insert::
loop,
{
send, {D down}
send, {D up}
send, {Space}
GetKeyState, state, insert, P
if State = U
break
Sleep, 20
... |
Topic: Waiting for a webpage to load |
Astrognaw
Replies: 11
Views: 658
|
Forum: Ask for Help Posted: Thu Nov 12, 2009 12:08 am Subject: Waiting for a webpage to load |
| I'm simply wondering why it wouldn't work on my machine/setup. Visible creates a blank IE. Navigate2/Navigate (for that 'identity') opens a 2nd window with a different object 'identity.' I can make it ... |
Topic: Waiting for a webpage to load |
Astrognaw
Replies: 11
Views: 658
|
Forum: Ask for Help Posted: Wed Nov 11, 2009 2:23 am Subject: Waiting for a webpage to load |
For some reason the above code doesn't work for me in IE7.
COM_Invoke(pweb, "Visible", True) ; creates a blank IE7 window
COM_Invoke(pweb, "Navigate2", sUrl) ; ... |
Topic: OPIE fishing bot for WOW |
Astrognaw
Replies: 91
Views: 8703
|
Forum: Scripts & Functions Posted: Tue Nov 10, 2009 1:10 am Subject: OPIE fishing bot for WOW |
Really nice work. I appreciate all the time you put into this. 1.0 didn't work for me, anywhere I fished it said there was too much splash color, but this did the job fantastically.
By the way, the ... |
Topic: copy webpage into notepad |
Astrognaw
Replies: 16
Views: 623
|
Forum: Ask for Help Posted: Sat Nov 07, 2009 9:28 pm Subject: copy webpage into notepad |
You might find it more reliable to use Sean's #NoEnv
#include COM.ahk
#include GetWebBrowser.ahk
`::
Com_Init()
pwb := GetWebBrowser()
gUrl := COM_Invoke( ... |
Topic: increasing integer capacity for arithmetic? |
Astrognaw
Replies: 2
Views: 132
|
Forum: Ask for Help Posted: Mon Oct 26, 2009 4:50 am Subject: increasing integer capacity for arithmetic? |
From the help file...
Commands, functions, and expressions that accept numeric inputs generally support 15 digits of precision for floating point values. For integers, 64-bit signed values are suppor ... |
Topic: Question on COM/DOM access/manipulation |
Astrognaw
Replies: 3
Views: 208
|
Forum: Ask for Help Posted: Thu Sep 03, 2009 6:00 pm Subject: Question on COM/DOM access/manipulation |
I know I made this post awhile ago but I figured out how to do it (for some things):
#include COM.ahk
#include GetWebBrowser.ahk
COM_Init()
^f12::
COM_Init()
pwb ... |
Topic: simple? map right-click to middle click and viceversa |
Astrognaw
Replies: 4
Views: 234
|
Forum: Ask for Help Posted: Sun Aug 30, 2009 3:46 am Subject: simple? map right-click to middle click and viceversa |
this work?
MButton::
Send, {RButton}
return
RButton::
Send, {MButton}
return |
Topic: How to get and manipulate URL in internet software |
Astrognaw
Replies: 6
Views: 231
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 9:34 pm Subject: How to get and manipulate URL in internet software |
#include COM.ahk
#include GetWebBrowser.ahk
#NoEnv
^d::
Com_Init()
pie := GetWebBrowser()
gUrl := COM_Invoke(pie, "LocationURL")
StringTrimRigh ... |
Topic: Question on COM/DOM access/manipulation |
Astrognaw
Replies: 3
Views: 208
|
Forum: Ask for Help Posted: Sat Aug 22, 2009 9:34 pm Subject: Question on COM/DOM access/manipulation |
| Precisely a frame, yes. I should've said that. I'll search about for a proper example. Thanks! |
Topic: Question on COM/DOM access/manipulation |
Astrognaw
Replies: 3
Views: 208
|
Forum: Ask for Help Posted: Sat Aug 22, 2009 2:23 pm Subject: Question on COM/DOM access/manipulation |
Hello,
I'm trying to access the DOM of a "module" within a browser so i can use COM functions to manipulate it (clicking buttons and so forth, hell, just seeing that it exists would be a ... |
Topic: MS Office Automation Functions (via COM) [thanks Sean] |
Astrognaw
Replies: 213
Views: 33277
|
Forum: Scripts & Functions Posted: Mon Aug 10, 2009 10:38 pm Subject: MS Office Automation Functions (via COM) [thanks Sean] |
| Thank you for these! Any plans on finishing the Access functions? I'd be grateful! |
Topic: Automating IE within a module w/ COM |
Astrognaw
Replies: 2
Views: 111
|
Forum: Ask for Help Posted: Tue Jul 07, 2009 2:39 am Subject: Automating IE within a module w/ COM |
| I was wondering how I access/send commands to the COM of a pop up within IE7. I suppose it's like frames. I want to capture the DOM of a pop up (that uses a module structure outside the source of the ... |
Topic: Brilliant program, please help me configure a script? |
Astrognaw
Replies: 16
Views: 501
|
Forum: Ask for Help Posted: Wed Jul 01, 2009 12:01 pm Subject: Brilliant program, please help me configure a script? |
MouseClick [, WhichButton , X, Y, ClickCount, Speed, D|U, R]
The bracketed parameters are optional and the default is left. So all you really need is...
XButton2::
SetKeyDelay, ... |
| |