Omg this looks great! congrats!
Best posts made by Rosace_Pony
-
RE: New instrument - ORCHESTOOLS | STRINGS
-
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
-
RE: TABS
@d-healey Aw, didn't seen the typo, well i have no more errors, thanks you!
-
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
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 -
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
-
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
-
[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
-
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 -
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
-
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)
-
RE: New instrument - ORCHESTOOLS | STRINGS
Omg this looks great! congrats!
-
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?
-
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