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

    Topics

    • J

      hard coded master effect not working all of the sudden

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      2
      0 Votes
      2 Posts
      43 Views
      J

      @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

    • J

      Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      19
      0 Votes
      19 Posts
      202 Views
      J

      @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);
    • J

      sample import demo project

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      74 Views
      rglidesR

      @jeffd haha I just saw this after replying. Ok good yep that's it

    • J

      the size limit for image files is still 50mb?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      128 Views
      d.healeyD

      @orange Copy the .dat files that you need directly to app data. https://docs.hise.audio/working-with-hise/settings/project.html#embed-image-files

      Also if you want to be certain the pooled files are up to date you can use Export >> Export Pooled Files to Binary Resource.

    • J

      plugin build not asking for sample library location anymore?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      45
      0 Votes
      45 Posts
      1k Views
      J

      @d-healey
      i always have another backup project on my pc,
      so i started over with that.
      so unfortunately, no idea of what was actually causing it.

    • J

      possible to change font and text color of the performanceLabel with LAF?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      129 Views
      J

      @d-healey
      ah thanks David.
      although i just realized i can totally do it from the property editor

    • J

      this instrument here is using the audio loop player?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      109 Views
      J

      @d-healey oh i had no idea

    • J

      thoughts on using max/msp RNBO vs Faust

      Watching Ignoring Scheduled Pinned Locked Moved General Questions faust
      12
      0 Votes
      12 Posts
      592 Views
      DabDabD

      I guess Kadenze also has a a Free Max Msp Course
      https://www.kadenze.com/courses/max-msp-programming-course-structuring-interactive-software-for-digital-arts/info?utm_campaign=course_card_share&utm_content=course_id%3D53&utm_medium=share&utm_source=kadenze

    • J

      has anyone tried using the pulse downloader for storage and delivering their sample based instruments /products?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      13
      0 Votes
      13 Posts
      509 Views
      d.healeyD

      @ustk Yeah it's really nice, Brian at Mntra put me onto it

    • J

      What is the process for getting the HISE Activate copy protection to work?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      81 Views
      No one has replied
    • J

      font size does not change in property editor for comboxbox?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      4
      0 Votes
      4 Posts
      135 Views
      J

      @jeffd
      drawing the whole box out is working nicely

    • J

      The intermediate directory (x64\Release\Shared Code\) contains files shared from another project

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      251 Views
      J

      @d-healey i had embed images selected in preferences

      but i didnt try this Engine.loadImageIntoPool();

    • J

      DSP Network sanity check failed ... Hash mismatch

      Watching Ignoring Scheduled Pinned Locked Moved Faust Development
      3
      0 Votes
      3 Posts
      187 Views
      LindonL

      @jeffd change the Faust or HISE and you MUST recompile your dll

    • J

      Sample maps do not load on windows version of hise after creating them on a mac version

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      11
      0 Votes
      11 Posts
      561 Views
      W

      @Lindon also in Mac need to be lower case .wav , I just load a whole drum kit and was named .WAV and didn't sound on the plug in, I read your comment on this post and I went and change the sound .wav just to see if it works in Mac and now I can play the sounds

    • J

      error C2148: total size of array must not e xceed 0x7fffffff bytes.

      Watching Ignoring Scheduled Pinned Locked Moved Faust Development
      31
      0 Votes
      31 Posts
      1k Views
      J

      @Christoph-Hart
      ok thanks!

      i got it working with a different delay type.

      but ill try this fix as well.

    • J

      how do i get the current name of a samplemap loaded using getCurrentSampleMapId()?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      119 Views
      J

      @Lindon said in how do i get the current name of a samplemap loaded using getCurrentSampleMapId()?:

      reg mySampler = Synth.getSampler("ThenameOfMySampler");

      Great thanks!

      was missing this
      reg mySampler = Synth.getSampler("Sampler1");

    • J

      Hearing a duplicate dry signal on delay effect as hardcoded master fx

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      93 Views
      No one has replied
    • J

      Arp not responding to velocity script

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      5
      0 Votes
      5 Posts
      203 Views
      d.healeyD

      @jeffd You can always make it invisible

    • J

      dspnetwork not compiled, sanity check failed

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      18
      0 Votes
      18 Posts
      891 Views
      J

      @HISEnberg
      got it

    • J

      compile error when tyring to compile a DLL on windows: error C1083:

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      173 Views
      J

      @jeffd
      ok everything is working now with this release of faust:

      Link Preview Image Release Faust version 2.60.3 · grame-cncm/faust

      Functional programming language for signal processing and sound synthesis - Release Faust version 2.60.3 · grame-cncm/faust

      favicon

      GitHub (github.com)

      the newest version doesnt seem to work when comiling a dll