HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. ILIAM
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 15
    • Posts 100
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: SliderPack LAF — Two Quick Questions

      @d-healey said in SliderPack LAF — Two Quick Questions:

      he hover property is there but it doesn't change

      Exactly

      posted in Scripting
      ILIAMI
      ILIAM
    • RE: SliderPack LAF — Two Quick Questions

      @d-healey No effect!

      See:

      HiseSnippet 1194.3ocsVstbhaCEVNIts1samtc5Cfl7KmTVGCjDfISZCg.YSatvrjtS1lIyNBaYPMFIprfD1cx6V+See5aP6Q1vZStzKLc8v.bt7oymN5nywskBeZbrPhLrOexPJx3KL6Lgq52nOgwQGc.x3KMOgDqnRbpp8mLjDGSCPFFKenVgg0Jnjm+362mDQ39zLUHzqELe5wrALUl1168irnnVj.54rA47dy8NxWvaHhDi.9rroGZHw+ZRO5oDsaKYhdIItOxXcyJd07JSqsU.kTtZ4sJ5QpUIbyxAdAcIUBpVxKbqs6VgFhL9jlALkP1QQTzXjwJ6KBlzou3FdZ.dMKl0MhpEJh5.QNUcKQTfdKp0hZzmEEzdVhJFAqR6rz1xoosuw7DV.6C5yReeUhAbFh7IPiklmdKOG8Jlmdd4n2iPIibTZkTJ8byN9R1PUlEMe9byi3voYHANmxSkTeQK86Ka1P.dvUtCHWSaIAgOfvojmWAbQOu01w1FNqhU3wDItS6iq2BuKdFPeIE1OGK7IQGKDWWmGzhRib.P4vDwBnx1vAbwbH6QUMDCFJ3ffyp47YUcDsSBjqj1ioqHaMh6qXBtypARxMGy3ThLExpEvgyL1q.Vz8WVy9811V5.SfvAJbI.I2IU03opFShFQOUHGPhXuiF.QzpmarlR5RRGuaqT1qT8x0KCjArni5KER16.xC6TH9NjKKeEdCboBXxkdWo+tzUZlaAeXgXmw3uaWbw0rsduskE4xhWAQN4muEOCJdcrSQWO7Kvi0gwJQ+tYleQB.vxcVV1VznX58VsT+dJnYAoDDj0SCxcS2nGJIALH02Bte5bo2sMajte0m4Ev5OWToUS3t2A0RUAkBWklLBAHuh5qbHZ46k3tX1Bkk3dkXDGtiogP38hnNyNSRhSQsiarwTW0KalYvlNcpSnIZ6KFSkqgwarA979rXbffFyU3aDxqSyLySkVsBSdRRt2m22Yaem97JWkmF7CJkSJDWamYEYXA+TghdF2QWmYYemM99lBCeTa5BeoHJhJeTy5Fjx+NfN7QC5RkEvI0tevQnIv7cVLe5NK4a74mdOLmiB9Qbl5rgT9S0NDM8xqtKzTVAgWkzC5qm1CJKehXP6lmYlKAiRnd1X.28BHJBx3Rys2zsaUdn6ahdST8yO6G51rsq94XPqaWPt5neFL49qfC6Kg+cz3a7X6mHWinsel7vlJ2p7wdayzKxXPoeMWD5mN5.cPlRYf8vNZHUpX5jkwAzwvXqz1nVlGPiuVIFl36zdSHiO8+vF717SDmjWXP9AnN+1.RNWc1KLBl2UGNwGS0snQOrGOLcQDLJhnlejidv7TCP0xb8408x4wL0j7Ct+eaNz+VJ9by1Lke+GmiK8HbDNo9XvwoSuelYyvPnIPFAWwr0EebFUifNeJFu2IDkjAG2lmNZPGn0jOEhNmCMzAcFKouWkJ6ok0YfNTdPhveBOSMVTKaL0XwYFQCH9Rwa8SuMpe+fOKQCvIdx6RYAuTGHievkOcIY.6s99yuTO.XoEEX4EE3lKJvsVTfaun.qrn.q9OCT+1j0GoDCRu1fPmztYRqLCilbBTAlTsh9Kv6oPTY
      
      posted in Scripting
      ILIAMI
      ILIAM
    • RE: SliderPack LAF — Two Quick Questions

      @d-healey I dont see any Hover effetc!

      const var SPLAF = Content.createLocalLookAndFeel();
      const var SliderPack1 = Content.getComponent("SliderPack1");
      
      
      SPLAF.registerFunction("drawLinearSlider", function(g, obj)
      {
      
      	var a = obj.area;
      	var v = obj.valueNormalized;
      
      	g.setColour(0x7302A3A3);
      	g.drawHorizontalLine(a[3] / 2, a[0], a[2]);
      
      	
      
      	if (v >= 1)
      	{
      		a[1] = a[1] + a[3] / 2 * (1.0 - v);
      		a[3] = a[3] / 2 - a[1];
      	}		
      	else
      	{
      		a[1] = a[3] / 2;
      		a[3] = a[3] / 2 - a[3] / 2 * (2.0 * v);
      	}
      	g.setGradientFill([0xEC02A3A3, 10, 0, 0X7FE903D9, 10, 100]);
      	g.fillRect(a);
      	
      	g.setColour(0XEC02A3A3);
      	g.drawRoundedRectangle(obj.area, 0, 1);
      	//g.drawRect(obj.area, 1);	
      
      	
      	if(obj.hover)
      	{
      		g.setColour(0XFFffffff);
      		g.drawRoundedRectangle(obj.area, 0, 10);
      	}
      
      });
      
      SliderPack1.setLocalLookAndFeel(SPLAF);
      
      posted in Scripting
      ILIAMI
      ILIAM
    • RE: SliderPack LAF — Two Quick Questions

      @d-healey So i need to allow it in json?

      posted in Scripting
      ILIAMI
      ILIAM
    • RE: SliderPack LAF — Two Quick Questions

      @d-healey said in SliderPack LAF — Two Quick Questions:

      short answer is NO to both questions?

      What this means David?
      NO?

      posted in Scripting
      ILIAMI
      ILIAM
    • RE: SliderPack LAF — Two Quick Questions

      @ulrik So short answer is NO to both questions?

      posted in Scripting
      ILIAMI
      ILIAM
    • SliderPack LAF — Two Quick Questions

      Hey everyone, I’ve got two quick questions about the Slider Pack Look and Feel:

      • lIs there any obj.hover or obj.over property available for Slider Pack LAF?

      • Is it possible to change the slider’s drag direction from bottom-to-top to left-to-right?

      HiseSnippet 1150.3ocsV01SiaDDdMfqpc6U0qp+.VwmLb4BNI.ADhVB4EfdARNB8fVD5zF60I6gyto1axQ3D+25Oo9OncVaGrCuzWh5EE4ncl4wyyN6LOaZGHbnggh.jl4YSFRQZesdmIbY+p8ILN5nZHsuQ+XRnjFfiMs+jgjvPpKRSawCTFzLVBE84O9w8I9DtCM0DB8NAyg1jMfISs1du2v78aPbomwFjI5026HGAupvWLB3yh51ngDmqI8nmPTgsfN5PRXej1p5ks21tDc6MbojRaUZiB1jsK6sdIWa2tjxtaUz1aiM6Vl5gz9h5tLoHnijHogHsk1W3NoSewG4wI3crPVWepZQATGHywlaH7cUaQkUT09Le21SKTgH3szNsrsXbY660Ol4xt2dZ46aibfSQjs.psvrzawYnWgrzyNC8dBJokgRKESoWp2wIfMTl5QwmuR+HNbZ5QfyorTINVzB9KpWU.Qvk4GPtl1H.VbOBqh114vErsWYGSS3rJThGSBvcZ2rRC7t3o.cBnv9oovg32THttB2sAk5aAfxfwm4RCZCGvExfrGUVULXnfCKrVNSLKqxnoYTlxGP6wTsjMFwcjLA2ZY2.xGax3TRPLlkyg8l5rWNrn6GVw7SllFpLSf7AFxS.VtSrowIlFS7GQOQDLf3ytk5BoznW9PEmT8jV12TtjcwJkpTBXC3Qk0CEAraA1CaUH+VjKKcEdMbwbXxk1WodV7JE0MfuLOr0X7OrKtvJlFexzvfbYgqfLG8yqvSghWEaUHuM903wpzXDYe2T2uNB.34NCCSCpeH8Aus33dNnoIoHjjUiSxcIazCBHtLn12.FPstz9l5Ui2upC8bX02KJ2nNL7Ua6XSPuvUwECO.xoTGoEQs9AEtKl9hRKbmJFwggLEDBumO0Z5YRTdJnBbs0RBU8ZScq7Ydm5QlFDU1dTGWT6xJ6LsU.K3mHjzVbKU2fg4cl3G5xy6I8o5OCD99zfmzsRGK3uCnEezftzfb3nNr6CDlUmU.P+4E.xpO4DOtjIPA+HNS1ZHk+bpVnjYLkXQBqfzKijJ9tDohz5IhApBuPOSAFEQcfhZJsZWhjfztTey0yW87VCy2p6V770Nu0OcXa3QPdms3i2+C9+h+5s9U34qZ.V2u4lus2aFCdryedoMdaslR2yNcbue6fiqbfz81ZMgfZG6uBB8yGUSkjD5BLG1MCoARlpPoUiNFtYIVoyPuFM7ZoXXTrIxGf1++gM2MYuzZR1ECxdGm0uOfjITq8POV2ET7Eti7IxYuFPcYYhCn0XFsWk9JOjImj8xz+2ta3eKEeodalzo+SywEdBNBGMeN3XxMpuPutmGL3mRvkzabwmmqOQfXjjw6cLQFvfyW8SFMnCHb4Pgry4fFqpueA0PT7Z6oyAcnb2nE+I7IwYA0ZsDmEl5DMf3DHduS7nm5N6uLxBvIdz+uw.9iVvZ78SZY6AcYu2wY1W0i.VbdAVZdAt97Bbi4E3lyKvxyKvs9mAp9GdUFIEChGaPniaWOR6RSqNm.cfQcqn+Bf2AI3B
      
      posted in Scripting
      ILIAMI
      ILIAM
    • RE: Sliderpacks, Working like Radio buttons, How?

      @d-healey Thank you so much

      posted in Scripting
      ILIAMI
      ILIAM
    • RE: Sliderpacks, Working like Radio buttons, How?

      @d-healey opposite Values

      Index1 = 1 on Sp1
      Once i click on index 1 on Sp2 I want the Index 1 of Sp1 go 0 and vise versa, while both can be set to 0!
      This makes sense to you?

      posted in Scripting
      ILIAMI
      ILIAM
    • Sliderpacks, Working like Radio buttons, How?

      Hey,

      I’m trying to add 2 slider packs that work like toggle and radio buttons relative to each other’s indices.
      For example, Index 1 should be able to toggle on in both slider packs, while we can also set them back to 0.

      HiseSnippet 792.3ocsV0sbRDCENgRpBZcZc7NugKa0NLKPoTFuv1xOJiRKiasi20IrIaIS2MYc2rUQGe27Qx2.MY2E1EggVvwbAv4ub9xImyWXfuvhFDH7AvhWL1iBfOFYNlKG0ZDlwA8ZCfOA0GGHo9khUc5XObP.k.fvMdiVArPdPz5Wu9TrClaQSUA.WJXVz2ybYxTsCN9cLGmtXB8BlaFuO33dVBdKgiHTgmMPF.Or0M3qomg0tkCAdKNXD.9BTCilF0nMqSn3ZGUqdECbyF1GTiXPFhaPNppgc8CG1fZCfa1gvjBeSIVRCTa5oBxXyQhuviSvkr.1PGpVnBvTk4X0fViXNjASJNA..L+fzR0Fwkpmg5yHro5SKYaGYnTZDYKZvbKCRUVAHAy.o7wPZGjokOySlZQimGg5wU2f1X0cSVnD6K.9STKgxAtrrK9FZWekvz.1spgw9kTer2qrC4VRlfWRvOSHomy2cuheuXgh+nXo+1js8BsoSiuvwg5uPy51A+kE3t7P2gT+8KcK1IjN0Q0we1Z5l2uZpU7oNiiBdONSdtGMQtqvgnqU5eO+M.HorotKxkfPETjQ2DOM4lvzgQn9CTMx.lZi1BkpnBH5X.fHXN0lQvRL.9bTkCKOc0r0jeY+xxw4aESR0kkD0lNYU673uAfO1qs1IUCRxwScj8n9RltxBaSuUMQG2sU.0lFbiT3Ec9c8Dbcw.9fUnB70rjEiyJn3b7LYeSibTkxFwxzOGRULL98EDkAXtfns5DWQHOCAy1GCVK3TcN3ffj+YnL+TphePPBcvxYIMzzoIFTc8yLopGG4AL43rzsq.ShwRYRtuPbGz.lzZzhwXtEfQ8fw+ALlv+tEpisM0RlBv7nteZcIauiz+AQnjwutOV5yTcInyBcMUuSYQUYmyoNASlvRjMzx5JfIkShD9sZkXrhVFlXrxDi.Wrku3Jq3gbMC+CiznvDO5EvBpmhUxklRbjVmcUO3bkk0ra0bAVccCr15F3Aqaf0W2.ObcCrw5F3Q2cf5+OvIgRga7XC.zePmHVVHrCGq5.i5VA+gQ.GIx
      
      posted in Scripting
      ILIAMI
      ILIAM
    • RE: Midi Overlay Panels in Compiled Plugin Crashing DAWS?

      @Christoph-Hart @CatABC @Matt_SF @d.healey @ustk @ulrik
      Ayy okay okay — major W on Mac! 🍏🔥 Just built HISE with the MIDI Overlay Panel mods, and everything’s runnin’ flawless. Tested on a Mac M2 (Apple Silicon) across Ableton, Logic, Reaper, and FL Studio — smooth like butter!

      I even pushed it harder — multiple VST instances, duplicated MIDI tracks, saved, closed, and reopened projects on both Mac and Windows. Still no issues at all, and performance stayed clean and steady. 💪

      Big thanks to everyone who helped out! Can’t wait to see an official HISE fix from @Christoph-Hart 👏🎶

      posted in Bug Reports
      ILIAMI
      ILIAM
    • RE: Midi Overlay Panels in Compiled Plugin Crashing DAWS?

      Yo @Matt_SF, I’ma give it a shot. I’m runnin’ the 2024 HISE build right now — don’t think there’s been any major changes to the MIDI Overlay Panel lately, so if it’s solid on the older version, it should be all good on the new one too. I’ll report back with the Mac results in a few hours! 💻🔥

      posted in Bug Reports
      ILIAMI
      ILIAM
    • RE: Midi Overlay Panels in Compiled Plugin Crashing DAWS?

      @Matt_SF You tested on Windows too or Mac?

      posted in Bug Reports
      ILIAMI
      ILIAM
    • RE: Midi Overlay Panels in Compiled Plugin Crashing DAWS?

      MidiOverlayFactory.h

      class MidiOverlayFactory: public DeletedAtShutdown
      {
      public:
      
      Changed to (public DeletedAtShutdown >> Removed )
      
      class MidiOverlayFactory
      {
      public:
      

      🔥 Great news, fam! Everything’s runnin’ smooth as butter — no issues at all with the MIDI Overlay Panel on Windows 10.

      Tested the plugin in these DAWs so far: Ableton, Reaper, Cakewalk Sonar, and FL Studio — all solid! 💪🎶

      big shoutout to @Goodflow for puttin’ in that work, squashin’ the bug, and droppin’ the fix! 🙌🔥

      posted in Bug Reports
      ILIAMI
      ILIAM
    • RE: Midi Overlay Panels in Compiled Plugin Crashing DAWS?

      @Matt_SF So this is what you changed?

      MidiOverlayFactory.h

      class MidiOverlayFactory: public DeletedAtShutdown
      {
      public:
      
      Changed to (public DeletedAtShutdown >> Removed )
      
      class MidiOverlayFactory
      {
      public:
      

      Correct?

      posted in Bug Reports
      ILIAMI
      ILIAM
    • RE: Midi Overlay Panels in Compiled Plugin Crashing DAWS?

      @Matt_SF said in Midi Overlay Panels in Compiled Plugin Crashing DAWS?:

      t in Ableton, FL Studio, Reaper and Cubase

      Yeah Man, Lets goo
      022063d48f1a54c620df440030c99bf0.gif

      posted in Bug Reports
      ILIAMI
      ILIAM
    • RE: Midi Overlay Panels in Compiled Plugin Crashing DAWS?

      @Matt_SF Matt,Hey
      So the Disappearing tile fixed?
      did you tried on different DAWs ?

      posted in Bug Reports
      ILIAMI
      ILIAM
    • RE: Midi Overlay Panels in Compiled Plugin Crashing DAWS?

      @Goodflow said in Midi Overlay Panels in Compiled Plugin Crashing DAWS?:

      @mehmethand

      HISE/hi_components/midi_overlays/MidiOverlayFactory.h

      Line 40:

      class MidiOverlayFactory: public DeletedAtShutdown
      

      gets changed to

      class MidiOverlayFactory
      

      This fixes the Midioverlay Disappearing?
      @Matt_SF Matt, Take a look 👁️‍🗨️

      posted in Bug Reports
      ILIAMI
      ILIAM
    • RE: How to ensure MIDI Overlay Panels Load on Exported Plugin?

      @ustk No Idea, this is so new to me., Just link it to MidiPlayer Sequence1, so I can drag it from there. Appreciate you, man 👏

      posted in Scripting
      ILIAMI
      ILIAM
    • RE: How to ensure MIDI Overlay Panels Load on Exported Plugin?

      @ustk Cheers man, can I use this for Midiplayer, just to drag Sequence 1?

      posted in Scripting
      ILIAMI
      ILIAM