Tagged Questions
The pyuno tag has no wiki summary.
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 ...
4
votes
2answers
633 views
Loading a document on OpenOffice using an external Python program
I'm trying to create a python program (using pyUNO ) to make some changes on a OpenOffice calc sheet.
I've launched previously OpenOffice on "accept" mode to be able to connect from an external ...
2
votes
1answer
251 views
Python 2.7 with pyuno
I am having python 2.7 installed on my windows 7. I have installed Libre Office 3.4 which comes with python 2.6. Hence i am not able to import uno and unohelper even after setting all environment ...
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 ...
1
vote
1answer
103 views
Openoffice headless memory optimizations [closed]
I run openoffice in headless mode on Webfaction hosting (they actually have OpenOffice.org 3.2 installed) and use it to convert odt to pdf with appy.pod python module.
The problem is that after ...
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
3answers
716 views
using pyuno with my existing pythonn installation
I'm trying to use PyUNO as a method to convert different document formats (doc, wordperfect, html, etc) to PDF from within my Django server. I'm having a heck of a time getting "import uno" to work. ...
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.
...
0
votes
1answer
11 views
use uno (openoffice api) to open spreadsheet *without* recalculation
I'm using pyuno to read an excel spreadsheet (running on linux.) Many cells have formulas referring to addins that are, obviously, not available. However the cell values are what I want.
But when I ...
0
votes
1answer
76 views
How to save a document edited from PyUNO?
I have now succeeded in opening a Word 97-2003 (.doc) document and edited it from Python. But how do I save it?
I always get:
Traceback (most recent call last):
File "office.py", line 55, in ...
0
votes
1answer
122 views
How to set Text Background Color using PyUNO with OpenOffice
I have a python script that successfully does a search and replace in an OpenOffice Writer document using PyUNO. I am able to set the CharColor of the replaced text ok but am unable to set the ...
0
votes
0answers
51 views
Pyuno: Problem using uno.invoke
I'm using the follow code:
def setControlProperty(self, ControlName, PropertyName, PropertyValue):
try:
if PropertyValue:
if self.xDialogModel.hasByName(ControlName) == ...
0
votes
2answers
185 views
Plural of words using Open Office API for Python (UNO)
I would like to retrieve the plural words in different languages in Python.
I know that openoffice has an API called uno (import uno) and it should give me this ability using openoffice's language ...
0
votes
1answer
297 views
Opening multiple documents in a same window with UNO
I have script in python using pyuno that extracts data from many excel files.
My problem is that for every file I open and close a window with
url = ...
0
votes
1answer
261 views
Updating MS Word (or Open Office) bookmarks with Python
I'd like to fill MSWord bookmarks from a python script.
I can't find such functions in win32com(MSWord) or in PyUno(OpenOffice).
Does anyone know how to use bookmarks from Python?