Finaly i've got it:
...
set UNO(OOoapp) [::tcluno_soffice::initDesktop]
set DocFilterSequence [$UNO(OOoapp) tcluno::createUnoSequence Any]
set UNO(Writer,doc) [$UNO(OOoapp) loadComponentFromURL "file:///tmp/in.doc" "_default" 0 $DocFilterSequence]
set filterSequence [$UNO(OOoapp) tcluno::createUnoSequence Any]
set filter [$UNO(OOoapp) tcluno::createUnoStructHelper \
com.sun.star.beans.PropertyValue [list FilterName -1 writer_pdf_Export 0]]
$UNO(OOoapp) tcluno::appendUnoSequence $filterSequence $filter
$UNO(Writer,doc) storeToURL "file:/tmp/test.pdf" $filterSequence
Is there a 'easy' way to find Information about the OpenOffice-Interface?
(Right now it's more guessing then developing)
Matthias
Matthias Meier schrieb: