Thank you everybody for your advice
Posts
-
RE: Can i export a AUi for MAC from Window?
-
Can i export a AUi for MAC from Window?
I created Virtual Instruments with HISE, i would like to share this to MAC users too, but it's available on Window version. I see .vst/vst3 only.
I wonder if we can export plugins for MAC from Window.
Thank you your help!
If it's impossible, never mind! I will learn XCode and buy a Macbook later -
RE: Please help to create VU Meter
@dustbro Thank you Author's instruction post reply, no, i don't skip step 10.
But almost code i'm manually adding, i think it wrong here, because some steps following you, when press ESC button, nothing display.
Eg. var reduction = Dynamics1.getAttribute(Dynamics1.CompressorReduction);
I don't see the yellow entry like you : Dynamics1.Dynamics1.CompressorReduction (yellow colour)..![alt -
RE: Please help to create VU Meter
@d-healey i'm using 21.0 version, i follow your instruction and built it a few day ago. Sorry, am newbie and too less infom about script
-
Please help to create VU Meter
I try to make my own VU Meter following on this instruction (very detail) till step 11 (not working)
https://forum.hise.audio/topic/2222/vu-meter/2My script:
const var Dynamics1 = Synth.getEffect("Dynamics1");const var ScriptSlider1 = Content.getComponent("ScriptSlider1");
const var t = Engine.createTimerObject();
t.setTimerCallback(function()
{var reduction = Dynamics1.getAttribute(Dynamics1.CompressorReduction); reduction = Engine.getGainFactorForDecibels(reduction); ScriptSlider1.setValue(reduction);
});
Thank you! -
Is possible change compiled default path of Visual Studio 2017?
Hello everyone!
Hise was created by visual studio 2017 community, and we got the setting path when exporting/building vst like this:
C:\Program Files (x86)\Microsoft Visual Studio\2017community\MSBuild\15.0\Bin\MSBuild.exeI am using enterprise version, i would like to ask if we can change the path like this:
C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\MSBuild.exeI still set it up manually (by open batch file and replace the path), but it's not so convernient.
Thanks for everybody's help!
-
RE: Please help with link midi controller mod wheel (cc1) to Knob
@d-healey said in Please help with link midi controller mod wheel (cc1) to Knob:
MIDI learn
I got it, thank you so much David. Midi assign, it show up on preview GUI :)))
-
Please help with link midi controller mod wheel (cc1) to Knob
Hello everybody! I'm newbie. I'm learning from d.healey channel a lot. Thank you!
Please help me this: How can link mod wheel to a knob, detail like this, i create a knob and want to link this to midi cc1 to control dynamic.
Thanks