HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Tags
    3. default
    Log in to post
    • All categories
    • d.healeyD

      Button default value should be used in broadcaster

      Watching Ignoring Scheduled Pinned Locked Moved Scripting button broadcaster default
      3
      1 Votes
      3 Posts
      67 Views
      d.healeyD

      @Christoph-Hart said in Button default value should be used in broadcaster:

      It's used for AAX plugins

      Aha that's good to know

    • d.healeyD

      How to programmatically change table viewport component values?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting table viewport component default value
      8
      1 Votes
      8 Posts
      187 Views
      d.healeyD

      @d-healey said in How to programmatically change table viewport component values?:

      Any way to have the buttons off by default

      This is possible when setting the table row data

      local listData = []; for (x in data) { local obj = { CheckButton: 0, // Here I can set the button state Name: x.name }; listData.push(obj); } viewport.setTableRowData(listData);