
Posts
-
RE: How Can I do a Splash Welcome screen every time when I will launch the Pluginposted in General Questions
@DabDab NAMASTE Version :)
HiseSnippet 1232.3ocsVstaaaCElJIZnwaoaEXO.D4WNCAtxM2QvvbhSRi2hSMlyZ2+JnkNxhHxjFjTtwqH.6kXuD6oquAaGpK1RINXEFqN+Hh7b667cN7P1SI8AsVpHN0tY5Xf37Mt8mJLQsiXbAoyYDmm61koMfhls0oSGyzZHf33r5qsa3r9Zjzee5mNkEyD9v7sHj2J49vU7Qby7c605W3wwWvBfa3iJo8ts53KEskwxDDOq55QFy7ukMDtlYUaEWxkLcDw4GbOv6Hucfi1K.X6b3N60ziczAg6tSfWv.1AAG9Juv81evAPHw4qNOfajp9FlAzDm0NUFLsej7Chr.7VtlOHFrKZR5iQNa6KjwA1TztKocDONnWAQoInW5Mm1VMi19d2t7.9r8mSeeWp.5bKJSfNqTEdqVAdMKCOuRvaAPxoDjVKCRuvsuuhO1LWhEOesaGAVMCYXcpLTxzkrxeslaaIpgvzXD6V3BEtXlE022yaa5dddac7F0J9iKh4BfFlH7MbofJEWIwZaP8s1n1G2nFE+8xWReWDlhSv1noxDZfjFAJXaJ2P4Z5vDlhgw.BnFTMpUuoTrWvnjwy7.pHWvMbVLGwLJVo.eS7zFYZfnVKigFiUbgo9lEnXSKTuOConSdshMfxnJHDiO1qRMRLl.cLS.XnvXpMzIL0rrnmU.8GoEjxPvzVNZrT.kiRpValwJXT5hLm1lbgbEf+WWjLTeVb7.rqlhoYhFoiwJPCFZL5FtXHE+jEiYTEG2.0n9lZ1DninWp9atM0nRfYA7ZoIxZNlMZ.40QxI.lBMZrXWMIquphWVTgrhosyRg59Eo+1HQEilWtL2IDoS977E+THMoTbLNFA8IxGhr0bsY6YFZa1n5DUZEIFvbkBBYxvHpRJGQGLkFXqYpzrDsFtC7SrvLu7OCUMzFlxXmrnp2zKqU89zL7QDQdF0NulTewI7LR9cfsjkFctXPBOFyKaXlwXXmoYJMTpnL8TgeDd1QlnmC0E.gTbNC.ENpzQm4mlNt5FKrbFxh0Pgl1BAxFxwYjQw1O3fxk7.H6PxVGWpzicTvaPfT6i0Vu180nOTTX3BkkyYw13s.w4H4oMrtHYz.PUzZUnHNTq5jR2mdRY4A49YmZKonTzAGh7lwf3oFuSxOpampliJTUS5L0MJloZIeBGmb9stUJHjTbW9FPxu04LlgU3MzwXvFCJC2lGNmASvaHylXut6Yf9Vrfkpad+Lw4Yetw9tYw8OYslNGDAsJO6.IOGGb2OvCLQ1E+LtJB3CiRE82nnIEroqUwpnY8pn4J1fbz77x6zzBlLqmV7Qd.yQ0mzsJBZAnCZMlgSkMkh1CSQCbm0.2qOo6I8u4bRHRo84+QIF+xVjGeWHdKrLHIlYpd0r8AL4BvtvJ2GZuySnwyykefy+a2W+4BwW31ia7iVLFWYAXDKVeIvX9qb1v87vP7R24.bM2K98uLOog7qRbnoXXWlQwsMSWmLpO9xPe.it.6ErSAbVwddMasWQeVePDjt3eve4BaVz0aE1rPHYDyWIee9kU12Q8rzcPLIRey453iew0zlO9b8H7Ycu22upqdjguZYMbmk0vcWVC2aYMb+k0vCVVCO7+1P6qtOIwHGkcrgP5167z4vNNmKXXGXZ2J4eAf3Z2JJ -
RE: Abeleton shows An error about a plugin I Compiled with the Latest Commitposted in General Questions
@d-healey said in Abeleton shows An error about a plugin I Compiled with the Latest Commit:
13 minutes ago
@ILIAM Are you compiling the network before compiling the pl
Just compiling the plugin, the network above has only 3 nodes, 1 timer, 1 MinMax, and 1 Bipolar.
I 100/100% sure the error is because of the Timer node ( set to Random ) -
RE: Midi Overlay Panels in Compiled Plugin Crashing DAWS?posted in Bug Reports
@Goodflow said in Midi Overlay Panels in Compiled Plugin Crashing DAWS?:
HISE/hi_components/midi_overlays/MidiOverlayFactory.h
Line 40:
class MidiOverlayFactory: public DeletedAtShutdowngets changed to
class MidiOverlayFactoryThis fixes the Midioverlay Disappearing?
@Matt_SF Matt, Take a look
️
️ -
RE: VST3 / Ableton / Macro Modulation Issueposted in Bug Reports
@bendurso Worst than that is that you can't undo redo anything, try to bypass / unbypass something, you'll see
-
RE: How to Invert a Set of Button Values with a Single Click?posted in Scripting
@d-healey said in How to Invert a Set of Button Values with a Single Click?:
t's only going to apply if the button is 1 (because of your if statement).
Very nice :) Thank you
Yeah, I want this to act as a momentaryso :
if(value) { for (x in Buttons) { x.setValue(!x.getValue()); x.changed(); } }