HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. cassettedeath
    3. Posts
    • Profile
    • Following 1
    • Followers 0
    • Topics 19
    • Posts 81
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Convolution Reverb || Reverbs dont in DAW...

      @Chazrox Yeah, my audio files are about 6mb and 25mb for images… So I’m not quite sure why they’re not embedding in the plug-in.

      Could be related

      posted in Scripting
      cassettedeathC
      cassettedeath
    • RE: Convolution Reverb || Reverbs dont in DAW...

      @Chazrox Having the same issue. Finding it super hard to build the installer for the audio resources.

      Have you tried moving the audio resource in the pooled resources to the app data folder?

      posted in Scripting
      cassettedeathC
      cassettedeath
    • RE: Install/choose sample window wont close

      @d-healey Do the resource and the post install script need to be code signed? And both pkg?

      posted in General Questions
      cassettedeathC
      cassettedeath
    • RE: Install/choose sample window wont close

      @d-healey cool! Thanks heaps!

      posted in General Questions
      cassettedeathC
      cassettedeath
    • RE: Install/choose sample window wont close

      @d-healey Yeah XD

      Question: if the audio resources are over the 50mb and you don’t embed audio files - I’m assuming you need to change the pkg installer so that it installs the resources to the app data folder?

      Or does the hr1 also install them?

      posted in General Questions
      cassettedeathC
      cassettedeath
    • RE: Install/choose sample window wont close

      @d-healey Okay, it’s working now - creating the app data folder and link file… And that’s without the global app data checkbox enabled…

      posted in General Questions
      cassettedeathC
      cassettedeath
    • RE: Install/choose sample window wont close

      @d-healey yeah I have tried it.

      I could try recompile without and test on another computer and recompile with on another computer… being careful cleaning the build folder maybe?

      posted in General Questions
      cassettedeathC
      cassettedeath
    • RE: Install/choose sample window wont close

      @d-healey I checked and nothing was created for the project.

      I had the global app data checkbox checked (and tried unchecked)

      posted in General Questions
      cassettedeathC
      cassettedeath
    • RE: Install/choose sample window wont close

      @d-healey [Here's the video] (https://youtu.be/UikC9U2iAA4)

      • Have tried deleting the samples/installing from scratch
      • Have tried force overwriting
      • Have tried choosing the samples too
      posted in General Questions
      cassettedeathC
      cassettedeath
    • Install/choose sample window wont close

      After successfully installing the hr1, I close and open a new instance of the plug in and the window appears again.

      I've checked the version number and bundle identifier.

      Even choosing the uncompressed audio files doesn't get rid of the window.

      Any thoughts?

      posted in General Questions
      cassettedeathC
      cassettedeath
    • RE: NKS Wrapper

      @Christoph-Hart Awesome,
      Primarily interested in the accessibility side, but a little confused about delivering future expansions and whether or not I need to send expansions to NI for approval... - or if it's just the initial functionality/integration...

      posted in Documentation
      cassettedeathC
      cassettedeath
    • RE: NKS Wrapper

      @Christoph-Hart said in NKS Wrapper:

      hise2sdk repository

      Ah! Sweet, will email them

      posted in Documentation
      cassettedeathC
      cassettedeath
    • NKS Wrapper

      Is there any documentation on how to use the Engine.createNKSManager(); API?

      Or does anyone know how to enable NKS support after getting access to the SDK?

      I'm rebuilding HISE with HISE_INCLUDE_NKS_SDK=1

      posted in Documentation
      cassettedeathC
      cassettedeath
    • RE: Tooltips for preset browser icons

      @d-healey Thank you! :)

      posted in Presets / Scripts / Ideas
      cassettedeathC
      cassettedeath
    • RE: Tooltips for preset browser icons

      @d-healey Just for consistency really... The add expansions icon isn't the most intuitive, and I would rather have all and not some :D

      posted in Presets / Scripts / Ideas
      cassettedeathC
      cassettedeath
    • Tooltips for preset browser icons

      Is there a way to set the tooltip info for preset browser icons like favourite / save etc?

      posted in Presets / Scripts / Ideas
      cassettedeathC
      cassettedeath
    • RE: Random Presets

      @cassettedeath Scratch that

      Incase anyone encounters the same issue I did, I used

      var  myPresetList = Engine.getUserPresetList();
      const var RandomPreset = Content.getComponent("RandomPreset");
      
      inline function onRandomPresetControl(component, value)
      {
          if(value)
          {
              // Get the current list of presets from disk
              local presets = Engine.getUserPresetList();
              
              if(presets.length > 0)
              {
                  // Pick a random index
                  local index = Math.floor(Math.random() * presets.length);
                  
                  // Load it by name with the .preset extension
                  Engine.loadUserPreset(presets[index] + ".preset");
              }
              else
              {
                  Console.print("No user presets available.");
              }
          }
      }
      
      RandomPreset.setControlCallback(onRandomPresetControl);
      
      posted in General Questions
      cassettedeathC
      cassettedeath
    • RE: Random Presets

      @d-healey Seemingly working for me, although it’s trying to load old presets that I’ve deleted and showing an error.

      Doesn’t seem to be a refresh or clear function…

      Do you know which file I might be able to delete to clear the preset list?

      I’ve tried cleaning the build directory

      posted in General Questions
      cassettedeathC
      cassettedeath