Search the Community
Showing results for tags 'Acrobat'.
-
This UDF is because I'm tired of trying to use UI Automation and Send to automate Adobe Acrobat. I often need to read the contents of PDFs and Acrobat is not easy to work with as a window. The functions are based on the API Reference from Adobe located here. Acrobat Pro is required for all fun...
-
Hi, since some days I become this error message exiting my app: Eventviewer shows following data: Name der fehlerhaften Anwendung: autoit3.exe, Version: 3.3.14.2, Zeitstempel: 0x55fc1979 Name des fehlerhaften Moduls: ntdll.dll, Version: 6.1.7601.23864, Zeitstempel: 0x595fa490 Ausn...
-
I am BRAND new to Autoit......in fact, experiencing install problems....that is a whole different can of worms. But I have several thousand PDF files, I can manually use keyboard and mouse to open each file and "Optimize" it ( Acrobat internal function to compress by 5x+/-) Then save the file with a...
-
I'm not sure if this should be help and support, COM help, or chat, so I posted it here I've been dealing with Acrobat (8.1 Pro) using the COM interface and the acroexch.app object and it's javascript interface to do a variety of tasks with PDF's (take a large file, read the text of the pages, spl...
-
How do I attach to the active acrobat window and get it's javascript object? I know how to do this when i know the filename: $oAcro = ObjCreate("acroexch.app") $oPDF = ObjCreate("AcroExch.PDDoc") $File = @ScriptDir&"\test.PDF" $oPDF.Open($File) $oJSpdf = $oPDF.getJSObject.app.opendoc($File) But...