| Author |
Message |
Forum: Support Topic: Save Current Open File |
| Jayman |
|
Posted: November 11th, 2009, 7:49 am
|
|
Replies: 2 Views: 233
|
| Thanks for the tips. The Save As dialog didn't work out, as I am operating on w2ksp4 at work. The option just wasn't there as it is on my vista machine here at home. Another issue is, and its more of a security measure for the aforementioned web site, they embed the PDF in a IE browser. The window t... |
|
 |
Forum: Support Topic: Save Current Open File |
| Jayman |
|
Posted: November 10th, 2009, 6:48 am
|
|
Replies: 2 Views: 233
|
| Is there a command for saving a file that is currently open? (ie. viewing a .pdf file from a web page) I know Shift-Ctrl-S is the shortcut for that menu item in my version of Adobe, but im looking to bypass the Browse Menu in the process and specify a folder directly. Im ultimately trying to create ... |
|
 |
Forum: Support Topic: Vehicle Identification Number Validation |
| Jayman |
|
Posted: October 28th, 2009, 8:11 am
|
|
Replies: 15 Views: 1551
|
I studied your code. Seems flawless to me. Im still a bit confused with the RegExReplace, but I get the basics of whats going on.
Without your objection, I will add your version to my thumb drive collection of useful tools.
Thanks. |
|
 |
Forum: Support Topic: Vehicle Identification Number Validation |
| Jayman |
|
Posted: October 27th, 2009, 7:02 am
|
|
Replies: 15 Views: 1551
|
Sample VIN Number to test with: (or you may use the one from your own vehicle)
1M8GDM9AXKP042788 |
|
 |
Forum: Support Topic: Vehicle Identification Number Validation |
| Jayman |
|
Posted: October 27th, 2009, 7:00 am
|
|
Replies: 15 Views: 1551
|
| As described in the following link, i'm attempting to code a VIN (Vehicle Identification Number) validation process. http://en.wikipedia.org/wiki/Vehicle_Identification_Number#Check_digit_calculation I have the rough code ironed out, it appears. I'm seeking some advanced coding techniques to shorten... |
|
 |
Forum: Support Topic: Iniread and such read from variable help |
| Jayman |
|
Posted: July 2nd, 2009, 3:55 pm
|
|
Replies: 8 Views: 391
|
| A standard ini file looks like: [SectionName] Key=Value IniRead, OutputVar, MyINIFile.ini, SectionName, Key MsgBox, %OutputVar% ; Displays the word "Value" INI = ( [Home] Path=C:\ IniRead, OutputVar, %INI%, Home, Path If the question is if you can use a variable for the filename, I would a... |
|
 |
Forum: Support Topic: Why does AutoHotKey run so slow? |
| Jayman |
|
Posted: July 2nd, 2009, 3:41 pm
|
|
Replies: 13 Views: 1442
|
Quote: Lexicox
I wont laugh, I promise. |
|
 |
Forum: Support Topic: Access DOM in a frame |
| Jayman |
|
Posted: June 30th, 2009, 7:00 am
|
|
Replies: 10 Views: 612
|
COM only works on IE
I use FF, but write scripts that access COM & IE but I don't display the browser at all. It a form of denial. |
|
 |
Forum: Support Topic: Access DOM in a frame |
| Jayman |
|
Posted: June 30th, 2009, 1:29 am
|
|
Replies: 10 Views: 612
|
| Tagging this with my reply for future reference. I know ill be looking for it later. |
|
 |
Forum: Support Topic: need help automating a few clicks on a website |
| Jayman |
|
Posted: June 27th, 2009, 9:58 am
|
|
Replies: 74 Views: 5269
|
The COM.ahk belongs in your program files\autohotkey\lib folder.
Any script you right now can make use of the pre-scripted library of functions. |
|
 |
Forum: Support Topic: ie7 wait |
| Jayman |
|
Posted: June 27th, 2009, 5:30 am
|
|
Replies: 16 Views: 783
|
| @Jayman while this will typically give your rock solid results with most sites. Using events is superior for many reasons Example please? What events are you speaking of? That said there are other things that seem to prevent the reliability of COM events (at least via ahk) such as but not limited t... |
|
 |
Forum: Support Topic: ie7 wait |
| Jayman |
|
Posted: June 27th, 2009, 4:03 am
|
|
Replies: 16 Views: 783
|
Tank made this for me once.
Code: load_complete(pwb) { loop 20 If (com_invoke(pwb,"readystate")<>4) break Else sleep 200 loop 100 If (com_invoke(pwb,"readystate")=4) break Else sleep 500 return } |
|
 |
Forum: Support Topic: Another COM question - from a n00b |
| Jayman |
|
Posted: June 21st, 2009, 6:58 pm
|
|
Replies: 11 Views: 1100
|
i suspect that we need to get the code pointer to the correct frame to access the element id within.
ill search around for some helpful info. |
|
 |
Forum: Support Topic: Another COM question - from a n00b |
| Jayman |
|
Posted: June 21st, 2009, 5:56 pm
|
|
Replies: 11 Views: 1100
|
| This is my successful "click" code straight out of one of my functional scripts. COM_Invoke(pwb,"document.all.item[ctl00_cplhPublicContent_Login1_btnLogin].click") so...put your element id in its place and try it COM_Invoke(pwb,"document.all.item[[color=red]ELEME... |
|
 |
Forum: Support Topic: Web automation question |
| Jayman |
|
Posted: June 20th, 2009, 10:41 am
|
|
Replies: 5 Views: 530
|
| I'm not a "Windows internals programmer" and I was able to follow examples posted in this forum to easily navigate and automate web pages. "tank" has an excellent tutorial on the use of the COM Library that "Sean" created. I don't need to know how COM interacts with the... |
|
 |
| Sort by: |