HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Rosace_Pony
    • Profile
    • Following 1
    • Followers 0
    • Topics 5
    • Posts 21
    • Groups 0

    Rosace_Pony

    @Rosace_Pony

    4
    Reputation
    9
    Profile views
    21
    Posts
    0
    Followers
    1
    Following
    Joined
    Last Online
    Location France

    Rosace_Pony Unfollow Follow

    Best posts made by Rosace_Pony

    • RE: New instrument - ORCHESTOOLS | STRINGS

      Omg this looks great! congrats!

      posted in General Questions
      Rosace_PonyR
      Rosace_Pony
    • RE: My Components are gone help

      @d-healey Yep that's what i did, i've remade my UI in a new 2.1 project using my old script

      posted in General Questions
      Rosace_PonyR
      Rosace_Pony
    • RE: TABS

      @d-healey Aw, didn't seen the typo, well i have no more errors, thanks you!

      posted in General Questions
      Rosace_PonyR
      Rosace_Pony
    • RE: [Bug] Problem with crossfade UI

      oh seems it's already reported here https://forum.hise.audio/topic/8384/when-i-clicking-this-button-a-bug-occurs/3

      posted in Bug Reports
      Rosace_PonyR
      Rosace_Pony

    Latest posts made by Rosace_Pony

    • RE: Effect Slot Crash

      @aaronventure Thanks, i've been trying to build it now but my build fails, i did opened the project in the projucer and checked if the SDK where unzipped wich it was here,
      When it fails i can see one error only, i'm in visual studio 2022 on Windows

      f9209f44-ea3d-4e0a-8f2f-1f0c685d9cfd-image.png

      posted in Bug Reports
      Rosace_PonyR
      Rosace_Pony
    • RE: Effect Slot Crash

      @d-healey Hey, i'm also having the crash when selecting any effects in the EffectSlot, i'm on HISE 3.6.2 from the dev branch wich i've built this month (14 feb 2024), it seems the link you've posted isn't working anymore

      posted in Bug Reports
      Rosace_PonyR
      Rosace_Pony
    • RE: [Bug] Problem with crossfade UI

      oh seems it's already reported here https://forum.hise.audio/topic/8384/when-i-clicking-this-button-a-bug-occurs/3

      posted in Bug Reports
      Rosace_PonyR
      Rosace_Pony
    • [Bug] Problem with crossfade UI

      Hello, so it seems when we press the crossfade button the inputfield to change the fade on the lower velocity is behind the inputfield from the higher velocity, you can see on top left side, i have set the higher velocity to 0 so there is no crossfade, but i can't touch the lower velocity as it's below, i'm using HISE 3. 6.2

      478f8a1a-9200-4566-a55f-f6e0ed32c0a7-image.png

      posted in Bug Reports
      Rosace_PonyR
      Rosace_Pony
    • RE: Need help,i'm trying to make an installer for my vst plugin

      @Lindon thanks i did build the hr1 file
      now i'm looking on where to put it so the user will not have to manually point it
      i see in the settings there is a "windows static lib folder" input but i'm not sure on how to what to write in ,i would need something like C:/programsfiles/mycompany

      posted in General Questions
      Rosace_PonyR
      Rosace_Pony
    • Need help,i'm trying to make an installer for my vst plugin

      Hi,

      I'm working on a small piano vst3 file
      it have two samples library,
      I'm using installforge to make the installer wich is free
      so my question is, what files and where should i install them?
      of course the vst3 file will go into /programfiles/comon/vst3/mycompany
      but for the samples any idea? also will Hise be able to locate them automatically, what would be the default path for that if possible?
      also when opening the vst for the first time it ask for the samples, wich one should i point to? a .ch1 file?

      Thanks

      posted in General Questions
      Rosace_PonyR
      Rosace_Pony
    • RE: Making a chorder (play chord with a button)

      @ustk You know if there is some projects with keyboards made from buttons?

      also the script synth.playnote just generate a sound when pushing the button, is there a way to make it write Midi Notes too(in example when recording in your Daw it would write notes)

      posted in Scripting
      Rosace_PonyR
      Rosace_Pony
    • RE: New instrument - ORCHESTOOLS | STRINGS

      Omg this looks great! congrats!

      posted in General Questions
      Rosace_PonyR
      Rosace_Pony
    • RE: Making a chorder (play chord with a button)

      @Lindon @d-healey I used various if here because i'm getting an error, well it seems i've forgot the brackets so now it work , thanks you :)

      and about making the FloatingTile Keyboard display the notes this button play, any idea on how i can do that?

      posted in Scripting
      Rosace_PonyR
      Rosace_Pony
    • Making a chorder (play chord with a button)

      Boop

      i'm trying to make a simple chorder, starting with a button playing a C major chord

      inline function onButtonCmajControl(component, value)
      {
          if (value)
      	    Synth.playNote(60, 64);	
          if (value)
      	    Synth.playNote(63, 64);	
      	if (value)
      	    Synth.playNote(67, 64);	
      	else
      	    Engine.allNotesOff();
      	    break;
      };
      

      This code work but the thing is it doesn't play the chord like if was playing with my keyboard (FloatingTileKeyboard) actually it just play the sound without displaying the notes on the keyboard

      posted in Scripting
      Rosace_PonyR
      Rosace_Pony