HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. JamesC
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 12
    • Posts 55
    • Groups 0

    JamesC

    @JamesC

    5
    Reputation
    3
    Profile views
    55
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    JamesC Unfollow Follow

    Best posts made by JamesC

    • RE: Notarisation help please!

      It was that certificate that needed the permission change that was the block.

      Honestly thank you so much to all of youf or your help I'm going to put together a post later this week step by step on what I had to do to get it working just incase anyone does face the same issues and at least then it summarised in one central location

      posted in Newbie League
      J
      JamesC
    • RE: Automated exporter script for MacOS Help

      @DanH cheers for that the AI heavily judged me for not quite having the correct type of certificate and I was able so far to successfully sign the things!

      @d-healey thanks for your advice of doing it manually first so everythigns in place solid as always!

      posted in Newbie League
      J
      JamesC
    • RE: Issues with Sampler

      @JamesC @d-healey as predicted I missed a step, thanks so much for the videos that you have put out there, should have started with them!

      posted in Newbie League
      J
      JamesC

    Latest posts made by JamesC

    • RE: Sampler Plugin not installing samples

      @d-healey

      Yes that was the issue! Thanks for all the quick help!

      posted in General Questions
      J
      JamesC
    • RE: Sampler Plugin not installing samples

      @d-healey will run test and report back!

      posted in General Questions
      J
      JamesC
    • RE: Sampler Plugin not installing samples

      @d-healey yes I have it there as per hise activate instructions do I actually want it on 0 still or will it try and do both things at once?

      posted in General Questions
      J
      JamesC
    • RE: Sampler Plugin not installing samples

      @d-healey no so I'm guessing I've done something to upset it!

      posted in General Questions
      J
      JamesC
    • RE: Sampler Plugin not installing samples

      @d-healey hmm can't see anything that would resemble that...

      Screenshot 2025-09-26 at 14.51.35.png

      Both expansion and user presets are empty. For further clarity on my other projects I can see the link OSX file so its missing for sure

      posted in General Questions
      J
      JamesC
    • RE: Sampler Plugin not installing samples

      @d-healey thanks for this, where is that folder usually found did a quick google and had a gander at possible locations but I'm not seeing anything

      posted in General Questions
      J
      JamesC
    • Sampler Plugin not installing samples

      Afternoon

      Bit of an odd one, pervious plugins no issue with this at all so this is a new one for me to break.

      So plugin essentially 2 samplers. Plugin builds fine on windows and mac which is great. Now on all my previous plugins on first use it jumped straight to install samples or point to location. This has now stopped so all I have is a plugin with no samples loaded.

      Now that said it knows something is there as the sample maps are appearing in my dropdown box on the plugin but no audio files are being loaded at any point.

      Any ideas what could have gone wrong here?

      Cheers

      posted in General Questions
      J
      JamesC
    • RE: XY Pad Moving Knobs But Knobs Not Moving my dot. What Have I missed?

      @JamesC I like this a simple sensible solution I will definitely consider it!

      posted in Newbie League
      J
      JamesC
    • XY Pad Moving Knobs But Knobs Not Moving my dot. What Have I missed?

      Morning all

      I'm sure as always its something I've missed. I've set up this XY pad to control 2 simple Gains. Its looking as it should and the dot behaving on the panel as it should adn when the cursor moves the dots the knobs respond correctly and so do the simple gains.

      Now the knobs work and control the simple gains also But don't then force the dot to respond on the pad. If someone can have a look at the code here it would be most helpful. Thanks in advance

      ///XY Panel
      const var XYPadPnl = Content.getComponent("XYPadPnl");
      const var SimpleGain1 = Synth.getEffect("Simple Gain1");
      const var SimpleGain2 = Synth.getEffect("Simple Gain2");
      
      XYPadPnl.setControlCallback(onXYPadPnlControl);
      
      inline function onXYPadPnlControl(component, value)
      {
      	component.repaint();
      }
      ///Knobs
      const var knobs = []; 
      
      for (i = 0; i < 2; i++)
      {
          knobs[i] = Content.getComponent("Knob"+(i+1));
          knobs[i].setControlCallback(XYPad);
      }
      
      // Mouse CB
      XYPadPnl.setMouseCallback(function(event)
      {
          if (event.clicked || event.drag)
          {
              this.data.x = Math.range(event.x / this.getWidth(), 0, 1);
              this.data.y = Math.range(event.y / this.getHeight(), 0, 1);
              
              this.changed();
                     
              knobs[0].setValue(1*this.data.x);
              knobs[1].setValue(1-(1*this.data.y));
              knobs[0].changed();
              knobs[1].changed();
          }    
      });
      
      // Paint routine
      
      const SIZE = 10
      
      XYPadPnl.setPaintRoutine(function(g)
      {
         	var l = this.getLocalBounds(0);
          
          g.fillAll(this.get("bgColour"));
          
          var x = Math.range(this.data.x * this.getWidth(), 0, this.getWidth() - SIZE);
          var y = Math.range(this.data.y * this.getHeight(), 0, this.getHeight() - SIZE);
            
          //Draw Dot
          g.setColour(this.get("itemColour"));
          g.fillEllipse([x, y, SIZE, SIZE]);
      
      });
      
      inline function XYPad(component, value)
      { 
          local idx = knobs.indexOf(component);
         XYPadPnl.repaint();
      };
      
      inline function onKnob1Control(component, value)
      {
      	if(value)
      	   SimpleGain1.setAttribute(SimpleGain1.Gain,(1 - value)*-100);
      	    
      };
      Content.getComponent("Knob1").setControlCallback(onKnob1Control);
      
      
      posted in Newbie League
      J
      JamesC
    • RE: Notarisation help please!

      It was that certificate that needed the permission change that was the block.

      Honestly thank you so much to all of youf or your help I'm going to put together a post later this week step by step on what I had to do to get it working just incase anyone does face the same issues and at least then it summarised in one central location

      posted in Newbie League
      J
      JamesC