You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I WOULD LIKE HELP ON HOW TO SEND A PROJECT SIMILAR TO YOURS TO COMPANION.
I WOULD LIKE TO USE THE OSC SYSTEM WHICH IS ALREADY WORKING ON MY SYSTEM, BUT I WANT TO GENERATE READY BUTTONS WITH THE ALREADY COMMAND.
I AM USING THE FOLLOWING COMMAND:
I WOULD LIKE HELP ON HOW TO SEND A PROJECT SIMILAR TO YOURS TO COMPANION.
I WOULD LIKE TO USE THE OSC SYSTEM WHICH IS ALREADY WORKING ON MY SYSTEM, BUT I WANT TO GENERATE READY BUTTONS WITH THE ALREADY COMMAND.
I AM USING THE FOLLOWING COMMAND:
send_int: {
name: 'PPT 1',
options: [
{
type: 'text input',
label: 'OSC Path',
id: 'path',
default: '/open1',
useVariables: true,
},
{
type: 'text input',
label: 'Value',
I did not do',
default: 1,
regex: Regex.SIGNED_NUMBER,
useVariables: true,
},
],
callback: async(event) => {
const path = await this.parseVariablesInString(event.options.path)
const int = await this.parseVariablesInString(event.options.int)
sendOscMessage(path, [
{
type: 'me',
value: parseInt(int),
},
])
},
},
COULD YOU HELP ME TO PLAY THE PROJECT ON THE AIR, AND CUSTOMIZE THE BUTTONS ACCORDING TO THE NAME AND DEFAULT VALUE ALREADY PRESET
The text was updated successfully, but these errors were encountered: