• Routing Send FX

    4
    0 Votes
    4 Posts
    198 Views
    ?

    @Lindon Hmm... How do you set the main Container... I got 8 channels (3 send fx)... Do you set the main container to All Channels to Stereo??

  • Matryoshka Doll

    3
    0 Votes
    3 Posts
    131 Views
    ?

    @Christoph-Hart I got it, Thanks!

  • ipp on windows 10 first time using it

    4
    0 Votes
    4 Posts
    213 Views
    NatanN

    @ospfeigrp
    alt text

    Hey Man :)

    There is A Custom made App Made by @Rudra-Ghosh Called
    "IPP Linker" It Has All IPP Versions, And You Can Get Your Correct Version With A Few Click :)

    Take A Look At This Thread
    https://forum.hise.audio/topic/4015/intel-integrated-performance-primitive-links?_=1622669982794

  • Which web hosting services?

    23
    0 Votes
    23 Posts
    886 Views
    d.healeyD

    @Natan said in Which web hosting services?:

    @d-healey Here is Everything you They Offer On Taxes:
    https://docs.sellfy.com/article/130-paying-taxes

    Take A Look

    Yeah it seems you have to do your own taxes, same as I already do with Wordpress. Gumroad and Payhip (and I think SendOwl) handle it for you.

  • How to change Slider Pack Default White/Grey Run Color

    3
    0 Votes
    3 Posts
    258 Views
    ?

    @Tania-Ghosh said in How to change Slider Pack Default White/Grey Run Color:

    How to change Slider Pack Default White/Grey Run Color?

    I guess @beatskilz is right.
    India is under going Lock Down situation. So my Cricket practice has been ripped off. When you did the post I started playing Cricket with JUCE-HISE C++ ;) . Here is the result.
    https://youtu.be/IfgxEZgPGQk
    If anybody knows How to change color with Java Script, do let us know.

  • Unable to have basic Filters in parallel routing

    6
    0 Votes
    6 Posts
    281 Views
    Christoph HartC

    Ah, I overlooked the question mark...

  • File size

    3
    0 Votes
    3 Posts
    127 Views
    d.healeyD

    It will vary depending on your images and audio files (not samples) too.

  • I give up

    19
    0 Votes
    19 Posts
    924 Views
    LindonL

    @MikeB said in I give up:

    PS: and luckily we are a small community here and not the Reaper-Forum

    ... that made me laugh out loud...

  • Maybe Too Hard A Question ?

    Locked
    54
    0 Votes
    54 Posts
    3k Views
    Christoph HartC

    Yeah I think I close this thread now until we have a real community...

  • Groups in a single key and others

    16
    0 Votes
    16 Posts
    589 Views
    Felipe FloresF

    @d-healey Ok, so the only way would be to set the same amount of samples to each key, I'll try it that way. Thanks for the help.

  • possibility of users adding own samples?

    12
    0 Votes
    12 Posts
    418 Views
    Y

    @ospfeigrp I don't have an example because I don't see how to do it ^^ on the other hand, you can create an extension and create root presets and not extension presets. This will avoid having 3 columns in the preset panel. On the other hand, this will require you to provide the presets apart from the extension file

  • SOUL

    10
    0 Votes
    10 Posts
    311 Views
    FortuneF

    @Christoph-Hart said in SOUL:

    I'm still waiting for @fortune to chime in about new feature additions :)

    Ahahahaha 😅😅

    No man, I really love your art and appreciate your effort so much.
    But sometimes I really need to criticize, because in my mind, this beautiful art, HISE, must be perfect. There shouldn't be any deficiencies in HISE.

    I hope it makes sense.

  • Is the forum slow today or is it on my side only?

    17
    0 Votes
    17 Posts
    484 Views
    ustkU

    Yes very strange... For instance, just to make this answer I had to click reply 5 times... nothing... go back to the main page, re-click the thread, reply again... all of that 3 times just to get the reply window...
    Bell notifications aren't working either (the popup shows up but the loading icon turns constantly)
    For information, I'm using safari on all devices (imac, iphone and ipad), I'll try to test from the windows laptop with different browsers...

  • Preset Browser

    4
    0 Votes
    4 Posts
    176 Views
    d.healeyD

    @MikeB I've been doing this for years and I still get frustrated, it's hard work.

    Share a snippet of what you have so far and we'll work on it.

  • How to create new groups?

    5
    0 Votes
    5 Posts
    231 Views
    d.healeyD

    @Felipe-Flores You can script it or you can copy some of the Es to the extra groups.

  • Sample switching with presets in Audio Loop Player

    12
    0 Votes
    12 Posts
    737 Views
    callybeatC

    I thought I would paste the solution of the theme here in case someone needs it ..
    :beaming_face_with_smiling_eyes:

    // Load Audiofiles into pool ---------------------------------------------------------------------------------------------- Engine.loadAudioFilesIntoPool(); //-------------------------------------------------------------------------------------------------------- // const vars---------------------------------------------------------------------------------------------- const var AudioLoopPlayer = Synth.getChildSynth("Sampler"); const var Random = Content.getComponent("Random"); const var Knob62 = Content.getComponent("Knob62"); const var Next = Content.getComponent("Next"); const var Prev = Content.getComponent("Prev"); //-------------------------------------------------------------------------------------------------------- // Array Samples in AudioFiles-Folder---------------------------------------------------------------------- const var inst = ["sample01.wav","sample02.wav","sample03.wav","sample04.wav","sample05.wav","sample06.wav","sample07.wav","CBsample2.wav"]; //-------------------------------------------------------------------------------------------------------- //Knob1 Sample selection--------------------------------------------------------------------------------- inline function onKnob62Control(component, value) { Synth.getAudioSampleProcessor("Sampler").setFile("{PROJECT_FOLDER}"+inst[value]); }; Content.getComponent("Knob62").setControlCallback(onKnob62Control); //-------------------------------------------------------------------------------------------------------- // Random Button------------------------------------------------------------------------------------------ Random.setControlCallback(onRandom_Control); inline function onRandom_Control(component, value) { if (value) { Knob62.setValue((Math.randInt(0, 5))); Knob62.changed(); } }; //-------------------------------------------------------------------------------------------------------- // Prev-Button---------------------------------------------------------------------------------------------- inline function onPrevControl(component, value) { if (value) { Knob62.getValue() > Knob62.get("min") ? Knob62.setValue(Knob62.getValue() - 1) : Knob62.setValue(Knob62.get("max")); Knob62.changed(); } }; Content.getComponent("Prev").setControlCallback(onPrevControl); //-------------------------------------------------------------------------------------------------------- // Next-Button ---------------------------------------------------------------------------------------------- inline function onNextControl(component, value) { if (value) { Knob62.getValue() < Knob62.get("max") ? Knob62.setValue(Knob62.getValue() + 1) : Knob62.setValue(Knob62.get("min")); Knob62.changed(); } }; Content.getComponent("Next").setControlCallback(onNextControl); //--------------------------------------------------------------------------------------------------------
  • Copy protection

    22
    0 Votes
    22 Posts
    1k Views
    Y

    @nesta99 when you open the snippet i sent you it doesn't work? on condition of having put the serial file in script of course.

  • slider pack reset

    3
    0 Votes
    3 Posts
    137 Views
    Y

    @iamlamprey I was almost there ^^ thank you

  • Create UI factory

    23
    0 Votes
    23 Posts
    986 Views
    MikeBM

    @ustk @ulrik

    Great - that's exactly it

    So, like from a library, you can add a new panel at any time without changing
    the position and functionality of the already placed .

    Great - you should definitely publish this in the snippets category if you want.
    I'm sure it will help others too.

    Thank you very much! Guys

  • MidiPlayer Drag to DAW

    6
    0 Votes
    6 Posts
    301 Views
    ?

    Ok seems like the range for the midiplayer is 0-0.95, unless I'm doing something incredibly stupid:

    3e403bd3-ac08-4d61-8329-3822d338adbd-image.png

    Taking a squiz into the paintroutine for it

    Edit: I think I should add I believe this just affects the display of it, not the actual MIDI data as that works on the grid in a DAW just fine

40

Online

1.7k

Users

11.6k

Topics

101.2k

Posts