Possible to receive CC control data from ScriptFX midichain to --> Knob ?
-
@ustk Thanks for the info!
This seems to work for only one CC control? I am looking for up to 32 CC controls to Ui or more. -
@ustk This is working if I create all these nodes for each CC.
There does not seem to be any node for setting the receive channel..
so that the incoming CC's on channel 2 will not effect the other CC's on the UI on channel 1.
-
@Rognvald If you can use a snex node and code it then you can send an array of data through a cable. I am not aware of anything else from the network itself but it might be

-
@Rognvald But if you just need to monitor the CC input you can just read it from the
onController()callback of any script -
@ustk Thanks for your time on this :)
would think there was a way to set the receiving midi channel somewhere, either in script FX or the Interface. I will keep digging -
@Rognvald If your goal is just to draw the UI (aside of still using them in a scriptFX of course) then the interface callback is the way to go
-
function onController() { var cc = Message.getControllerNumber(); var val = Message.getControllerValue(); Console.print("CC: " + cc + " -> " + val); }HiseSnippet 763.3ocsU01aSCCD1tqAQi.DSvOfn8oN1Xqg0WYBXr1NnB5VEcLw2lbcbVrZpcThyfJDR7Sl+Av4jLRJ6EPUr7gpb28bme54m6xnPIkEEICQXyimGvP36YLdtP400ivEnA8P3GXLjDoXgVot1ed.IJh4fv3Udi1AtRYTxyOd09DehfxxcgPmH4T164y3pbui16cbe+CHNri4yJft9dCnRQWouLF3yJF0PAD5TxYrCIZXkLPukD4gvOwXhqayl0c631rwDGlcmIjFzVcnssotMbn6z1otcqV05zFguSeGtRFNVQTrHnn6KclO1S9YQ5AbBOhOwmoMrQigSN0MpqG22YzEMmHDBWdTdqZkzV0iMFxc3+1edK6gIArxynXSCW5lnjcQJU6loDt.kJmRoUMFSC4Ap7HZ97nLu4LxdAJkFEU56XitRghITaMiLkcPHXL.rCcITV0l0psoE7y5V6ZlnQ1xg4xB6R78m.2SQUUgwr020zzb6ssndL5TKkGyReiJTgReePCQy.6FKnJtT.QOTpXGIptt4WMqX9MSq+Ljq6UFKunogOm.UmZ8BqgvePPyr0YLUNlCimMQib2TfmS7uNjmP7iYI.Mq.dij9rsBB4BU005184VqYsg9X1.d4ouLwBpEfdQxo00g2DsqJRHzl5rgl1E.g6wEEGFWu3nndkldqU.nTLPvUGEvxrur7AkcUCu8wA8HJhVQk4CvEvBUbMEv8XmCyvo5qJF8XQSUx.XJ9RhOP1Kch8IpEmEzaIxB.8fEDdZwkHhqlWbKx+sAj+UJtpwHth5c0brzUvQnScavwr0J22nuqKipxIXYiC9zsyNDzGjwJt3rgDUH+KfdCFTFCqeoL3zEBluVChKoUKo10z15NvXlvIw3mvSVPasMNKn8EAQyHzP4ozTkudw0cS7.bRjrXuB7EFv1xFkLMTrOOC1idJktXotThOaYSbmkMw5KahMV1DatrI1ZYSr8eOQ8m4dcrRNKcrAgFNpexpDLtuf.JvD0J5W.EHiV4. -
@ustk I am sure when using rnbo in Script FX there is no midi output, only input.
I was just getting a loop from the midi cc's setup in the interface..Thanks again for all your help here :)
-
@Rognvald I didn't know it was about rnbo…
In this case you might be able to output several modulation out of rnbo but my knowledge in that matter stops hereOne thing I don't understand though, where is the original cc coming from, the outside world right?
Does your rnbo patch somehow modify the cc? -
@ustk I am testing whether rnbo in scriptFX can output midi to Hise to use for the UI display and modulation. At the moment Rnbo in Hise only allows one dedicated modulation output..
The patch above is Hise controller script sending cc messages to Rnbo Script FX, but then its being picked up by the Global Cable again, back to the Ui.