Re: [libreoffice-users] Re: Save UNO state?

2015-08-22 Thread X Roemer
Hi, I wrote some code some time ago. The code also checks the differences between two states of an object. The first part is similar to yours, it's also a recursive function, but it creates a dict and you can use a level to stop searching, so you won't get an infinite cycle. The second part

[libreoffice-users] Extension: Crash of LO5 64bit after using desktop.getCurrentComponent()

2015-08-14 Thread X Roemer
Hi, I'm not sure, if my question belongs here or if I should ask on the developer list instead? Today I tried my extension with LO5 64bit on Win7 64bit. It crashes after using these lines of code (python): ctx = uno.getComponentContext() smgr = ctx.ServiceManager desktop =

Re: [libreoffice-users] can't select an entry of a listbox

2015-06-20 Thread X Roemer
I found a solution: Selection is possible after the control has been added to a window. Am 20.06.2015 um 13:57 schrieb X Roemer: Hi, I'm trying to select a listbox entry by the code beneath, but I receive -1 as position and an empty string as entry. Do I miss something? Regards, Xaver

[libreoffice-users] can't select an entry of a listbox

2015-06-20 Thread X Roemer
Hi, I'm trying to select a listbox entry by the code beneath, but I receive -1 as position and an empty string as entry. Do I miss something? Regards, Xaver ctx = uno.getComponentContext() smgr = ctx.ServiceManager type = 'ListBox' ctrl =

Re: [libreoffice-users] loadComponentFromURL into _top frame at startup crashes LO

2015-05-31 Thread X Roemer
' URL=private:factory/swriter desktop.ActiveFrame.loadComponentFromURL(URL,'_top','',()) Am 31.05.2015 um 12:18 schrieb X Roemer: Hi, this post is somehow related to open files automatically, but a bit more specific. http://nabble.documentfoundation.org/open-files-automatically-td4149584

[libreoffice-users] Applying Personas by code without restarting Office

2015-05-25 Thread X Roemer
Hi, I already asked this question in the forum, but didn't receive any anwsers: https://forum.openoffice.org/en/forum/viewtopic.php?f=20t=77289 Provided that there is a theme called Dark Blue in the galery folder on disk, I can set a new Persona theme in LO by this code: /config_provider =

Re: [libreoffice-users] Coding: Radio Buttons don't work

2015-05-16 Thread X Roemer
is to see immediately what kind of choices are possible. Regards, Xaver Am 16.05.2015 um 15:04 schrieb Regina Henschel: Hi Xaver, X Roemer schrieb: Hi, I use always the same mechanism to add radio buttons by code. Usually I add one after one, directly after each other, and they get

Re: [libreoffice-users] Coding: Radio Buttons don't work

2015-05-16 Thread X Roemer
Sorry, forgot the screenshot: https://github.com/XRoemer/Organon/blob/master/Screenshots/Export%20vers%200.9.1b.png Am 16.05.2015 um 15:51 schrieb X Roemer: Hi Regina, thanks for your reply also. The TabIndex you're writing about sounds pretty much like what I'm looking for - but I can't

Re: [libreoffice-users] Coding: Radio Buttons don't work

2015-05-16 Thread X Roemer
them in an extra loop. Now they are working again. That doesn't make much sense to me, but at least it works. 2015-05-16 13:08 GMT+02:00 Johnny Rosenberg gurus.knu...@gmail.com mailto:gurus.knu...@gmail.com: 2015-05-16 8:59 GMT+02:00 X Roemer x-roe...@web.de mailto:x-roe...@web.de

Re: [libreoffice-users] Coding: Radio Buttons don't work

2015-05-16 Thread X Roemer
Screenshot can be found here: https://github.com/XRoemer/Organon/blob/master/Screenshots/radio%20buttons%20dont%20work.png Am 16.05.2015 um 08:59 schrieb X Roemer: Hi, I use always the same mechanism to add radio buttons by code. Usually I add one after one, directly after each other

[libreoffice-users] Coding: Radio Buttons don't work

2015-05-16 Thread X Roemer
Hi, I use always the same mechanism to add radio buttons by code. Usually I add one after one, directly after each other, and they get grouped automatically. But this time I can choose more than one and the others don't get disabled. (See screenshot) I know, it's better to show some code,

Re: [libreoffice-users] No releases of my extension on the LO extension site

2015-05-12 Thread X Roemer
Thanks. I subscribed to this list: webs...@global.libreoffice.org Xaver Am 12.05.2015 um 09:34 schrieb Charles-H. Schulz: Le 12 mai 2015 07:02:02 GMT+02:00, X Roemer x-roe...@web.de a écrit : Hi, I'm the author of the Writer extension Organon for LO/OO. I tried to keep it up to date

[libreoffice-users] No releases of my extension on the LO extension site

2015-05-11 Thread X Roemer
Hi, I'm the author of the Writer extension Organon for LO/OO. I tried to keep it up to date on the LO extensions site, but compared to OO's extensions site and its mechanism, I found it really hard to manage it for LO. I think, LO's mechanism is a bit overwhelming. The releases of my

Re: [libreoffice-users] Re: Split Screen in Writer?

2015-02-03 Thread X Roemer
what it used to do. Does anyone here know what program i'm talkign about and what the tabs were used for? Does this Extension do the same thing? I couldn't figure it out what it is doing from the screen-shot. Regards from Tom :) On 3 February 2015 at 06:00, X Roemer x-roe...@web.de wrote: My

[libreoffice-users] Re: Split Screen in Writer?

2015-02-02 Thread X Roemer
My Extension Organon uses tabs, but maybe not in the manner you were looking for. Here you'll find screenshots: https://github.com/XRoemer/Organon/tree/master/Screenshots and particulary: https://github.com/XRoemer/Organon/blob/master/Screenshots/tabs.png The most recent version of Organon is

[libreoffice-users] RuntimeException on Installing Extension

2014-11-03 Thread X Roemer
Hi, someone tried to install my extension, got a RuntimeException and gave me a feedback. But I'm not sure how to interpret this message right and where to search for the error. Why can't the pythonloader find the path to the extension. How's that possible? This is his message:

Re: [libreoffice-users] RuntimeException on Installing Extension

2014-11-03 Thread X Roemer
The users problem is solved. But my question is still: What does it mean, when the pythonloader doesn't find the path to the extension? When I insert a nonsens line, I receive an error with exact that line. But when does my problem appear? Am 03.11.2014 um 16:28 schrieb X Roemer: Hi

[libreoffice-users] Top Window without Decoration on Ubuntu

2014-09-28 Thread X Roemer
Hi, I try to get rid of the window decoration on Ubuntu, but can't find a way. Here's how it looks like on Windows: https://www.dropbox.com/s/rvc3ftjrdeh2cx4/LO%20on%20Win7.png?dl=0 and this is on Ubuntu: https://www.dropbox.com/s/fp4z1ceeleqxwr5/LO%20on%20Ubuntu.png?dl=0 I did set the flag