HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. RalfsPlucis
    3. Posts
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 4
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Filmstrip knob value display

      Worth mentioning that the TimeSync value that is displayed on a label would also have to change between ms and time signature values on "SynctoHost" button control.

      posted in General Questions
      R
      RalfsPlucis
    • RE: Filmstrip knob value display

      Thanks, @Christoph-Hart for your reply.

      As i mentioned before, I am new to all this. :) I managed to make it work, it now connects to the FX module and displays number values. But what if i would want to display TimeSync values, such as 1/4, 1/2, 1/8 etc? This is the code I ended up with:

      //
      const var room = Content.addKnob("room", 558, 58);
      
      // [/JSON room]
      Content.setPropertiesFromJSON("room", {
        "text": "RevRoom",
        "width": 56,
        "height": 57,
        "min": 0,
        "max": 1,
        "filmstripImage": "{PROJECT_FOLDER}SmallKnob128frames.png",
        "numStrips": "128"
      });
      // [/JSON room]
      
      const var Reverb = Synth.getEffect("Reverb 12");
      
      inline function onroomControl(component, value)
      {
      	local v = Engine.doubleToString(value, 2); 
      	Reverb.setAttribute(Reverb.RoomSize, value);
      	roomLabel.set("text", v);
      };
      
      room.setControlCallback(onroomControl);
      
      const var roomLabel = Content.addLabel("roomLabel", 28, 105);
      
      // [JSON roomLabel]
      Content.setPropertiesFromJSON("roomLabel", {
        "saveInPreset": false,
        "editable": false,
        "multiline": false
      });
      // [/JSON roomLabel]
      

      0_1525711560996_Screen Shot 2018-05-07 at 17.45.12.png

      posted in General Questions
      R
      RalfsPlucis
    • Filmstrip knob value display

      Hi all,

      I know this has been covered before, but I could not make any sense from previous posts. I am trying to pull out values from filmstrip knobs and display them on a label. However, it does not seem to connect. I tried to customise similar code posted before and adapt it to my needs. I would appreciate if someone could take a look and provide some guidance, as my coding skills are far from from good. :D Also, i would like to know how to display time values from delay speed (e.g. 1/4, 1/2 etc.). Please see below the code, and see if you could help with it. Much appreciated. :)

      // [/JSON Knob]
      const var ReverbRoomSize = Content.addKnob("ReverbRoomSize", 558, 58);
      // [JSON Knob]
      Content.setPropertiesFromJSON("ReverbRoomSize", {
        "text": "ReverbRoomSize",
        "width": 56,
        "height": 57,
        "min": 0, 
        "max": 1, 
        "stepSize": 0.01,
        "processorId": "Reverb 12",
        "parameterId": "RoomSize",
        "filmstripImage": "{PROJECT_FOLDER}SmallKnob128frames.png",
        "numStrips": "128"
      });
      // [/JSON Knob]
      
      inline function onReverbRoomSizeControl(component, value)
      {
      	Label.set("text", ReverbRoomSize.getValue());
      };
      ReverbRoomSize.setControlCallback(onReverbRoomSizeControl);
      
      const var Label = Content.addLabel("Label", 30, 50);
      // [JSON Label]
      Content.setPropertiesFromJSON("Label", {
        "editable": false,
        "saveInPreset": false
      });
      // [/JSON Label]
      
      posted in General Questions
      R
      RalfsPlucis
    • RE: Dynamics Module

      Hi there. I can't seem to figure out how to open the dynamics FX from repository folder. I apologise for asking, but could anyone please explain to me how to get it working? Kind regards.

      posted in Scripting
      R
      RalfsPlucis