Re: uno, python scripting, macro management window user experience

2012-10-29 Thread Lionel Elie Mamane
On Thu, Oct 25, 2012 at 02:41:14PM +0200, Marc Weber wrote: [1] Summary: What I'd like to improve - this requires a wiki which is why I'm asking here cause I need your help. Welcome to LibreOffice contribution! I had the same initial difficulties getting started with Python scripting of

Re: Re: uno, python scripting, macro management window user experience

2012-10-29 Thread Lionel Elie Mamane
On Thu, Oct 25, 2012 at 07:13:46PM +0200, Marc Weber wrote: http://wiki.openoffice.org/wiki/Documentation/DevGuide/OpenOffice.org_Developers_Guide Great - where is the documentation about python? Here are a few of my bookmarks: http://wiki.openoffice.org/wiki/Python

Re: uno, python scripting, macro management window user experience

2012-10-26 Thread Laurent Godard
Hi Marc Range(Foo).select If ActiveCell.MergeCells Then MergedInfo = ActiveCell.MergeArea MergedValue = MergedInfo(1, 1) End If for Libreoffice basic assuming a calc sheet, with some content in A1 and B1 Sub Main doc = thisComponent ' the current document

uno, python scripting, macro management window user experience

2012-10-25 Thread Marc Weber
Dear dev-list. TOPs: [1] Summary: What I'd like to improve - this requires a wiki which is why I'm asking here cause I need your help. [2] What made me write this mail - my journy (only read if you have time) [1] Summary: What I'd like to improve - this requires a wiki

Re: Re: uno, python scripting, macro management window user experience

2012-10-25 Thread Marc Weber
Hi Laurent, thanks for your advice and support. did you have a look there I got this far: http://www.openoffice.org/api/docs/common/ref/com/sun/star/util/XMergeable.html But XMergeable dosn't have dataArray, Yes, I know how to find it now. Its in XCellRange or such.