This page provides an example of how to open [PDF] with Adobe [http://www.adobe.com/] Acrobat using the [tcom] package. For more information see DeveloperFAQ.pdf [http://partners.adobe.com/public/developer/en/acrobat/sdk/pdf/intro_to_sdk/DeveloperFAQ.pdf], IACOverview.pdf [http://partners.adobe.com/public/developer/en/acrobat/sdk/pdf/iac/IACOverview.pdf] and IACReference.pdf [http://partners.adobe.com/public/developer/en/acrobat/sdk/pdf/iac/IACReference.pdf]. [Alexander Schöpe] ---- package require tcom if {[catch {::tcom::ref createobject AcroExch.AVDoc} application]} { puts stderr "tcom: $application" exit 1 } set rc [$application Open {C:\IACReference.pdf} {Opened by Tcl}] ---- [ABU] 1-oct-2006 Note that the above script does not work if you only installed Acrobat-Reader. It requires Acrobat *Writer* . If your PC is equipped with Acrobat-Reader only, you can use the following script for browsing a PDF: Note that [optcl] package is used instead of [tcom] package require optcl set pdfTop .pdf ; # your toplevel window set page 1 ; # which page to display set docName "c:/tmp/zzz.pdf" ### use Acrobat Browser Control AcroPDF.PDF if { [catch { set h [optcl::new -start -window ${pdfTop}.x {AcroPDF.PDF}] }] } { tk_messageBox -icon error -title "Acrobat Reader" \ -message "Verificare che Acrobat Reader \nsia stato installato correttamente." } catch { $h LoadFile $docName $h setShowToolbar 0 $h setCurrentPage $page $h setView Fit } pack ${pdfTop}.x -fill both -expand true ---- [jnc] 5-jan-2010 - Can someone give an example of how to use [tcom] with Acrobat-Reader? Combinding the above two, I came up with: % package require tcom 3.9 % set pdf [::tcom::ref createobject AcroPDF.PDF] ::tcom::handle0x0303FC90 % $pdf LoadFile faa.pdf 0 % LoadFile returns 0, nothing ever happens, nothing ever happens in the Task Manager either of Windows (I was expecting to a new Acroreader process. ---- See also: * [ALX]: [HowTo open PDF with Adobe Acrobat or Reader using DDE] * [ALX]: [HowTo open PDF with Adobe Acrobat or Acrobat Reader using optcl] <> Category Example | Category Package | Category Windows | Category Printing