• How to Clear All Child Panels from a Panel?

    Solved
    4
    0 Votes
    4 Posts
    182 Views
    C

    @Dan-Korneff Thank you Dan - clever.

  • Keyboard LAF Conundrums

    5
    0 Votes
    5 Posts
    251 Views
    C

    @d-healey I appreciate it, man. Unfortunately, this creates keys of different widths - the 0.7 width is hardcoded into HISE (and I believe comes from JUCE). Thank, though.

  • Passwort Protection "Enter E-Mail"

    41
    0 Votes
    41 Posts
    3k Views
    T

    @d-healey ok this sounds to difficult for me :D

  • Need help, displaying selected waveform inside FloatingTile

    Solved
    7
    0 Votes
    7 Posts
    231 Views
    M

    Index 1 & Index 0, that solved. Thank you, it's amazing how simple it was and how much time I've wasted. Thank you for getting me to the next step.

    { "ProcessorId": "Waveform Generator1", "Index": 1, "FollowWorkspace": false }
  • Help with displaying knob value in a label

    Solved
    18
    0 Votes
    18 Posts
    894 Views
    d.healeyD

    @Mighty23 said in Help with displaying knob value in a label:

    We can mark it as "Solved"

    Click this button and select Ask a question. Then click it again and select solved.

    6c38e55d-e93d-496e-bdf9-5cc05e67218d-image.png

  • 0 Votes
    2 Posts
    263 Views
    P

    I've made some progress:

    I've selected "Enable Midi Out" in the Project Settings, and found in the documentation that

    Message.sendToMidiOut()

    needs to be called on the message itself:

    This will forward the message to the MIDI out of the plugin.

    I understand that Message methods may only be called within a MIDI callback.
    I'm not sure where this might be, or how to access a Message when I'm currently only working with MessageHolder.

    My assumption is, that somehow calling Message.sendToMidiOut() on each Message in the MessageHolder list will produce MIDI output in the exported MIDI FX plugin, and hopefully also while scripting in the IDE during the development process.

    I have an overall understanding of the subtle differences between MIDI FX plugins and VST3, VST2, etc., and how they are expected to perform in the different hosts/OSs, based on various reports I've read both here and in the JUCE forums.

    My goal for now is to get some kind of MIDI output working, using any of these paths forward.

  • Sustain Pedal Question

    15
    0 Votes
    15 Posts
    948 Views
    d.healeyD

    @ATWAW said in Sustain Pedal Question:

    What function would I use to turn on a sustain pedal via a button on the interface,

    If you're only using the sustain pedal for standard sustain pedal sustaining, then you just need to send a CC64 message.

    In the button's callback you could use.

    Synth.sendController(64, component.getValue() == 0 ? 1 : 80);

  • setAttribute() from array string problem.

    6
    0 Votes
    6 Posts
    345 Views
    CyberGenC

    @d-healey I see. I'll try to adapt your way to my project. Thank you.

  • How do i remove numbers and underscore

    16
    0 Votes
    16 Posts
    763 Views
    CyberGenC

    @d-healey worked like a charm... Thank you!

  • How Do You Assign a Modulator?

    Solved
    7
    0 Votes
    7 Posts
    228 Views
    C

    @d-healey Yes - THANK YOU!

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • DrawWavetablePath - without additional waterfall lines.

    Unsolved
    1
    0 Votes
    1 Posts
    166 Views
    No one has replied
  • Blocking All notes, and Letting only 2 notes go in?

    4
    0 Votes
    4 Posts
    263 Views
    NatanN

    @Lindon 🙏 Cheers to you mate

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    15 Views
    No one has replied
  • Linking 2 Sets Of Buttons Inside a Loop?

    3
    0 Votes
    3 Posts
    238 Views
    NatanN

    @d-healey Thank you so much Fine Sir :folded_hands:

  • 0 Votes
    4 Posts
    176 Views
    A

    @Christoph-Hart Right, the issue is with creating the directories in the Application Support folder. Permissions thing?

    Because Packages can't install to users' folder. Hopefully the MPC won't have that issue. Or the one where it can't create directories in global appdata

  • Finding the Processor Type of a (Module Tree) Processor?

    Unsolved
    7
    0 Votes
    7 Posts
    259 Views
    LindonL

    @d-healey said in Finding the Processor Type of a (Module Tree) Processor?:

    @clevername27 could you distinguish them by variable name?

    or use two array one of fx one of all audio processors and use indexOf....

  • 0 Votes
    4 Posts
    312 Views
    A

    @d-healey Ahhhhh such a simple solution, thank you!

  • 0 Votes
    5 Posts
    539 Views
    trillbillyT

    @Lindon said in User Specified Sample Folder per Sampler?:

    FileSystem.browseForDirectory(var startFolder, var callback)

    Yes, thank you. I have added this to the SampleLoadSave.js of the CustomSampleImport project. On Right Click, it opens the directory browser twice. I can select a folder but it does not load the samples in the folder or randomize the folder.

    SampleDropper.setMouseCallback(function(event) { // Clear the sample on double click if(event.doubleClick) { Sampler1.clearSampleMap(); return; } this.data.hover = event.hover; // Show a directory browser on right click if(event.rightClick) { FileSystem.browseForDirectory(FileSystem.Samples, loadSample); return; this.repaint(); } });

    Here is how I am randomizing some components in case I need something here. I know there is a way to reduce the script, I just don't know it.

    const sampleMapsRAN = Sampler.getSampleMapList(); inline function onShuffleSamplebtn1Control(component, value) { if (value) { local index = Math.randInt(0, sampleMapsRAN.length); local sampleMap = sampleMapsRAN[index]; Sampler1.loadSampleMap(sampleMap); SampleViewer1.setValue(index); SampleName1.setValue(list[index]); } }; Content.getComponent("ShuffleSamplebtn1").setControlCallback(onShuffleSamplebtn1Control);

    Thanks again.

  • Broadcaster & CurveEQ Dropdown

    7
    0 Votes
    7 Posts
    418 Views
    ?

    @iamlamprey Okay there's already a method for it:

    const bc = Engine.createBroadcaster({"component" : "myCoolFloatingTile", "event" : "All Callbacks"}); bc.attachToEqEvents("bc", ["BandAdded", "BandRemoved", "BandSelected"], {"id" : bc}); bc.addListener("", "update something", function(component, value) { Console.print("you just changed an EQ property!"); });

14

Online

1.9k

Users

12.5k

Topics

108.7k

Posts