@Lindon Thank you so much!!!
Posts made by nouslou
-
How to compile Hise properly before AAX export. Any Instructions?
Hi! How to compile Hise properly before AAX export? Any Instructions? I downloaded AAX sdk and I have all tools for signing AAX plugins, but can't understand how to build Hise for that for Mac and for windows. Thank's
-
RE: Reverb DSP and Allpass Filters
@iamlamprey Hello! Did you managed to built a simple reverb with allpass filters in scriptnode? Trying to do it myself too, but can't figured up how those allpass in scriptnode should I use. Was trying to make a reverb in Bitwig Grid with the help of allpass filters there - worked pretty good
-
RE: Need help to figure out how updates for users work.
@d-healey Great, thank you very much!
-
RE: Need help to figure out how updates for users work.
@d-healey is there a way to know what plugin code I set for previous version?) Because looks like I changed it every time I exported plugins for test)
-
RE: Need help to figure out how updates for users work.
@Lindon Looks like it sin't an option for me right now) How do you manage your updates procedure?
-
Need help to figure out how updates for users work.
Hi, everyone! I'm using White Packages for macOS to make an installer for a plugin.
Problem 1:
Why when I install a new version of the plugin _1.1.0 (with the same name as the previous one) in the folder /Library/Audio/Plug-Ins/Components and VST3 after the installation (which was successful) the old plugins of version 1.0.0 are still there and there are no new plugins? I can not understand why it does not replace files automatically? Is it really necessary to ask the user to manually delete the .vst3 and .component files on their computer before installing the update?
Problem 2:
The plugin update has new presets (read articulations) (I use presets to switch articulations and the user cannot change them) and I changed the old ones a bit. So when I install the update and before that, if I do not manually delete plugin folder in ~Library(the one that is hidden)/Application Support/' my company'/'my plugin this folder with files, then new presets are not added to this folder. If I manually delete all the files before installing the new version of the plugin, then everything is fine.
And Windows I have the same problem. Before installing update - I need to go to Roaming/AppData/Company etc and manually delete folder with presets.What can be the solution to make it automatically without no asking users to do it manually before upgrade? Thank's
-
RE: Font spacing using Graphics.setFontWithSpacing
@d-healey Have the same problem. And what can be the solution for spacing in this case? THank you a lot
-
RE: Can't to export
Still getting those errors (( Is anybody now what should I do? Thank's
-
RE: Piano Pedal Behavior
@d-healey Somehow it doesn't work:
I mean if I write
if (CCNumber == 64)
Even pedal samples stop to work. Am I blind somewhere? :)
-
RE: Piano Pedal Behavior
@d-healey should it looks like this?
if (CCNumber == 64) { if "my code" }
-
Piano Pedal Behavior
Hi everyone! Have a samplers in my piano project which have pedal down and up samples. I use midimuters and my script looks like (I put it into my pedal up and down samplers):
function onController() { if (Synth.isSustainPedalDown() == true) { muteup.setAttribute(0, 1); } if (Synth.isSustainPedalDown() == false) { muteup.setAttribute(0, 1); Synth.playNote(0, 100); } }
Pedal up and down samples are working just fine with my sustain pedal. But the problem is now this script reacts to all others midi controller knobs :) For example I can touch my Pitch Bend - and while I use it - pedal down and up samples are sounds too etc. How can I change this script to react only on sustain pedal? Thank you!
-
RE: Can't to export
@parabuh Actually almost all commits are building just fine. I have only problem while export vst/au. I tried not only last commit, but previous too (
-
Can't to export
Hi everyone! What is this problem about and how can I solve this one? Everything was working, but suddenly I started to get this errors while export. Catalina and Xcode 10.3
Thank's!
-
RE: Strange behavior with Presets
@d-healey Thank you so much, David, as usual!! I managed to solve this
-
RE: Strange behavior with Presets
@d-healey and how can I declare each preset? Because for every specific preset there are different panels need to show/hide . I mean how to tell Hise for example : if I choose this preset_1 manually from preset Browser - do this, but when I manually from preset browser choose preset_2 - do that
-
RE: Strange behavior with Presets
@d-healey I totally don't understand how to implement this) I wrote this code. But every time I choose preset manually or with buttons - Hise crashes. Where should I exactly put it?
const var presetHandler = Engine.createUserPresetHandler(); presetHandler.setPostCallback(postPreCallback); inline function postPreCallback() { Panel3.showControl(true); Panel4.showControl(false); }