HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Mwins
    3. Topics
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 12
    • Posts 63
    • Groups 0

    Topics

    • M

      How to ensure MIDI Overlay Panels Load on Exported Plugin?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      24
      0 Votes
      24 Posts
      688 Views
      ustkU

      @ILIAM Then you should first learn to get a list of your midi files, load them in a combobox, then use the combobox to load the sequences in the player.
      Here's a good place to start https://docs.hise.dev/hise-modules/midi-processors/list/midiplayer.html

    • M

      Initialization of MIDI Player (Floating Tiles in Exported Plugin) + MIDI ticks timing issue

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      156 Views
      No one has replied
    • M

      Delay Effect Produces Static In Compiled FX Plugin. Need Help!

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      11
      0 Votes
      11 Posts
      1k Views
      Adam_GA

      @Soundavid this works incredibly well, thanks for sharing

    • M

      Drag and Drop MIDI (Develop Branch)

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      22
      0 Votes
      22 Posts
      3k Views
      DimitrisSPD

      @Mwins Here in my system it happens even if i use only one midi overlay...i think something is going on with the source code of midi overlay.

    • M

      Drag and Drop MIDI to DAW... Is this possible?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      17
      0 Votes
      17 Posts
      1k Views
      M

      @iamlamprey I saw that post. Nice! That trick works in certain DAWs but it still doesn't work in Logic, Studio One or Reason. I got it to work on a windows version of FL studio. It wont work on the mac version...

      Thanks though... Still Progress!

    • M

      Trying to remove the text {PROJECT_FOLDER} from getMidiFileList

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      379 Views
      M

      @d-healey, Thanks D, I looked into that but couldn't quite get it to work but it lead me to some other string functions such as replace which ended up being exactly what I was looking for. For anybody looking for an answer to this thread, I ended up using

      const var oldstr = "{PROJECT_FOLDER}"; const var newstr = ""; .replace(oldstr, newstr)
    • M

      Audio Loop Player Sync Mode Not Working?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      14
      0 Votes
      14 Posts
      1k Views
      d.healeyD

      @Christoph-Hart I've solved the first issue and added 8, 12, and 16 bar options. I'll make a pull request later.

      For the second issue it seems there isn't a TempoListener in the AudioLooper class. I tried adding getMainController()->addTempoListener(this); but I get an instant crash when adding a loop player. Any suggestions?

      Here's a scripted workaround:

      const alp = Synth.getChildSynth("audioLoopPlayer0"); const th = Engine.createTransportHandler(); th.setOnTempoChange(false, function(x) { var syncMode = alp.getAttribute(alp.SyncMode); alp.setAttribute(alp.SyncMode, syncMode); });
    • M

      Help getting EQ + Draggable Filter Panel to Save Values

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      793 Views
      M

      @DanH Big thanks my friend... saved the day! That worked.

    • M

      Creating a MIDI sequence browser/selector for MIDI Player

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      19
      1 Votes
      19 Posts
      2k Views
      Y

      @ulrik I didn't pay attention to 2. but the one I use is simply called the midi player in the midi part of the containers. the one where there is the drag n drop, choice of sequence, play stop rec.

    • M

      Where is the Latest and Working Hise Scriptnode/Sorce Code Please?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      815 Views
      M

      @Lindon Thanks Lindon. You are correct and I was able to find a post that helped me solve the problem... however, for anybody seeing this post, the VST SDK folders have to be rigged a bit to get it to work if you are getting this error.

      See @dustbro post here: https://forum.hise.audio/topic/1444/vst-export-failed/82

      that solved it for me!

    • M

      Parametriq EQ: How to set processorID for floating tile

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      815 Views
      M

      Awesome! Thanks for the help fellas.

    • M

      Is it Mandatory to Build Hise or Can I use the precompiled binaries for Exporting?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions precompiled bin building hise export
      3
      0 Votes
      3 Posts
      702 Views
      M

      Yes! That worked. I appreciate the quick response too. 💪