HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Natan
    3. Topics
    • Profile
    • Following 1
    • Followers 2
    • Topics 250
    • Posts 2,267
    • Groups 1

    Topics

    • NatanN

      ScriptFx Bug [FIXED]

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      10
      0 Votes
      10 Posts
      271 Views
      Christoph HartC

      @Natan yes.

    • NatanN

      Faust Compilation, Getting Started ( Help Needed )

      Watching Ignoring Scheduled Pinned Locked Moved Faust Development
      5
      0 Votes
      5 Posts
      200 Views
      LindonL

      @Natan so build your faust node, and if you are selecting from some list of faust code items then you should be fine - I always just take the faust code (.dsp) and build a new faust item in my project - so I always have to compile it.. .so I'm gonna say safest bet - compile your faust code.

    • NatanN

      Need Help with a Button that looks at other set of buttons!

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      5
      0 Votes
      5 Posts
      264 Views
      ulrikU

      @Natan
      Try this

      inline function onButtonsControl(component, value) { local Btn3Value = false; for (b in Buttons) if (!b.getValue()) Btn3Value = true; Button3.setValue(Btn3Value); Button3.changed(); }
    • NatanN

      Why This Randomizer Does not Works?!

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      129 Views
      NatanN

      @Matt_SF Cheers mate 🙏

    • NatanN

      Table PopUp for multiple Tables? How?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      9
      0 Votes
      9 Posts
      374 Views
      d.healeyD

      @Natan My only suggestion is you figure out why const AllTables = Content.getAllComponents("Table//d"); doesn't work.

    • NatanN

      Getting Panel Value to Change Knob

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      2
      0 Votes
      2 Posts
      131 Views
      HISEnbergH

      @Natan I think you can set this up quite easily in the mouse callback:

      pnlMenu.setMouseCallback(function(e) { var value = parseInt(e.x / this.getWidth() * myColours.length); if (e.mouseUp) { Console.print(value); this.setValue(value); this.repaint(); Knob1.setValue(value); Label1.set("text",value); }

      Which means you can also remove your other inline function

      inline function onKnob1Control(component, value) { Label1.set("text",value); }; Content.getComponent("Knob1").setControlCallback(onKnob1Control); HiseSnippet 1679.3oc2X8tSabDD+NfqA6Tm1zlOzOthVEctAYrCPRknQ0fwz3FLXgIoIJJJc4t01qx5cOc2Z.WDp8QqOR8Mnc16O91yXCAqDTSOjv2MyN67alclYmca4KbHAABeCybGNziXX94VsGxk8p0CS4FM11v7NVMwARhOJhzVC8vAADWCSy4+YEAybKXD972+zVXFl6PRIYX7BA0grKsOUlRsU0mQYrcvtjCo80F8ZUa3H30DLw..OyaU1vC67NbWxdX0vlyxv7yp6RkB+1RrjDXXtvVB2gs6INgGM9WPCnGwHpOpXzFlnHx6HXtJDqnZTqGk41JwtCLLLsZk5ElOxKbOqlTW5H5odiuLjAJUBc+g4bYg27YfWEc3UVCdS.RlZPZgHHcWq1N9TOYJGEdtsUCNr3zACtccnDMVi49iaYUS.ifKK0G+NxN9vGijvdsxkWFsZ4xE2nP9B4gGv+GHQGi8QOiKNpB5InDo6Rj0D88Db3C6kB4tTwMzDXW7QD1zkHh8RJMkJiGm0jvGLUgh4mUQ8GFEhD.h85xub80T+sL5xd6Ma.1FZJOExGqlRADYKXgVdfXfjxIH6NC3NRpfa2sXg7mUHbJ5VpCD8tIiYW9zHOWzjn9eGgOxlB3p7FHJ5GQqA+7fGTLhYr7pGkYbJLLYOZfxj+UpqrmcwUFYZkXDdWYOz2inajOEnIuMARqrx193SPaAYLc8EC3torncP1IZ5EX1.hcQzSdBhVbzHNKetjW6p7BQnvNALmPk81j40CaOBful9Fv8V5wqWrXJ.OuP9rN1j2Hr.RAcskKW1gNBhtXItTOwwP8F.hUP2+9nwn2f6RNMB+YmiyJL1R7LZSO7Q51zXS06E8w7CYs9IB0qKFKqv3Egy33H+3ukp2nv3CTQJD2CHNRLuKiX+5Sgoe4qLvb4jA7TBsaOocw2r7nTgQv.bCmGUYQ8mVRVSwf.RMLicDDslljQRSxTIHGqBUgjDOre.ApYYSJcJZkwgFjhLN3z.RRxYzupnLRo9Js+buKlUB0fBDLRIOenFfcn50soPEGjjBMY19DOUADas.nvRkWPtQripKp3aujjbpbokyLywgRogPmMlFuPhQjeaioNLXDjn2lN3iYbNJdEDdnblpjXxhERviWPUUt8ELamjx1KGgfh4OK+kX+muQ9qnleTBQ3jOJVYbsBSTXvkFr1SHI6ysUpOWdHtebVc5LQdwSHi3OQ1pNU7uLAs4C5eDwWy3CGHr8c1dBrldOA5sr3D4azFnf2fSk66Q3SqQFiXGJz+vbwnBFpLr6gBIcOf4DlAE5QHmUrqzHDw.xLm2HdRzk7NwR1lQcI9ghdKqvE0wD74M1FBxTMuDiC.adDeIUY1laSNF5DLpUlbVaSBdmT3YXlezJug4hWMTOUu2xg5ebhpbPJggU6EVYJkxqpBAQhSRBk.L8EVvt3nTBA3ig5Ls7IPfGf34Lzv1slF1tsU36a56UYpnaupigtFiitp+V0iSBD.u40SwOTWwMpdyo3U0U7qtAU7ZZJ9uN5FTwqqawzaPE+HMEWUbCp3Gq6p8+Po3O6Jqsn4mOTSqvTBGF0qM82I5m7rOVa7KVUWUVYswv8aC0zhVQ68pafLMU8m3ppMjGUe6hGICNLnvc.CKydBQ0whiY.aQj4XYpidwCnxg5f+C1wFeeg3csZQkN8lLFmaBXTsixGALFeX6BV06zA5.MEfKXsyK+3bxZc0+0IpeyAtTwtB0tUgp+dQTPJRnVL7PhekODW7g268EezdH2AVdxDiGtlcnOrUEk2UWUJXVmiA62Um7ABgT0wi9EuzF22iQ.unOzDd1QSfNBCxNC6PYw28x2ZcVqC1+WpW6v2ty96tc8CNu1t62t91nmt4gnUK0ggcL5q7IVlJACSGidkAfKTe5DpycS9zb9K6JcpLiWoyB+m6Jc9Dn7QlacJWBFaSUgL04GSXPBRHF+Jn+sN3ALYB0rYGMEbgWOAm5jM.S5S61k3qi8IZPaJkPPdJk6U8.BifCzhj+tp6BmFA6OdNx0vWT4ZeCbSb85arhfKRkRi9zsr+7++trezU50sIFBBU0l1aP+1P0VGBncNzoi5jYPG+JQC+tbR8o1Dta3G+C7Dyrh5ayXlURXdini9XGewachNilJNcwPJfcyCKTmypo5aznCmktV1Gpx8VGmrS0ED7gypfqNqBt1rJ35ypfOZVE7wypf+vUKnZSnMGHE8iRMMLZ1pd3ApMMGs4NzH5+d0MX5M
    • NatanN

      Need Help with Combobox Function

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      10
      0 Votes
      10 Posts
      243 Views
      NatanN

      I got the idea, You are the best 🙌

      I used the inline function for Cmbs to change the bgColour :folded_hands:

      inline function onAllCallbacksControl(component, value) { local myColours = [0XFFffffff, 0XFFFF0000, 0XFF0000FF, 0XFF000000, 0XFFbdd8e1, 0XFFe6004a]; local idx = AllCmbs.indexOf(component); AllLfos[idx].setBypassed(value == 1); AllLfos[idx].setAttribute(AllLfos[idx].WaveFormType,value-1); panels[idx].set("bgColour", myColours[value]); panels[idx].changed(); }
    • NatanN

      isMetaParameter ?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      254 Views
      LindonL

      @bendurso :

      so you really need this isMetaParameter when your Parent/master control itself has isPlugInParameter = true...

      So in this case the DAW can send some value change to the Parent/Master and it would change BOTH the master/parent and the child/slave

      Logic(in particular) gets very upset if it sends a param change command to a control and more than one control changes --- unless this isMetaParameter is set up to pre-tell Logic about this situation...

      ..well thats my take any way...

    • NatanN

      Another Random Button with Lock Feature [Solved]

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      20
      0 Votes
      20 Posts
      714 Views
      NatanN

      Final Snippet:

      HiseSnippet 1402.3ocuX0naaaCDlJIZMVstqEXO.ZEX.1KcA1dccCvKXt4uNileLpyJZQQWGiDcLQjIMnnRsWVdW1iReJ1ywdC1NJIaQ4J4HajTmffHd22ce2w6nNyNBtCw2mKPFkNY7PBx3dlcGyj82oOlxPs2EYbeyCw9RhvNZosGOD66SbQFFq9b0BFkVCE94e+kswdXlCIYID5UbpC4.5.pLY0NsdA0yaerK4D5.MseRq1Nb1NbOd.vmUMqgFhcNGeF4HrRsULQFewdtTIWzUhkDejwZaycG2sO+CrH8eE0mdpGQ8PcTWvPQKuO2yUwX0pnc5S8b6LIt8QfU5jjEVMJK7UlGRcoSWOIa7fPA1IHzyGFqjldqlhd00oWMM5kAkLznzZQT5glccDzgxDIJ9bWy1LXyoGFR65TIRWzJ+ycL2gCZvjaN.eNYeA7vTDUdZsZO1F9S0lVVVPt2WZeAF1o4AL4Iefaukcil5Bdlm2KwLW9.5eRDaGHkfDaPq29tlo05.ty4SkmkBQbcdlX+QufwOcprzBOj6NOrf3Cog3y.9y4tIAAHdR94LhbG9fgbF7PkGkRqGElf5wE1Un.hZMso1+7zzD7zFaT05RqRYkedK8c145EMWXuAX7MpWEbUd1YSeEXlTv81A64cJzcTgyRzLVlxBpeRuOLWdnzaVFjZKZtn2eTjtyZg3svqAqRmTHCwlrCOW3J0xz2Ik.WGdPszt+JXu1hx7nLhcu.lijxY1bVpJh3TcEmIl5wPskW.IrLvpDsWkuN54xVkJIHx.AqI7uvuyVE0Hp7Aj.cJ1Wpzed6+uRY0J0q1btJ5zGyNi3V4ZTap8poTztzU.0g3uoUg5IxtbLqzTX6SV4zBjPKaA4DHJ73NXOap6HH0kU7rIk4RFcbuDKTMNim2lQrrYaSbG8NUbGkXpt0V10mr4DCUgyF9sbVsIJzSSqGhk82T.LENxsBbTaipgbJaT56YfsUNLhcYnaJ9UqZj1g0N5scykK0gi8iJOlERBQTQ5UwYwY5IKXbNKjTEl1S2.lUsOI9JcocxmXRq2hW7PcVToXzUMKEVVT15pxpS7SpTOhKIGypD0eekk8rh50KSYwk0dDQlhUC.IlGvJrfAmRDoNcATDlJH8nFl4Opg9jPNQ80ZJxYsYT4wCIr7lOBEeX.LVhULq.UkgCkb+3gRh17PTX1i6Xp5lpiBIr9nfnBCtwxA9tlSdQzTuaZXrvfaTPvc8ntDQH3RlQMPZ98WWPnZd8aKHkum4z29sDArFZMeiJLsi5izb7aVPnZd8OTP+s16hkX0vuwEbPQ3PhPRU02F6Rt.9lDQiBWxbWh+4R9PjQ4oudBJdxMV+RyTuUBMJozh1ZbxC+dKe7Ej1rNBBbXhZNZBCCsQpY9OffEL0RT+C4C.GhE.RiUPEhAkMSbecc++FM++wy9r3+FZ9+ihaR+u10dpPNQNh0ZQrStQPgsi9YE4vIawBaqb40L1Z8BbRRNrpUPK+fd8niTGW+MnATWWORGtOU8diDHsaM.mxBvWgeXWX2W+6quXTJ2f61hRqUrS9xIQ82iasvFK2PbFisdANWLud7+5y+92jyayqs+ljRe5EW7.k+C7vxz2ih5xihEnbi9kWntfBF39w5V9F6xUJJEenYGpzoe1bbkL3H7pqaCNFekTkM2qWOhiLgfqYt+quct+IzK4ARJ6LXPZgprv7nfAc4ABGB3cFi3ol3DN5WAM74ZSlcnKg4F9v+AehEVexXIJg0mHDM.6H3u2IZfA0kdsd3J.mXg22GT2pd1NYDCyZaVSUdReuiiJ7+NXb0rwzXIv78KAlmrDX9gk.ySWBL+3Rf4mlKF0X.OKPxGD0N.KzYuvY1LL1KbNgvpPz+C9ikH0A
    • NatanN

      Random! But Not You, Not You ( I mean Dotted and Triplets)

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      9
      0 Votes
      9 Posts
      389 Views
      NatanN

      @Lindon Thanks a lot man, Actually I do Clean up after I Reach my Idea, and It was a dirty sketch
      Cheers Mate 🍾

    • NatanN

      2 Button Bypassing 1 Effect, Need Help!

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      6
      0 Votes
      6 Posts
      280 Views
      NatanN

      @d-healey Excellent Job. thank you So Much, Fine Sir <3
      alt text

    • NatanN

      AudioWaveform LAF, How to Mono?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      378 Views
      DanHD

      @Natan having said that if the sample map is actually mono the AudioWaveform will only display one channel

    • NatanN

      Blocking All notes, and Letting only 2 notes go in?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      4
      0 Votes
      4 Posts
      221 Views
      NatanN

      @Lindon 🙏 Cheers to you mate

    • NatanN

      Too many set attributes in an Instrument! Is it safe?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      238 Views
      LindonL

      @Natan said in Too many set attributes in an Instrument! Is it safe?:

      @Lindon Thanks Mate, I also take your advice on other forum and put everything inside namespaces.

      It performance very smoothly 🙏

      All good then...

    • NatanN

      Linking 2 Sets Of Buttons Inside a Loop?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      197 Views
      NatanN

      @d-healey Thank you so much Fine Sir :folded_hands:

    • NatanN

      Quick Question About Compiled Mac M1/M2!

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      226 Views
      NatanN

      @Lindon @M_Holloway Thanks a Lot 🙏💯🙌
      Let's Gooooo 🛫