Re: [api-dev] Removing focus from a control

2008-10-28 Thread Christoph Jopp
Hi Andrew, tried to reproduce the behaviour of your code. The results were: With OOo 2.4 and 3.0 both on Linux. At first I could only change the status of the checkbox if I turned the document to not editable and thus could of course change nothing in cell A2. But with the document set to

Re: [api-dev] NetBeans Plug-in 2.0.0 : descriptions not added in the manifest nor in the oxt

2008-10-28 Thread Juergen Schmidt
Hi Ariel, Ariel Constenla-Haile wrote: Hi all, in NetBeans Plug-in 2.0.0 the extension descriptions (added to the description.xml using the Project Properties dialog) are not added in the manifest nor added to the oxt, so there is no description at all. that is not the same. The descriptions

Re: [api-dev] Removing focus from a control

2008-10-28 Thread Bernard Marcelly
Hi Andrew, I found the same problem with a simple control Button. You have to set focus again on the document window (sort of). Just add this instruction at end of your macro: oFrame.ContainerWindow.setFocus By the way, I did not know the .uno:SetInputMode trick ! __ Bernard Message de

Re: [api-dev] NetBeans Plug-in 2.0.0 : descriptions not added in the manifest nor in the oxt

2008-10-28 Thread Ariel Constenla-Haile
Hi Jürgen, Juergen Schmidt escribió: Hi Ariel, Ariel Constenla-Haile wrote: Hi all, in NetBeans Plug-in 2.0.0 the extension descriptions (added to the description.xml using the Project Properties dialog) are not added in the manifest nor added to the oxt, so there is no description at all.

Re: [api-dev] Removing focus from a control

2008-10-28 Thread Andrew Douglas Pitonyak
Thanks Bernard... It had not occurred to me to manually set the focus on the container window. Matthias, this should solve your problem... Bernard Marcelly wrote: Hi Andrew, I found the same problem with a simple control Button. You have to set focus again on the document window (sort of).