HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. mjc123
    3. Topics
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 7
    • Groups 0

    Topics

    • M

      Knob that controls step modulator in increments of 1, 2 ,4 ,8 ,16, 32?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      37 Views
      ustkU

      @mjc123 as Dave said, or if the mathematical relation is always 2^n−1, then

      local step = Math.pow(2, value-1);
    • M

      Can't drag knobs in presentation mode?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      26 Views
      M

      @d-healey thank you!

    • M

      Hide table perimeter lines?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      5
      0 Votes
      5 Posts
      67 Views
      ustkU

      @mjc123 or just do this:

      laf.registerFunction("drawTablePath", function(g, obj) { var thickness = 5.0; var area = Rectangle(obj.area).expanded(thickness/2.0); // make the drawing area slightly larger g.setColour(obj.bgColour); g.drawPath(obj.path, area, thickness); });