Can button have two cue addresses?

Hello.
Qlab accept only commands like "/cue/1/start" for start and "/cue/1/stop" for stop. Without any arguments. Can i make toggle button do this on "On/Off"?
Thank you!

The button itself has only one address but with its script property you can send to different addresses depending on its value:

// script property
// assuming on is 1 and off is 0
// (target property must be set)
if (value == 1) {
  send('/cue1')
} else {
  send('/cue2')
}

reference: Scripting - Open Stage Control

Thank you very much, i'm new in open stage control.
And i see that it much better than touchosc by it's capabilities.

Hello @Egorkkk

Hum if i understand what you want, try this. I presume you really want to have only one address /cue/1/

No, jean-emmanuel give me right desicion.
I'm really need two different addresses, not values.

Thank you, and i'm sorry for my terrible English )

ok so it's nice !

Note that if you want to disable the default osc message to be sent, check Bypass to true

It's useful info, thank you one more time