Noelson Duarte wrote:

> Here's some urls that do not work:
> - service:org.openoffice.script.fooPyComponent?execute
> - service:org.openoffice.script.fooPyComponent?execute$func1
> - service:org.openoffice.script.fooPyComponent?func1
> - service:org.openoffice.script.fooPyComponent?dummyScript.py$func1
> 

Hi Noelson,
service:org.openoffice.script.fooPyComponent?anyStringArg

This should call method trigger(strArg) if class fooPyComponent
implements c.s.s.task.XJobExecutor

Try my add-on http://ooomacros.org/user.php#221020
Having this add-on installed
=HYPERLINK("service:name.AndreasSaeger.SpecialCells.DialogCellContents")
triggers one of the dialogs.

Same with Basic code:
Sub test_SpecialCells
service1 = "name.AndreasSaeger.SpecialCells.DialogCellContents"
oSrv1 = createUnoService(service1)
oSrv1.trigger("arg does not matter")
End Sub

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to