How to not send Args

I was looking for a way to send a string without args.
Some software dont like the args, they only want strings / adresses.
So figured out using a Button in Tap-mode and bypass checked with custom script with looking like

send("/adress/only/example",undefined)

actually works, but maybe there is another way?
grafik

You can omit the undefined argument. Using scripting is not required though, you can set the button’s on property to null.

1 Like

Thanks alot!
I just saw it in the Tooltip.
But many thanks for answering anyways.