Hello everyone! Ilia here. I'm a long-time guest developer in the forum, and I've decided to join the community. 28, LA

Best posts made by ILIAM
-
RE: The world of HISE
-
RE: How to Invert a Set of Button Values with a Single Click?
@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(); } }
Latest posts made by ILIAM
-
RE: Real-Time Skew Control on Linked Knob – Need a Better Way
@Chazrox
Thanks a lot, man! but it doesn’t seem to update the behavior after I tweak the Skew knob and then move Knob1.
You need to hit compile every time after changing the skew value -
Real-Time Skew Control on Linked Knob – Need a Better Way
I’m trying to change the skew factor on Knob 1 and have it update KnobLinked1 in real time with animation. I’m using a Skew knob for this, but it's acting buggy.
Is there a better or cleaner way to handle this?
Here’s a quick snippet:
HiseSnippet 1129.3ocsWE0SibCD1afk1j16TOoS2yqPpRaZSgMD3BnSHnDf1n6fKs4NTepmbV6MwBu1Qd8BjVc+u5S82R+Iz+Asi2cCw4HI.Qs6SY734a9lw1yLoiRFRSRjJjSk2MZHE47ktcGIzCZM.yDn1Gibdp6Y3DMU4kuzQiFhSRnDjiyJ+fYAmxqhx996CNBywhP5jkPnKjrP5aXwL8jU6b3qYb9oXB8crXqcu8gsCkhVRtLE3yJtAng3vKw8omiMaqjK5GwICPNeiayf8BZP2aGBE2X2F6TO.uWynsaPBH8vMI6tUPzNurWSZDxYsSHLsT0Ui0zD.zijjQcGHuVj6fKXIrdbpQnNpK347kQsFv3jNiSNIHjypcljpVIOU8b2yXD1sqOIk8UYJ7lXgcRyozhnT8GAkbrnzp4T5YtcCUrg5IZL74KbaKfSvHLb1XSk78hJ0bU2VRXGB8Fw3Komp.gasvudPPMuFAAUeUka+fyoDs2UXk2qExd0812aL.8o5Vx3gRAH3udl10AKmXvaXhKojEal0dLFWgI3LA0KJUDpYRgmTjoyXrRx8CGaYMvC7TZ0J+dkxVXrQBUegQget5WMs1vAXQeJwGV+ifyVXjXfpvssvbdO3Bp+zrIOMMId6dI854FnFklH7tAnQyiI97WOlQHbZGYBy.w50LHXbWdjWcoh5b9M6f1hgiuZr4lk2eled.rdIfATRdH3Eojwd.kGVvWu8my2cxM.TcyPx5H8boJFyY+FkTy.53jPMuDMVAoMpfjkz3xPLOiHvQxYX8fM3x90C7C1XmpdaZuhuELdeWNNls3CPcqrImpn5TkH2zgxqgmK077s.5S3WFF02zPgpU89VaWNExi+Eb5Xcq3bol9VgeVrT4iU79TUQQyTWwwDmploZSYX0hLzWjF2ipru9Y1HT1Y5ZYq8vpkEleWyZiRQaAS+1gzB4SkbhoFk422sxGp3xJTCrTACgspyp.9zhJfc4LBUgX.Hela1MdTF4saNgd.Fulq4x1T19W+ze7mGfde6iwZroLbAa.FNjpzLShv4X5UPiu7hxkcOllboVND7ysusfFty0mOw05gJ5FaJOxV3ZFQC8CccHfv.Jq+.8XooKFXS7D7Uz1hNJJ7n1zDPSuQm0bkJvvYUViAjEMKeu404QP1gKhfRBf5Kbm7xnCUEBdD52iRRihX2XN9+5YGIlf4.zCJYVb.NOR9qGRnQ3TddYRa3mC425+Hxe2l2vXCRRJGqmdVByTVEJLXX2.2zjV.XOxdJrGw.FAKb.iGJEelaGlNbvr4XoYvQy61+G3XwXYOw8jnHZndBAW08zeYYmA6db+OKS0LQenJtxbl6ddZbWX70PJ3cgfxSLWYJYJ0jKGXjMYftP09Lg+A9JTV2H6Tnr9XknXbnR9gv7ZUlA+97rU.NIxFLtLLgNH6MiJbv8O1GBCmFp6X3VKqgMVVC2dYMbmk0vWtrF1bYMb262PyeS36S0x37mMHzYcNIqqhiyIVUi+W.dK81+C
Appreciate any tips!
-
RE: How to Invert a Set of Button Values with a Single Click?
@d-healey Very Nice, thank you so much
-
RE: How to Invert a Set of Button Values with a Single Click?
@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(); } }
-
RE: How to Invert a Set of Button Values with a Single Click?
Is this Good:
inline function onFlipModeControl(component, value) { local invVal = 1-value; if (value == 1) { for (i = 0; i < Buttons.length; i++) { Buttons[i].setValue(Buttons[i].getValue() == invVal); Buttons[i].changed(); } } }; Content.getComponent("FlipMode").setControlCallback(onFlipModeControl);
-
How to Invert a Set of Button Values with a Single Click?
I aim to create a button that flips the values of a series of associated buttons. So, a 0 state will become 1, and a 1 state will become 0.
Content.makeFrontInterface(200, 300); const var Buttons = Content.getAllComponents("Button"); const var FlipMode = Content.getComponent("FlipMode"); inline function onFlipModeControl(component, value) { if (value == 1) { for (i = 0; i < Buttons.length; i++) { } } }; Content.getComponent("FlipMode").setControlCallback(onFlipModeControl);
HiseSnippet 968.3ocsVstaaaCElxIpXVcoXEXO.B4WJqEAx2pSPWPciSbqQqSMl6JV+UAsDkEQnHEjnRmQQd+5iSeC5NTWrjqctXuM9GoykOd93gGdHGGIbHwwhHjlw6mGRPZ+r9j4boeeeLkiFdFR6Q5ivwRRjYlpSmGhiiItHMscdkRgV8cQoiu8hSwLL2gTpBg9ff5PdKMfJK0Nt2anL1.rK48zfJd2t2PGAuufIR.9ritMJD6bIdF4BrxsZ5nWii8QZ+ldW6isaQNtiKA25nVcZXiOtqW6Vt1tSwccOposWmmMsKwCo8fycoRQzDIVRhgI8Tg67I9hOyyBvGnwzoLhRnAZBD4L0n99Tl63hjSLBos63xT0NYopeUeD0ktPeYJ6WRMXVhnZRSq1sQoFa.kzpPocynzi0m3DQCkkVT74g5C4vNnGF1apRkLeQ0NrldeA3AWdX.9RxfHPXABql11O0rks8AO2.FvNTrz7Jbj4oIRIHXdhYA3YD4KYr9hfPAGjis1Oym8Ank3FvngiDtjkAt.k09ENnfYP4LJmX5kvcjTA2TvKLq.GIXVNEHeJL8rDxAFeYOi8LLgA0yzJUm4ImX13fLkeI6iZ3IhLsn.QretI072KVRGxH7YReP2SdxAkdWAnZTJcc1uWabMP36ZMcXrxPJ06iYroPIt0JKJ0JuxR9Bgj7NtErxLpabsg4OZxyas1xmLFIZslUm9htMfV7jfojnx7ZliP01xkvO39UB6jkYp3nfOjSkuKjjKOPvbUklp+WsfGkmZUmFyYH3pLsv+Q4E9Y6fHJLI00yDZfRoe0tRnM.dy+cva+iv+1K1D3cVC7+b3YXIV0.HOg.IoPRjjp1KzNibEzxMqcPc8yHwWJEgHM8EEiv908Hm82UWvyqJ7YpqD5Bqq4BB9D5LeYgDZiBRypA4i81lfT+FChgdwQpaboP6sHJecknDiuhLjONh.GWU8JIbLTRq5q+VBNhqTQiGIB.ZfifIUq1ls3aeiz5i89OKC24Fyv2dPV8hE3JMgaBCKW9dN0K.xM.cNV5xE0EH7Xpbd0Z2M3xO6a8xu6KEer9Xpzwe8br1Z3Hbr5+CNl+jg8zO2yi3HKI3t5C9qs88A2Q3+CQhjxmMBKinPcf9EIASfmV4Pfny4DVrZ+tlplJS1VIqx.SHb2TguCibiMTxZ4FaTXDEfchDexIqgl5QI+TpFfS7zGsUGd8HHatllvAvYoO43r7TsBvlaKvVaKv1aKvNaKvmss.6ts.O5tApZ08xDoHH6XCBMZ74o26nocdZuvzpUz+z4hCoB
-
RE: Tired of this error on Startup
@d-healey Thank you, I'll gie it a try
-
RE: Tired of this error on Startup
@d-healey Hi
Here's the definition from Projucer:
HISE_SCRIPT_SERVER_TIMEOUT=20000 HISE_USE_VS2022=1 PERFETTO=0 NOMINMAX=1 WIN32_LEAN_AND_MEAN=1 HISE_USE_EXTENDED_TEMPO_VALUES=1
It appears to have two channels. This error is new to me; I haven't encountered it before on this laptop, even with similar projects and the same build, which I've been using for about eight months without issue.
-
Tired of this error on Startup
What is this?
I own an NI Komplete MIDI controller, and I'm not sure whether this error stems from the MIDI controller or the laptop's built-in sound card. Clicking 'okay' removes the error, but it also causes the MIDI controller to disconnect from HISE!
Any advice?