@Lindon if you have Atom or similar then ask Claude for key search words, search the source and find the relevant files that way
Posts
-
RE: Builder InterfaceTypesposted in General Questions
-
RE: Where are we with Hise currently?posted in General Questions
@ustk said in Where are we with Hise currently?:
Because my plugin is waiting for the matrix modulation to work to be released
I don't think too much has been done with the mod matrix recently. Might be useful if we narrow down a target fix list between ourselves and others - I think there's only one or two more who are waiting on this? @Orvillain @dannytaurus @Oli-Ullmann perhaps?
-
RE: Broadcaster Events - Looking for mouse scroll / wheelposted in General Questions
@David-Healey @griffinboy @ustk Claude Code has done it :)
Whether it lives up to Christoph's coding standards we will have to see, but I did have the new Agents.md doc in the repo so hopefully Claude referenced that when making changes....
-
RE: Broadcaster Events - Looking for mouse scroll / wheelposted in General Questions
@griffinboy ok thanks! Perhaps Claude Code can add

-
Broadcaster Events - Looking for mouse scroll / wheelposted in General Questions
Looking for an event.Wheel or something. Does it or anything like it exist? Search the source and found just:
"No Callbacks" "Context Menu" "Clicks Only" "Clicks & Hover" "Clicks, Hover & Dragging" "All Callbacks" -
RE: VS 2026posted in General Questions
@Christoph-Hart where is it? I thought it was in tools/projucer ?
Oh readme lol

Still can't find it!
Found it

-
RE: VS 2026posted in General Questions
@David-Healey just trying to export an plugin from Hise but I don't think it can find VS - even when I had 2022 installed. The wizard says ms build not installed...
-
RE: VS 2026posted in General Questions
@David-Healey yup, followed your instructions and link via Git
I have an older version of Hise on the pc that does include VS 2022 as an exporter. Just not this new one
Also it's the same on OSX I just never noticed. Maybe been omitted by error @Christoph-Hart ?
Faust options also missing on Windows

-
RE: VS 2026posted in General Questions
@David-Healey Thanks, trying to build and the standalone projucer files only lists XCode (maxOS) and Linux Makefile as exporter options. Any ideas why VS doesn't appear? I only have VS 2026 installed
-
RE: VS 2026posted in General Questions
@David-Healey Did you make a VS 2026 with IPP video? Or am I imagining things?
-
RE: Table Broadcasterposted in General Questions
@Oli-Ullmann Thanks, yeah potentially, will see what I can do :)
Cheers!
-
RE: Table Broadcasterposted in General Questions
@Christoph-Hart thanks! Hopefully this will be better than what I hacked together using
const var Table_LFO1 = Content.getComponent("Table_LFO1"); const var LFO1SHAPE = Synth.getTableProcessor("LFO 1"); inline function onTable_LFO1Content(value) { overlayPanels[0].repaint(); } const var LFO1_TABLE_DATA = LFO1SHAPE.getTable(0); LFO1_TABLE_DATA.setContentCallback(onTable_LFO1Content);Both seems to wok equally well, however neither fire continuously, so the paint routine, for example, only repaints on mouse up. Is there any way to repaint continuously - tried setDisplayCallback but the table ruler triggered buggy behaviour
-
RE: Table Broadcasterposted in General Questions
@Oli-Ullmann oh, apparently it doesn't exist after all, despite being in the docs

@Christoph-Hart was it ever in / did it get removed?
-
Table Broadcasterposted in General Questions
Does anyone have a snippet with a table firing a broadcaster?
tableChangeBroadcaster.attachToComplexData( "Table.Content", ["LFO1SHAPE", "LFO2SHAPE", "LFO3SHAPE", "LFO4SHAPE"], 0, "Watch all LFO table edits" );Can't get it to work this end...
