HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. ThinkTank
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 20
    • Posts 100
    • Groups 0

    Topics

    • ThinkTankT

      Exported vst3 for Windows, now macOS?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      31
      0 Votes
      31 Posts
      1k Views
      d.healeyD

      @aaronventure said in Exported vst3 for Windows, now macOS?:

      EVs don't automatically remove smart screen anymore as of last year, why even go for EV

      Tell me more?! As you can see in my screenshot above it claims it does.

      And wow that screenshot came out massive! I posted that from my phone.

      @aaronventure said in Exported vst3 for Windows, now macOS?:

      Also having only third party availability is kinda baffling.

      I'm sure Microsoft are getting a piece of the pie somewhere along the line.

    • ThinkTankT

      Sampler (if enabled)

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      15
      0 Votes
      15 Posts
      622 Views
      ThinkTankT

      @d-healey Thanks!

    • ThinkTankT

      Updating blur?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      442 Views
      ThinkTankT

      @Matt_SF

      I think there is about 12 knobs, and some other elements that is getting messed up.
      So, this seems easier.

    • ThinkTankT

      Getting ready for release

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      253 Views
      A

      @ThinkTank I mean you can allow them to, but the Steinberg VST3 spec specifies Common Files/VST3 as the default directory, and all DAWs scan that by default

      If the user uses a different folder, they first had to manually change that in DAW settings. I don't remember the last time a plugin asked me where I want to install VST3, it just did.

      For samples it makes sense to ask because they can be anywhere from 1 GB to 50GB. for a 30mb installer, it makes no sense. Apps often install much bigger payloads to appdata without even asking you about it.

      Link Preview Image JUCE: Tutorial: Package your app or plugin for distribution

      favicon

      (docs.juce.com)

    • ThinkTankT

      Im at a loss. vst3 is not working in FL Studio (Access Violation)

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      859 Views
      ThinkTankT

      @Lindon
      @oskarsh

      For some odd reason it worked to remove preset codes and browser, and then just undo and export again. I have no idea why. But im just happy it works.

      Thanks guys

    • ThinkTankT

      Parametric eq is not saved in Presets?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      307 Views
      ThinkTankT

      @bendurso said in Parametric eq is not saved in Presets?:

      const var ParametriqEQ1 = Synth.getEffect("Parametriq EQ1");
      Engine.addModuleStateToUserPreset("Parametriq EQ1");

      Thanks!

    • ThinkTankT

      How do i remove numbers and underscore

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      16
      0 Votes
      16 Posts
      684 Views
      CyberGenC

      @d-healey worked like a charm... Thank you!

    • ThinkTankT

      Index issue with Sample maps?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      454 Views
      ThinkTankT

      @d-healey

      I think i got it, thanks!

    • ThinkTankT

      Combobox to change background image of plugin

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      6
      0 Votes
      6 Posts
      396 Views
      Oli UllmannO

      @ThinkTank
      Great! Then have a nice day! :-)

    • ThinkTankT

      Combobox to two panel browser

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      254 Views
      ThinkTankT

      @d-healey

      Exactly what I'm looking for. Sweet plugin by the way.
      That seems pretty complicated. Its too early for me to program that. I would have to read the documentation 5 times :beaming_face_with_smiling_eyes:

    • ThinkTankT

      Simple gain knob

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      13
      0 Votes
      13 Posts
      575 Views
      StraticahS

      @d-healey ah got it i usually use the simple gain

    • ThinkTankT

      Sample Start and End control user interface

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      280 Views
      ThinkTankT

      @xxanx

      Thanks, seems to work!
      Saved me a ton of time.

    • ThinkTankT

      Hide preset browser when saving a preset.

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      13
      0 Votes
      13 Posts
      773 Views
      ThinkTankT

      @xxanx

      Figured it out.

      In case anyone else wants a preset browser that kinda works, with opening and closing (with preset overwrite prompt)
      heres my code:

      // SHOW AND HIDE PRESET BROWSER WITH BUTTON const var FloatingTile1 = Content.getComponent("FloatingTile1"); const var Button1 = Content.getComponent("Button1"); Button1.setControlCallback(Button1CB); inline function Button1CB(control, value) { FloatingTile1.showControl(value); }; // Timer for handling delay after saving a preset const var saveTimer = Engine.createTimerObject(); var saveTimerCounter = 0; saveTimer.setTimerCallback(function() { if (saveTimerCounter > 0) { saveTimerCounter--; if (saveTimerCounter == 0) { FloatingTile1.set("visible", false); Button1.setValue(false); saveTimer.stopTimer(); } } }); // Close Preset browser after save const var uph = Engine.createUserPresetHandler(); uph.setPostSaveCallback(function() { saveTimerCounter = 1; // Set the counter for a brief delay saveTimer.startTimer(5500); // 500 milliseconds delay }); // Logic for handling preset loading (remains unchanged) uph.setPostCallback(function() { FloatingTile1.set("visible", false); Button1.setValue(false); });
    • ThinkTankT

      Hise/Rhapsody license?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      299 Views
      ThinkTankT

      @d-healey
      Thanks for the explanation!

    • ThinkTankT

      How do i create a pitch knob, that does not sound bad?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      6
      0 Votes
      6 Posts
      421 Views
      ThinkTankT

      Nevermind, it was a sample issue.. Thanks anyways!