Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSC MODULES #32

Open
MonteiroVideo opened this issue Apr 7, 2024 · 0 comments
Open

OSC MODULES #32

MonteiroVideo opened this issue Apr 7, 2024 · 0 comments

Comments

@MonteiroVideo
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant