@l8prod sus art 
Posts
-
RE: Set Label Text on Preset Load?posted in Scripting
@David-Healey Thanks! I ended up figuring it out from an old post you advised on as well. lol. Attached the callback to a slider with 'save in preset' loaded that triggers the callback on preset load.
-
Set Label Text on Preset Load?posted in Scripting
Im trying to get the current user preset to show on my label when I load a preset in the stock preset browser.
Desired action:
- load preset
- preset name drawn on label.
I was trying setPostCallback() but Im not sure how that works exactly. Can anyone give me any tips please?
-
RE: Asset Managerposted in General Questions
I feel like this is what everyone needs to fill in the gaps in development for some projects.

-
RE: Show value on knob, but not editableposted in Scripting
@David-Healey @svkpowa I was referring to this Spire example you posted which only needs one label no? js.
-
RE: Show value on knob, but not editableposted in Scripting
@svkpowa That was a major hack job tho tbh. You can do it a lot easier with script and a label. End user would never know the difference but just for your own sanity a simple script would have worked. There are enough posts about it floating around the forum to help you figure it out.
-
RE: Design feedback - velocity indicatorsposted in General Questions
Looks great and makes sense to me. Tooltips for sure!

-
RE: Colour Paletteposted in Feature Requests
@dannytaurus I like this idea. I wouldn't mind it one bit!

-
RE: Detect if Stereo or Multi-Output?posted in General Questions
I think you have to manually change the output amounts by connecting/disconnecting them via script using the routing manager api's.
Do you already have something along the lines of this...
const var routing = Synth.getRoutingMatrix("masterContainer"); //this sets 12 outputs by default. for(i=0; i < 12; i++) { routing.addConnection(i,i); // 1 to 1 channel routing // Use this function to make connections. Console.print(i); // Check outputs. }See the docs for more options to clear and reset connections.
https://docs.hise.dev/scripting/scripting-api/routingmatrix/index.html
https://docs.hise.dev/scripting/scripting-api/routingmatrix/index.html
-
RE: Scriptnode filter.convolution – select External Audio File Slot from UI (ComboBox)?posted in ScriptNode
@David-Healey ahh duhh. long week. smh. I'll take 2 shirts please.
-
RE: Scriptnode filter.convolution – select External Audio File Slot from UI (ComboBox)?posted in ScriptNode
@filipalex96 fix your 'const var conv' to 'const var'
