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

    Bart

    @Bart

    2
    Reputation
    2
    Profile views
    14
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Bart Unfollow Follow

    Best posts made by Bart

    • RE: Download Hise Doc's without losing auto generated content

      @dannytaurus

      Thanks Danny. I'm wanting the docs as an added folder to the workspace in VS Code, so I don't have to jump out of the IDE every time to look something up. Also for searching keywords throughout the documentation. The Hise Docs search bar appears to only show functions containing the keyword.

      posted in General Questions
      B
      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: Download Hise Doc's without losing auto generated content

      @David-Healey

      Good idea. I've tried the Create local HTML offline docs, but I don't understand the 3 options for it.

      Base URL option left empty

      Markdown Repository set to hise_documentation folder that was downloaded from github

      Target Directory set to a new folder on the desktop

      Ends up with error - Your header file doesn't contain the {BASE_URL} wildcard

      But the header file in the template folder within the hise_documentation folder does appear to already have the {BASE_URL} wildcard

      Screenshot (226).png

      posted in General Questions
      B
      Bart
    • RE: Download Hise Doc's without losing auto generated content

      @dannytaurus

      Thanks Danny. I'm wanting the docs as an added folder to the workspace in VS Code, so I don't have to jump out of the IDE every time to look something up. Also for searching keywords throughout the documentation. The Hise Docs search bar appears to only show functions containing the keyword.

      posted in General Questions
      B
      Bart
    • RE: Download Hise Doc's without losing auto generated content

      @David-Healey

      I've tried cloning the repo in git bash with:

      git clone https://github.com/christophhart/hise_documentation.git

      Yet exploring the files in VS Code the auto generated content / functions remain empty..

      posted in General Questions
      B
      Bart
    • Download Hise Doc's without losing auto generated content

      Is there a way to download the Hise Doc's in markdown format that retains the auto generated content?

      To be used within an IDE.

      posted in General Questions
      B
      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