Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Bart
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 9
    • Groups 0

    Bart

    @Bart

    1
    Reputation
    2
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Bart Unfollow Follow

    Best posts made by Bart

    • RE: DAW <> Plugin sync scaling

      @David-Healey

      Awesome! Thanks for your input David!

      Really appreciate your video tutorials also.. I would have likely never attempted plugin dev scripting otherwise, great work ;)

      Hise for the WIN

      posted in General Questions
      B
      Bart

    Latest posts made by Bart

    • RE: DAW <> Plugin sync scaling

      @David-Healey

      Awesome! Thanks for your input David!

      Really appreciate your video tutorials also.. I would have likely never attempted plugin dev scripting otherwise, great work ;)

      Hise for the WIN

      posted in General Questions
      B
      Bart
    • RE: DAW <> Plugin sync scaling

      @David-Healey

      I don't believe there is away to get the scaling factor of the daw.

      Assuming it's neither possible to get the OS scaling factor?

      posted in General Questions
      B
      Bart
    • RE: DAW <> Plugin sync scaling

      @David-Healey

      Basically a list of what definitions exist and what they do..

      posted in General Questions
      B
      Bart
    • RE: DAW <> Plugin sync scaling

      @David-Healey Oh lol, brilliant thanks!

      One last thing, is there a source of information about setting Extra Definitions?
      I'm probably searching in the wrong places, apologies.

      posted in General Questions
      B
      Bart
    • RE: DAW <> Plugin sync scaling

      @David-Healey Ok thanks.

      Do you know if its possible to detect a screens resolution, to implement a full screen toggle option?

      posted in General Questions
      B
      Bart
    • DAW <> Plugin sync scaling

      Need a plugin to scale to FL Studios scale factor, but the following doesn't work, it only displays a factor of 1.0.

      Content.makeFrontInterface(480, 240);
      
      const var lbl = Content.addLabel("lbl", 0, 0);
      
      // Detect host scale
      var hostScale = Settings.getZoomLevel(); 
      lbl.set("text", hostScale);
      
      // Apply scale to UI
      Settings.setZoomLevel(hostScale);
      

      Extra Definitions Windows:
      HI_VIEW_IS_DPI_AWARE=1
      JUCE_WIN_PER_MONITOR_DPI_AWARE=1

      Toggling FL Studios DPI Aware setting doesn't help

      Maybe Settings.getZoomLevel(); gets the plugin scaling, not the DAW?

      posted in General Questions
      B
      Bart
    • RE: Midi Player disabled for Midi FX plugins

      @HISEnberg Ok thanks. I wasn't convinced (still skeptical) that was the issue. Would have thought the built in MIDI Player would at least display playback regardless of VST MIDI compatibility, but considering Hise is intimately tied with Juce I guess that may explain it.

      I'm preferring the VST3i setup using a separate MIDI Out container ;)

      posted in General Questions
      B
      Bart
    • RE: Midi Player disabled for Midi FX plugins

      Thanks for your input yall, but i'm not sure these explain why the built in Midi Player ceases to play.

      @ulrik I actually found a post from you not long after, about using Midi Out in a container below.
      This is great and preferred as an instrument plugin. I think this will get me out of the mud for now ;)

      posted in General Questions
      B
      Bart
    • Midi Player disabled for Midi FX plugins

      After a weekend of attempting to sync DAW playback - I've learned the Midi Player playback seems to be disabled when compiling Midi FX plugins - also for the Hise App itself compiled as Midi FX vst3.

      The Midi Player works as expected when compiling Instrument plugins.

      Is it meant to be disabled for Midi FX plugins?

      Tested with FL Studio.

      posted in General Questions
      B
      Bart