• Crash when opening 0 byte size xml samplemap

    3
    0 Votes
    3 Posts
    943 Views
    E

    windows, yes.

    used the sampler and the open button

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    7 Views
    No one has replied
  • Setting label text not working

    2
    0 Votes
    2 Posts
    645 Views
    Christoph HartC

    Yeah, I see. The label is a bit schizophrenic because the text property is actually the same thing as when you call setValue() and something messed this up.

    You can definitely solve this by setting saveInPreset to false, so for static labels this might work. But I'll check what's up there.

  • Two logins

    2
    0 Votes
    2 Posts
    631 Views
    Christoph HartC

    Can you check again, there was another issue with the forum a few hours ago so I had to restart the servers.

  • 16 Outs Version Crashes if more than 2 outs are connected

    3
    0 Votes
    3 Posts
    721 Views
  • Stereo Fx crashes

    2
    0 Votes
    2 Posts
    580 Views
    Christoph HartC

    Thanks I'll take a look. BTW unless you need seperate panning for each voice, you don't need the Stereo FX as the Simple Gain also has pan control.

  • 0 Votes
    3 Posts
    968 Views
    A

    Hi Christoph,
    thank you for the reply. I will have look at HISE project system to be sure where to put samples in order to be portable to another computer. Also sample maps need more studying on my side.

    Redirect Sample Folder seems interesting, thank you. On Mac I sometimes place sample libraries on different hard drive and then create filesystem link. Being able to do that from sampler is very comfortable.

    I discovered HISE several days ago and it has impressive set of features while being easy to use for common scenarios. I especially appreciate mapping samples automatically by file name and round robins are breeze. Thank you for this nice piece of software!

  • samplemaps not shown in file browser

    3
    0 Votes
    3 Posts
    879 Views
    Christoph HartC

    Fixed. You can drag them now like samples. Also, space opens a preview for scripts and images (not actually related but I had a FileBrowser do-over urge :)

  • CRASH: cannot use multimic features / fx / routing

    10
    0 Votes
    10 Posts
    2k Views
    Christoph HartC

    This is fixed - it doesn't crash but shows a error while merging if you try to merge more than 8 stereo channels

  • 0 Votes
    3 Posts
    954 Views
    Christoph HartC

    All right this is fixed (along with some other minor improvements of this dialog)

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • cannot set RR group with File Name Token Parser

    3
    0 Votes
    3 Posts
    895 Views
    Christoph HartC

    hmm, actually it should increase the RR group amount automatically when you import new samples with more RR groups than currently existing.

  • infinite hang after compiling example 6-state button script

    4
    0 Votes
    4 Posts
    930 Views
    Christoph HartC

    Just checked it on the recent version, nothing is hanging here (I noticed it spends some time in a few regex functions in Debug mode to catch the factory UI method, but it's blazingly fast in Release Mode.

  • SliderPack default value is not used

    3
    0 Votes
    3 Posts
    831 Views
    E

    yes

    disable your post character min limit plz

  • SliderPack values are not initialized after compile

    6
    0 Votes
    6 Posts
    1k Views
    E

    SliderPack is the gui, ArpManager is the midi handler. I don't want to combine the two.

    Edit: Can I build my sliderpack value array on init?

    Edit: The reason for the separation is so that you can arbitrarily decide what step has what values. If I have a sliderpack directly connected to that then it becomes inflexible, unportable, unscalable.

  • "Show in Finder" on windows

    2
    0 Votes
    2 Posts
    544 Views
    Christoph HartC

    I think I am handling this correctly in the main file menu but this tiny popup slipped through the cracks somehow. Not much cross platform, will be fixed.

  • Cannot get SliderPack value using getSliderValueAt

    8
    0 Votes
    8 Posts
    1k Views
    d.healeyD

    I think that you can get the value using the index, just not in the onInit callback

  • This topic is deleted!

    3
    0 Votes
    3 Posts
    2 Views
    No one has replied
  • Difficult to see debug text

    2
    0 Votes
    2 Posts
    414 Views
    Christoph HartC

    Yeah, that's right. I'll change that.

  • Interface sizing

    10
    0 Votes
    10 Posts
    2k Views
    Christoph HartC

    Well the beauty of code based UIs are that you can do stuff like this with loops (and I would really refrain from autogenerating Javascript code that creates 512 buttons manually).

    Take a look at this quick example:

    Content.makeFrontInterface(400, 300); const var buttons = []; var x = 0; var y = 0; const var Panel = Content.addPanel("Panel", 10, 10);// [JSON Panel] Content.setPropertiesFromJSON("Panel", { "width": 510, "height": 255 }); // [/JSON Panel] for(i = 0; i < 64; i++) { x = parseInt(i % 8); y = parseInt(i / 8) * 32; buttons.insert(-1, Content.addButton("button"+i, x * 64, y )); buttons[i].set("width", 60); buttons[i].set("text", x+1); buttons[i].set("parentComponent", "Panel"); }

    The panel acts as parent component, so the positions of the buttons are set relatively to the Panel. You can select the panel and move it around and the buttons should follow (make sure you select the panel by rightclicking and choose "Select Component to Edit -> Panel"

    If you planning to build sequencers or any kind of matrix (which your power of two number suggests), this is really the recommended way.

47

Online

1.6k

Users

11.1k

Topics

96.9k

Posts