Search found 5 matches

by gonzoson
16 Apr 2021, 20:38
Forum: Ask for Help (v1)
Topic: Adobe Acrobat com printing a specific page
Replies: 1
Views: 226

Adobe Acrobat com printing a specific page

Is there a way to print a particular page from a PDF file using COM and AHK? I have a working script that I was able to put together with the help of this forum and some googling that extracts some field data and saves the pdf with the extracted data in the file name. But was wondering if there is a...
by gonzoson
11 Mar 2021, 13:41
Forum: Ask for Help (v1)
Topic: COM integration with PDF to save a file
Replies: 3
Views: 648

Re: COM integration with PDF to save a file

Here you go. F8:: oAcrobat := ComObjCreate("acroExch.App") oAcrobatdoc := ComObjCreate("acroexch.avdoc") ; create an document object oAcrobat.show() ; make the application object visible or .hide it Part1Document := ComObjCreate("AcroExch.PDDoc") App := ComObjCreate("AcroExch.App") AVDoc := App.Get...
by gonzoson
10 Mar 2021, 21:15
Forum: Ask for Help (v1)
Topic: COM integration with PDF to save a file
Replies: 3
Views: 648

COM integration with PDF to save a file

I am trying to create a script that will extra text from fields in a pdf and use that data to save and name the pdf. I managed to find code to extract data from the opened pdf and another code to save the pdf. But I cant figure out how to combine them two. I am hoping to get some help here. Here is ...
by gonzoson
26 Jan 2019, 11:04
Forum: Ask for Help (v1)
Topic: I just would like a simple spam F1 key script Topic is solved
Replies: 4
Views: 13791

Re: I just would like a simple spam F1 key script Topic is solved

F3::
If State=100
State=Off
else
State=100
SetTimer SendKey, %State%
Return

SendKey:
Send F1
Return
by gonzoson
26 Jan 2019, 10:59
Forum: Ask for Help (v1)
Topic: IFRAMES and COM/DOM help
Replies: 0
Views: 508

IFRAMES and COM/DOM help

I am having a difficult time with getting an InnerText, OuterHTML or anything from an element on a website, which has 3 frames on it. For a webpage that didnt have any frames, I was able to use the code below to get the inner text wb := IEGet("collections") balance := wb.document.GetElementsByTagNam...

Go to advanced search