HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. jeffd
    3. Posts
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 25
    • Posts 167
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Is it possible to compress file size when packing the sample monolith files to HLAC?

      @Lindon
      ok thats what i was figuring, i also tried zipping up the archive and it was the same.

      thanks for the input

      posted in General Questions
      J
      jeffd
    • RE: Is it possible to compress file size when packing the sample monolith files to HLAC?

      @jeffd or maybe i am referring to the hr archive.

      im not sure what the difference is. the file that is created after exporting the sample monoloth files to an hr archive.

      posted in General Questions
      J
      jeffd
    • RE: Is it possible to compress file size when packing the sample monolith files to HLAC?

      @jeffd
      maybe a better question is..
      is it possible to compress the hlac file so as to have a smaller file size for the user to download with the installer?

      posted in General Questions
      J
      jeffd
    • Is it possible to compress file size when packing the sample monolith files to HLAC?

      Is it possible to compress file size when packing the sample monolith files to HLAC?

      I am not seeing much of a difference in size compared to the monolith files.

      posted in General Questions
      J
      jeffd
    • RE: hard coded master effect not working all of the sudden

      @jeffd
      ok i figured it out, for some reason my send effect wasnt connected to my send container.
      no idea how that happened.

      but works again

      posted in ScriptNode
      J
      jeffd
    • hard coded master effect not working all of the sudden

      For what reason would a hard coded master effect just stop working upon opening hise again? Delay effect was made in faust. I have not updated anything. was working great, and now im getting nothing.

      posted in ScriptNode
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey i couldnt get it to.

      This is how ive gotten it to work
      probably a much better way to code this but maybe this can help someone:

       // delay temposync
       
       	const var HardcodedMasterFX3 = Synth.getEffect("HardcodedMasterFX3");
          const var KnobDelayTime = Content.getComponent("KnobDelayTime");
          
          const var btnDelaysynch = Content.getComponent("btnDelaysynch");
          
          const var KnobDelayTime1 = Content.getComponent("KnobDelayTime1");
          
          
          inline function onKnobDelayTime1Control(component, value)
          {
          	HardcodedMasterFX3.setAttribute(0, value);
          };
          
          Content.getComponent("KnobDelayTime1").setControlCallback(onKnobDelayTime1Control);
          
          
       	inline function onKnobDelayTimeControl(component, value)
       	{
       	    HardcodedMasterFX3.setAttribute(1, value);
       	    
       	};
       	    
       	Content.getComponent("KnobDelayTime").setControlCallback(onKnobDelayTimeControl);
       
       
       	inline function onbtnDelaysynchControl(component, value)
       	{
       	    HardcodedMasterFX3.setAttribute(2, value);
       	    
       	    if (value)
       	    {
      	 	    KnobDelayTime1.showControl(false);
      	 	    KnobDelayTime.showControl(true);
       	    }
       	    
       	    else
       	    {
      	 	    KnobDelayTime1.showControl(true);
      	 	    KnobDelayTime.showControl(false);
      	 	     	    
       	    } 	    
      	};
       
       	Content.getComponent("btnDelaysynch").setControlCallback(onbtnDelaysynchControl);
       
      
      posted in Scripting
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey the parameter id for my hardcoded master effect

      0 is the timefree delay, and 1 is the timesync delay.

      i got everything to work this way
      but i couldnt get it to work using the string name

      posted in Scripting
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey hmmm
      not working at all now.

      this works for my knob that is time synced

      Content.getComponent("KnobDelayTime").setControlCallback(onKnobDelayTimeControl);
          
       	inline function onKnobDelayTimeControl(component, value)
       	{
       	    HardcodedMasterFX3.setAttribute(1, value);
       	    //Console.print(value);
       	};
       	    
       	Content.getComponent("KnobDelayTime").setControlCallback(onKnobDelayTimeControl);
       
      

      but now the free knob is not responding at all

      posted in Scripting
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey

      this doesnt work?

      HardcodedMasterFX3.TimeFree.setAttribute(value);
      
      posted in Scripting
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @Chazrox ah!!!

      thanks!! working now..
      ill keep going

      posted in Scripting
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey

      ok..i see the parameter dump
      my delay paramter that is free in miliseconds is listed as parameter 0..so i tried this:

      const var KnobDelayTime1 = Content.getComponent("KnobDelayTime1");
          
          inline function onknobDelayTime1Control(component, value)
          {
          	HardcodedMasterFX3.setAttribute(0, value);    	
          };
          
          Content.getComponent("KnobDelayTime1").setControlCallback(onKnobDelayTime1Control);
      

      but this doesnt work
      what am i missing?

      or do i need to use the string name?
      [0]: "TimeFree"

      posted in Scripting
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey ok thats what i was thinking.

      how do i find the parameter id for a hardcoded master effect for scripting?
      this is part of the problem i am having.

      or i should add, how do i find the different parameter ids for a particular hardcoded master effect.
      i can get the script definition, but each parameter id is a knob i created in script node.
      are they just identified as in an Array and numbered 0 to however many ?

      posted in Scripting
      J
      jeffd
    • Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      I have a button that is already connected to a ProcessorID but i would also like to create a customcallback function for that same button so as to show/hide another knob?
      This is a temposync button for a delay, and i would like to get that to also show/hide the controls for one knob with delay sync times, and the other is in miliseconds.

      when i try to do this, the button doesnt show or hide the controls...nothing happens.

      i see another thread similiar to this but i think im asking something a little bit different.

      posted in Scripting
      J
      jeffd
    • RE: sample import demo project

      @rglides oh i just saw what i missed now

      i missed these folders OldStyleUIData and CustomImportUIData

      working now

      posted in General Questions
      J
      jeffd
    • RE: sample import demo project

      @rglides i thought i did. lol
      but thats what i must be missing somehow

      posted in General Questions
      J
      jeffd
    • sample import demo project

      I was tyring to see if i could get this demo project to work.

      Link Preview Image
      hise_tutorial/CustomSampleImport at master · christophhart/hise_tutorial

      The Tutorial project for HISE. Contribute to christophhart/hise_tutorial development by creating an account on GitHub.

      favicon

      GitHub (github.com)

      but i am getting these errors:
      CustomImport:! Component with name EditLoop wasn't found.
      CustomImport:! Component with name EditRange wasn't found.
      CustomImport:! Component with name ShowDropper wasn't found.
      CustomImport:! Component with name AudioWaveform1 wasn't found.
      CustomImport:! Component with name SampleDropper wasn't found.
      CustomImport:! Component with name LoopPanel wasn't found.
      CustomImport:! Component with name Reverse wasn't found.

      I havent ever tried a demo project before,
      so maybe something stupid and obvious im missing here?

      posted in General Questions
      J
      jeffd
    • RE: the size limit for image files is still 50mb?

      @clevername27
      yes, i meant for all my images and filmstrips etc.
      not just one image.

      posted in General Questions
      J
      jeffd
    • RE: the size limit for image files is still 50mb?

      @d-healey right it was the compiler

      posted in General Questions
      J
      jeffd
    • the size limit for image files is still 50mb?

      I remember asking about this before,
      but I wanted to make sure again
      that the size limit for image files is still 50mb?

      posted in General Questions
      J
      jeffd