• Help with Button to ramp a Knob value up and down 0.- 1. > 1. - 0.

    2
    0 Votes
    2 Posts
    349 Views
    R

    @Rognvald I found this as a starting point.. :)

    const var Knob = Content.getComponent("Knob"); const TH = Engine.createTransportHandler(); // 18 = tempo factor = 1/64T TH.setEnableGrid(true, 18); // Set sync mode Internal or External TH.setSyncMode(TH.PreferExternal); // ON GRID CHANGE FUNCTION // You start and stop this using "TH.startInternalClock" & TH.stopInternalClock inline function GridChange(clock, arg2, arg3) { local v = (clock % 200) / 100; local value = v < 1.0 ? v : 2 - v; // Trigger the knob Knob.setValue(value); Knob.changed(); }; TH.setOnGridChange(true, GridChange); inline function onKnobControl(component, value) { Console.print(value); }; Content.getComponent("Knob").setControlCallback(onKnobControl); // START STOP INTERNAL CLOCK inline function onStartInternalClockControl(component, value) { if (value) TH.startInternalClock(0); else TH.stopInternalClock(0); }; Content.getComponent("StartInternalClock").setControlCallback(onStartInternalClockControl);
  • Convolution Reverb || Reverbs dont in DAW...

    Unsolved
    8
    0 Votes
    8 Posts
    1k Views
    cassettedeathC

    @Chazrox Yeah, my audio files are about 6mb and 25mb for images… So I’m not quite sure why they’re not embedding in the plug-in.

    Could be related

  • Dynamic Container - how to use?

    Unsolved
    5
    3 Votes
    5 Posts
    1k Views
    oskarshO

    @Christoph-Hart can u share the example here would love to explore as well!

  • Connecting sliderpack on Interface script with different midiProcessor

    11
    0 Votes
    11 Posts
    1k Views
    ILIAMI

    @d-healey Yeah, I did that. Just export the snippet, and re-import, and it happens again!

  • SliderPack LAF

    10
    0 Votes
    10 Posts
    1k Views
    ILIAMI

    @d-healey said in SliderPack LAF:

    HiseSnippet 1125.3ocsV01aaaCDlJIpX1qcXcX+.H7mbR7TrbbdqYCyN1wMdyI0KNsX.AAALRTVrQhzPhNNdC8+79GjcTRNhtwcqyXkevV2cOG4COd7N1OR3PiiEQHihWLcDEY7byAS4R+V9DFG0sMx3aLOkDKoQ3TUGMcDINl5hLLV80JEFEVCkL9qe9HR.g6PyUgPuSvbn8XgLYt19M9UVPPGhK8BVnF55M55H3sDAhw.eV0rJZDw4VxP5YDErULQmPh8QFaXVydmC7b2Ya68qUe+pGXS2cmcc8b2C9Y6arcsc228f56QqiLd1wtLoHZfjHowHi0NR3NcfuXBOcAdGKlcS.UIXiF.qbp5Nh.W0VToE0xmE31eVfJFAyR+7v1pogsu27TlK6Q84guuMw.N2C8.nwJySuUmid15zqpF8V.kLznzZoT5klCbhXij4VT74qM6xgSSOBbNoSkTrnUtZUyVB.AWZERtk1IBDdzix0qVsBtV8pqeXQX.mVwR7cjH7f.lKMpObbYi+I7rIXHU1RDNRvAgxkzvTB7WSzJlB1CY7RUptPKj6KUwt1hLAYliFv9CJX2JiUvXqsv8Z1QmfpLoqCHdZryIhBQ8dBGRPOg31lb2NTZPY0jLCsUDcHSk72YL2QxD7xkbiHS5w3TRTJWJUA6My3vJXwMue8h+YwBCUzKMUtLnyhIogoh1vBTnXAEo7A1nLR.lb41Wg2BmfE1t3MwI3TntWGU0qxzN8i78GR88NRvXJdCr+5fF+LrSzwV6pCKnHvPKO3V34TGY4KuuBdZE7jJX+qRY2Va85y619UOceHo2mIlBzSDgKyf4u5gXF9GSWGXC.Rat45EKL+xn1VU.b.+R+bBvxZvxp9SszePE8+LReTr5ImbyN0V+vYmHXA+Lgj9Fd4jCkhenH9iM44sPaJNDIBBnQKzrpvUz+jik4iCugFUAmbf7HP3x4723M+z230KH4jFRz.J3c4L4aFQ4epxTnr3np5PFqfkWlTa36xpMjGTQLnLvKL0hxnDpmWddiFtDIAYbo4t0sfQ+lMsr7Z0F97W5aMabPK3mSTx2YA1sZqr+aJ4ST3SGWzel+VG8n+fLB81tsUKRFkA1C6nQzHISErLZSuCZmjVdqfYaZ7sRwnDrYoIP+q+Cav606TMUWXByU5mqXZCeJanuVOLdCHIGDe1yy7XVgH89g4WVTHQnG5ozmWJPo8AXnzdyPcjnGlGYsL0YMPeRsdnKivcb.QNeqGUC5LCP14b06U0z4wL4TcB++V+nOWJ9Ry9Loi+h43JKfiPlwWBNl0E+ElG64AkpxI3Zlc98uLsrQmKFKY7gmRjQLHUx7rwgCfiZGJr5bNMPUcvXE083T4pJYUDX.k6lHnxcxLZqjMxLZOyHJj3DIt1I81u5cBeUhFfS7j2TU.dbGHiexkcDJDd1x0NNyOUOwwZKqiaurNVeYcbmk0wcWVG2aYcb++cGUupr4XoHL8ZCBcZ+iSJcZXbLm.YfIYqn+FfTcND2

    Amazing, Thank you so Much

  • How to realize streaming and loading threads?

    11
    0 Votes
    11 Posts
    1k Views
    It_UsedI

    @Christoph-Hart I use this format initially, because otherwise I would have 500+GB occupied by samples.
    Can you answer an off-topic question? In general, I am very much waiting for the bugs with the mask and blur to be fixed. In general, this issue on github perfectly describes it.
    Are there any plans to fix this bug? It just really gets in the way when drawing :(
    Thank for advance ❤️

  • Parameter Values not being shown in panels for frequency point other than 0

    12
    0 Votes
    12 Posts
    1k Views
    pcs800P

    @d-healey @Christoph-Hart Can we please get Davids changes merged into a new build?
    I really need to get this project finished, and would hate to scrap it.

  • LAF errors

    4
    0 Votes
    4 Posts
    866 Views
    ChazroxC

    @d-healey 'Colours' took some getting used to now I cant spell it any other way. haha.

  • Rename Monolith Files?

    Unsolved
    13
    0 Votes
    13 Posts
    1k Views
    ChazroxC

    @d-healey I didnt completely figure it out what I may have done wrong. I just started those from scratch and left it alone. ha. I'll let you know if I figure out what I did.

  • Control Callback AFTER preset load ||

    Unsolved
    2
    0 Votes
    2 Posts
    697 Views
    d.healeyD

    @Chazrox Check out the user preset handler's post callback

  • Link Table Envelopes

    Solved
    5
    0 Votes
    5 Posts
    916 Views
    Oli UllmannO

    @Chazrox
    I'm glad to hear that! :-)

  • Table changedIndex -> How does it work?

    Unsolved
    1
    0 Votes
    1 Posts
    81 Views
    No one has replied
  • How to change shape of popup background?

    Unsolved
    3
    0 Votes
    3 Posts
    745 Views
    It_UsedI

    @d-healey This is very bad for me :(
    But thanks for the reply anyway ❤️!

  • Different repaint methods explaination please...

    Unsolved
    10
    0 Votes
    10 Posts
    1k Views
    ustkU

    @Christoph-Hart isn't a laptop a mobile device by definition? lol 😆

  • LAF issue

    21
    0 Votes
    21 Posts
    2k Views
    H

    @Chazrox thank you, and about vertical VU Meters, or vertical reduction meter? because i have my own expander node but don't know if its going to work, maybe the compressor thing will work?

  • AppData Folder || My Custom presets dont compile....

    Solved
    16
    0 Votes
    16 Posts
    2k Views
    ChazroxC

    @d-healey That worked great! 🙏 ok noooooow im done. 🤣

    **I have 3 other menus. 😭 lol

  • WaveTableWaterfall -> Drag Position with mouse Snippet

    3
    2 Votes
    3 Posts
    824 Views
    Oli UllmannO

    @ustk
    Ah, I hadn't thought of that. Much better solution! Thanks! 😀

  • Radio Buttons Tab Controls || Tabs overlapping on INIT.

    22
    0 Votes
    22 Posts
    2k Views
    ChazroxC

    @d-healey I got the other group working too. Thank You! 🙏 That was a doozie. Im gonna name related panels and buttons for these use cases accordingly. I like doing this this way instead of radio button feature. That thing always glitches.

    🙏

  • Set Value on Click Property?

    Solved
    7
    0 Votes
    7 Posts
    917 Views
    d.healeyD

    @Chazrox Oh yeah I see it, I was just being blind.

  • Stretch player questions

    10
    0 Votes
    10 Posts
    1k Views
    ChazroxC

    @ulrik Sick. Looks fun!

10

Online

2.0k

Users

12.8k

Topics

110.9k

Posts