[libreoffice-users] Macro to select for example 10 cells down (and/or right) current cell

2011-08-16 Thread Silva Paulo
Since uno:GoDown select is broken, how can I select for example 10 cells down (or right) the current cell in a basic macro? Thanks -- For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Postin

Re: [libreoffice-users] .uno:GoDown does not work correctly in 3.4.2!!

2011-08-04 Thread Silva Paulo
ot;Select" does not select anything even when true. Only "Sel".   > Another way of doing the same could be this: > > Dim oViewCursor As Object > oViewCursor = ThisComponent.CurrentController.getViewCursor() > oViewCursor.GoDown(9, "True") >

[libreoffice-users] .uno:GoDown does not work correctly in 3.4.2!!

2011-08-04 Thread Silva Paulo
This code     'Select area of insertion     args1(0).Name = "By"     args1(0).Value = 9     args1(1).Name = "Sel"     args1(1).Value = true     dispatcher.executeDispatch(document, ".uno:GoDown", "", 0, args1()) selects only 2 lines instead of 10!!! Thanks for any help/comment. -- For unsubs