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
      7
      0 Votes
      7 Posts
      273 Views
      Matt_SFM

      I'm reviving this topic because I'm facing the same issue.
      (Tested in multiple DAWs, on Mac and PC - develop latest commit)

      After loading the plugin in a blank project: the tile is correctly displayed.
      When loading a saved project in the DAW - without quitting and reloading the DAW : the tile disappears
      When quitting and reloading the DAW, and reloading the saved project : the tile is correctly displayed.

      I'm using a MidiOverlayPanel to allow the user to drag MIDI into the DAW.

      The floating tile follows the mouse when a user hovers over the MIDI files (painted in a panel). When doing so, the panel loads the corresponding MIDI file in the MIDI file player during the mouse CB, so when the user clicks the tile, he can drag it into the DAW.

      8375bbf5-6fd8-4338-a44f-010a71ab4486-image.png

      I'm explaining all this because I made a function to track what the tile is doing.
      The tile is still there, placed where it should be, and the MIDI files are correctly loaded into the MIDI player (so no problem here). If I hover where the tile should be, I can see that the panel is no longer hovered - so there's something invisible there - but it's impossible to click and drag the tile. So the tile is still there but I can't interact with it.

      @Christoph-Hart it seems to be not related to what I'm doing with the MidiOverlayPanel floating tile, so the snippet above can be used to reproduce the issue.

    • 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
      114 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
      707 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
      2k 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
      936 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
      291 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
      791 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
      551 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
      1k 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
      522 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
      624 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
      437 Views
      M

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