• Table growing / flex columns

    1
    1 Votes
    1 Posts
    340 Views
    No one has replied
  • Sine Gen Coarse Ratio hard limit

    2
    0 Votes
    2 Posts
    158 Views
    ?

    answered my own question:

    const var SineWaveGenerator1 = Synth.getChildSynth("Sine Wave Generator1"); SineWaveGenerator1.setAttribute(SineWaveGenerator1.UseFreqRatio, 1); SineWaveGenerator1.setAttribute(SineWaveGenerator1.CoarseFreqRatio, 20); // this can be higher than the GUI limited 16
  • AHDSR - How does one turn off the little "stage indicators"?

    11
    0 Votes
    11 Posts
    437 Views
    ulrikU

    @RastaChess said in AHDSR - How does one turn off the little "stage indicators"?:

    I can't say I completely understand the code though. I get the part of converting from and to string, but I don't understand the "manipulate" part.

    Not much manipulation in this code, actually, just ignoring some strings that paint the things you don’t want to paint 🎨

  • Slider inside Table cannot be dragged

    3
    0 Votes
    3 Posts
    360 Views
    oskarshO

    @Christoph-Hart working now. Thanks!

  • Project management window

    1
    0 Votes
    1 Posts
    98 Views
    No one has replied
  • ScriptFX Parameter Example?

    12
    0 Votes
    12 Posts
    448 Views
    Christoph HartC

    @iamlamprey either there or you can just call exportState() from a script, this will also give you the Base64 string.

  • Keybed colouring....

    5
    0 Votes
    5 Posts
    216 Views
    LindonL

    @d-healey said in Keybed colouring....:

    @Lindon Yeah (I assume we're talking about the white key at the end?)

    sorry - yes we are... ok bug it is...

    @Christoph-Hart !!!!

  • Pretty weird problem with the Preset Browser ?

    45
    0 Votes
    45 Posts
    4k Views
    Evan SplashE

    The topic is old, but if suddenly someone, like me, is looking for a solution to correctly switch presets with only 2 columns...
    If you set 2 columns in the browser settings, then when you switch the next/previous preset, the browser will return to the category column. With three columns (default), the browser correctly displays the selected preset. Possibly a bad solution, but it works. Just reduce the ratio of the first column to zero if you only need to display 2.

    "NumColumns": 3, "ColumnWidthRatio": [ 0.0, 0.5, 0.5 ],
  • Arp Note Length

    2
    0 Votes
    2 Posts
    304 Views
    LindonL

    @trillbilly said in Arp Note Length:

    Hey Gang,
    Im creating a drum plugin with randomization to an arp. All is working well except the Note Length. If I set them to 100 & then randomize the Step Count, they then go back to the default.

    Can the Arp Note Length be set to 100 at all times?

    You can (re)set the Note Length in your Step Count callback.

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    25 Views
    No one has replied
  • How do I get an LFOs current "stage"?

    4
    0 Votes
    4 Posts
    218 Views
    ustkU

    @RastaChess Since the oscillator does not output its "position" I can't think of a solution to give you anything else than its current level... So the second oscillator with a saw shape is exactly what I would have done despite the apparent funkyness...

    Maybe it would be possible to add this as an output to the oscillator if it's useful for enough people, @Christoph-Hart ?

  • Project with High CPU

    10
    0 Votes
    10 Posts
    536 Views
    ustkU

    @bendurso Perhaps exploring the XML would shed light on any discrepancies between the two groups...

  • Custom Sample Import Save

    2
    0 Votes
    2 Posts
    336 Views
    d.healeyD

    @kameron Are you dragging it onto a waveform control? If so you should be able to set that control to saveInPreset.

  • convert svg with multiple "objects"

    10
    0 Votes
    10 Posts
    348 Views
    ustkU

    @Lindon Oh yes of course, the objects should be converted to paths at first...

  • GUI with two screens

    2
    0 Votes
    2 Posts
    248 Views
    bendursoB

    @Sampletekk Showing and hiding panels (You place sliders or other things inside the panel, and then hide or show it). This is a tutorial from David:

    https://www.youtube.com/watch?v=_s7LTRz8pEc

  • Help with: Buffer_Not_Writeable_By_vImage

    18
    0 Votes
    18 Posts
    1k Views
    Dan KorneffD

    @Christoph-Hart Does this look right? It's throwing a bunch of errors.

    void MessageManager::Lock::exit() const noexcept { if (blockingMessage != nullptr) { { ScopedLock lock(blockingMessage->ownerCriticalSection); blockingMessage->owner.set(nullptr); } blockingMessage->releaseEvent.signal(); blockingMessage = nullptr; } const ScopeGuard scope{ [&] { blockingMessage = nullptr; } }; blockingMessage->stopWaiting(); if (!blockingMessage->wasAcquired()) return; if (auto* mm = MessageManager::instance) { jassert(mm->currentThreadHasLockedMessageManager()); mm->threadWithLock = {}; } }

    EDIT: operator error. This works:

    void MessageManager::Lock::exit() const noexcept { if (lockGained.compareAndSetBool (false, true)) { auto* mm = MessageManager::instance; jassert (mm == nullptr || mm->currentThreadHasLockedMessageManager()); lockGained.set (0); if (mm != nullptr) mm->threadWithLock = {}; if (blockingMessage != nullptr) { { ScopedLock lock(blockingMessage->ownerCriticalSection); blockingMessage->owner.set(nullptr); } blockingMessage->releaseEvent.signal(); blockingMessage = nullptr; } } }

    Testing now

  • How are samples played

    3
    0 Votes
    3 Posts
    253 Views
    S

    @d-healey said in How are samples played:

    @Sampletekk Whatever you want

    db0e450a-c67f-4e50-b12c-c7a41a0faa7d-image.png

    Cool!

  • Flip/Mirror Envelope Follower Path

    3
    0 Votes
    3 Posts
    271 Views
    oskarshO

    @Christoph-Hart Thanks not sure how I missed that!

  • Playhead colour in Waveform component

    5
    0 Votes
    5 Posts
    261 Views
    P

    @ulrik Ah, sorry my mistake! I was using the wrong function. Thanks for that.

  • Sine Wave Generator + Even Harmonics

    3
    0 Votes
    3 Posts
    219 Views
    ?

    @Christoph-Hart damn sorry i forgot to say it should be compatible with Rhapsody, i guess a regular core.expr or the good ol' Shaper FX for my use case?

22

Online

2.0k

Users

12.8k

Topics

111.1k

Posts