Tagged Questions
5
votes
3answers
1k views
OpenOffice.org development with pyUno for Windows—which Python?
At home, on Linux, I've experimented with pyUNO to control OpenOffice.org using Python. I've been using Python 2.6. It all seems to work nicely.
Now I thought I would try one of my scripts (run a ...
3
votes
1answer
257 views
Is there a simple way to write an ODT using Python?
My point is that using either pod (from appy framework, which is a pain to use for me) or the OpenOffice UNO bridge that seems soon to be deprecated, and that requires OOo.org to run while launching ...
2
votes
1answer
210 views
OpenOffice pyuno “select all”
Does anyone know how to use the OO uno bridge api to "select all" in a Calc sheet?
Alternatively, finding the maximum used row and column number would work.
What I want to do is apply a format to ...
2
votes
1answer
526 views
Using PyUNO on Windows and CentOS
Is there any way to use OpenOffice's PyUNO without using the version of Python that comes with OpenOffice?
I mean, can I install a package (on Windows and CentOS) that uses the version of Python ...
1
vote
0answers
117 views
Using pyuno on MacOS to do file conversions
I am running MacOS 10.6 and OpenOffice 3.3. I am interested in using PyUNO to script conversions of .odp to .ppt, .pdf, and .swf. I have not found any clear documentation on how to do so with MacOS. ...
1
vote
1answer
737 views
Openoffice3.1 pyuno confusing errors
I'm trying to get the sample and other sample codes i find for pyuno running with openoffice 3.1.1 and python 2.5 with no luck.
Unfortunately, pyuno does not give any clues about what goes wrong.
...
1
vote
1answer
785 views
How do you set the text direction for a TextTable Cell in OpenOffice?
I want to set the text direction for some cells in a TextTable so that they are vertical (i.e., the text is landscape instead of portrait).
You can do this in Writer by selecting the cell(s), and ...
0
votes
1answer
86 views
Python-uno package issue with python2.6 and python2.7 installed
I'm working with OpenERP and a module named report_openoffice. This module needs the package python-uno installed. The problem is that i have 2 versions of python(2.6 and 2.7). When I install the ...
0
votes
0answers
51 views
freezing pane in excel sheet being written with python using openoffice uno module
I have a Python script that reads a OpenOffice odt template and creates a xls file after inserting required data. I am using OpenOffice uno module with python.
I need to perform freeze pane in the ...
0
votes
0answers
72 views
how to use Enum Types in uno-python?
I start learning uno-python. I want to convert this java code to python:
// example for use of enum types
xCellProps.setPropertyValue("VertJustify",com.sun.star.table.CellVertJustify.TOP);
the ...