| Author |
Message |
Topic: Basic Webpage Controls with JavaScript / COM - Tutorial |
Rad777
Replies: 245
Views: 57907
|
Forum: Scripts & Functions Posted: Mon Jan 24, 2011 6:30 pm Subject: Basic Webpage Controls with JavaScript / COM - Tutorial |
Have you tried the Control Commands?
Yep, I have no issue clicking the element, which brings up a prompt to DL the file 'Save As'/etc.
But.. I am looking for a way to download the file directly ... |
Topic: Basic Webpage Controls with JavaScript / COM - Tutorial |
Rad777
Replies: 245
Views: 57907
|
Forum: Scripts & Functions Posted: Mon Jan 24, 2011 4:54 pm Subject: How to download this? |
URL/ReportView.do?Key=XXXXXXX&format=PDF&reportName=Incident
There is no specific URL for the PDF
Clicking on the element brings up a 'Save As' box which I have yet to figure out how to ... |
Topic: AHK and XML SOAP, Is it possiable ? [SOLVED] |
Rad777
Replies: 9
Views: 837
|
Forum: Ask for Help Posted: Wed Oct 27, 2010 7:07 pm Subject: AHK and XML SOAP, Is it possiable ? [SOLVED] |
| Also would like the solution =-/ |
Topic: Hidden Controls in a Gui, and changing ControlIDs |
Rad777
Replies: 7
Views: 299
|
Forum: Ask for Help Posted: Tue Jul 13, 2010 6:03 pm Subject: Hidden Controls in a Gui, and changing ControlIDs |
Loop, 10
GuiControl, Hide, cButton%A_Index%
will make it much cleaner |
Topic: Professional VolOSD for Win95/NT4/98/ME/2000/XP/Vista/7 |
Rad777
Replies: 15
Views: 5427
|
Forum: Scripts & Functions Posted: Mon Mar 22, 2010 6:26 pm Subject: Professional VolOSD for Win95/NT4/98/ME/2000/XP/Vista/7 |
Error:"ERROR" is not a valid key name. The current threat will exit.
Line 415
I changed no settings and went to the "About" tab, then clicked cancel.
FYI =} |
Topic: [ARCHIVED THREAD] SciTE4AutoHotkey v2 Stable - Released. |
Rad777
Replies: 154
Views: 39326
|
Forum: Scripts & Functions Posted: Mon Mar 08, 2010 4:15 pm Subject: Lua & AHK |
Lua & AHK
Anyone know how to get this working? Step by Step?
I went to the properites, added what I thought I needed and no go.
Is there a doc out there? Ty |
Topic: Toggle with loop, can't break |
Rad777
Replies: 8
Views: 1171
|
Forum: Ask for Help Posted: Fri Feb 26, 2010 7:45 pm Subject: Toggle with loop, can't break |
no clue what you are trying to do... simple toggle in loop
Toggle = False
Loop, {
If (Toggle = "False") {
;Do stuff
;More stuff
;and stuff
}
E ... |
Topic: Joystick mapping in a game |
Rad777
Replies: 8
Views: 410
|
Forum: Ask for Help Posted: Fri Feb 26, 2010 7:37 pm Subject: Joystick mapping in a game |
| Post some code |
Topic: IronAHK (alpha): cross platform .NET rewrite of AutoHotkey |
Rad777
Replies: 538
Views: 93698
|
Forum: Scripts & Functions Posted: Mon Feb 22, 2010 2:26 pm Subject: IronAHK (alpha): cross platform .NET rewrite of AutoHotkey |
| GREAT WORK, TY |
Topic: Finding the position (x,y) of text for an overlay |
Rad777
Replies: 2
Views: 306
|
Forum: Ask for Help Posted: Tue Oct 06, 2009 4:05 pm Subject: Finding the position (x,y) of text for an overlay |
;example text:
text =
(
If any capturing subpatterns are present inside NeedleRegEx, their matches are stored in an array whose base name is `n OutputVar. For example, if the variable's ... |
Topic: How to save "Actual_Keypress" to variable |
Rad777
Replies: 3
Views: 365
|
Forum: Ask for Help Posted: Thu Oct 01, 2009 3:48 pm Subject: hope helps? I would add a toggle button or a setimer clear |
I don't understand why you want the pre-select to be two of the same keys. Why not just work with ONE? You will simply send the last F1-F5 selected. In any event, I hope this helps =)
$f:: ... |
Topic: If your laptop gets stolen... |
Rad777
Replies: 16
Views: 2354
|
Forum: Scripts & Functions Posted: Thu Oct 01, 2009 2:53 pm Subject: If your laptop gets stolen... |
...........
I would: Turn on the webcam - take a photo and open a secondary email account off the screen and send myself the photo and the IP address. |
Topic: most reliable way to send text to console window |
Rad777
Replies: 7
Views: 497
|
Forum: Ask for Help Posted: Thu Oct 01, 2009 2:48 pm Subject: most reliable way to send text to console window |
| I use putty ALL the time and spent ~30min or so last year attempting to do the same thing.... I didn't find a way... I am SURE there is because there is ALWAYS a way, just need to find it =) Good luck ... |
Topic: Get an unknown Input field in a window |
Rad777
Replies: 4
Views: 273
|
Forum: Ask for Help Posted: Thu Oct 01, 2009 2:44 pm Subject: Get an unknown Input field in a window |
| To get the name of a control is Windows Spy, this is bundled with AHK. |
Topic: Find repeated words in a text |
Rad777
Replies: 5
Views: 2388
|
Forum: Ask for Help Posted: Thu Oct 01, 2009 2:42 pm Subject: Find repeated words in a text |
This is a start.... Just finds words with a count of 2
FileRead, var1, C:\Test.txt
FileRead, var2, C:\Test.txt
Loop, Parse, var1, %A_Space%
{
varr = % A_LoopField
count = ... |
| |