@ustk ahh. makes sense. Thank you.
Posts
-
RE: Script Oscilloscope Buffer Sizeposted in Scripting
@ustk That was exactly what I needed. Thank You! As far as the dynamic part goes, I tried to create a reg for buffer length and change the value with a knob but im not getting any change.
const var Knob4 = Content.getComponent("Knob4"); reg bufferLengthNOW = 0; db.setRingBufferProperties( { "BufferLength": bufferLengthNOW, "NumChannels": 1 }); db2.setRingBufferProperties( { "BufferLength": bufferLengthNOW, "NumChannels": 1 }); include("LafOscilloscope.js"); inline function onKnob4Control(component, value) { if (value) { bufferLengthNOW = value; FloatingTile1.sendRepaintMessage(); } }; Content.getComponent("Knob4").setControlCallback(onKnob4Control); -
Script Oscilloscope Buffer Sizeposted in Scripting
How can I increase the length of the buffer size of my oscilloscope inside of my scriptFX node?
I change the number and its good for a little while until it decides to change back to default value "8192" again. Can I script this in onInit somehow to be a larger size?

-
RE: Can we detect DAW marker points?posted in Scripting
@Lindon Still a good read either way. Good stuff to know.

-
RE: Can we detect DAW marker points?posted in Scripting
@Lindon Wow. Sick info. Thanks! This is all brand new to me. I'll give it a good read.
-
Can we detect DAW marker points?posted in Scripting
Is there a way that HISE can get a DAW's timeline marker/s information?
I want to be able to access the names of the marker points and be able to trigger them similar to the plugin SETLIST.
-
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!


