Question for IamLamprey for NEAT Player
-
Hi, @iamlamprey. Today I have downloaded your NEAT player from your website. I have few question regarding it...
- How did you set Auto Sample Library Installer folder?
- How did you do Zoom in/Out button ?
In my case, my plugins always ask the end user where to install sample folder. That step confuses end users the most. You have preconfigured the steps. Linkwindows folder which holds the path of your sample folder automatically sets the location to :
C:\Users\Tania\Documents\iamlamprey\NEAT Player\SamplesAnd it doesn't ask to relaunch the plugin. How did you do that?
Last but not the least thanks for making amazing plugins. I will check out the library very soon. :)
-
Thanks for your questions :)
@Tania-Ghosh said in Question for IamLamprey for NEAT Player:
- How did you do Zoom in/Out button ?
const var Button_Zoom = Content.getComponent("Button_Zoom"); inline function onButton_ZoomControl(component, value) { if (value) { Settings.setZoomLevel(1.5); } else { Settings.setZoomLevel(1.0); } }; Content.getComponent("Button_Zoom").setControlCallback(onButton_ZoomControl);
- How did you set Auto Sample Library Installer folder?
In my case, my plugins always ask the end user where to install sample folder. That step confuses end users the most. You have preconfigured the steps. Linkwindows folder which holds the path of your sample folder automatically sets the location to :
C:\Users\Tania\Documents\iamlamprey\NEAT Player\SamplesAnd it doesn't ask to relaunch the plugin. How did you do that?
Last but not the least thanks for making amazing plugins. I will check out the library very soon. :)
Actually I think it's just defaulting to that location, I didn't set that up specifically. I've just disabled the popup on initialization, which you can do by adding these extra definitions in your project preferences:
HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON=0 HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON=0
See:
It has a button to change the sample folder, which I recommend everyone do in the Manual, and doing so prompts the user to restart the plugin as usual. So there's nothing too special going on here.
-
Linkwindows folder which holds the path of your sample folder automatically sets the location to :
C:\Users\Tania\Documents\iamlamprey\NEAT Player\Samples@d-healey Can We Have This Option For Hise Exporter?
-
Actually I think it's just defaulting to that location, I didn't set that up specifically. I've just disabled the popup on initialization, which you can do by adding these extra definitions in your project preferences:
-
@d-healey Well, What About Installation Of Samples To The Documents Folders?
I Aware Of That Folder, But We Don't Have The Install Samples Check Box?
Once We Select Build Instrumnet, Another Option For Samples Needed To Do This. -
Well, What About Installation Of Samples To The Documents Folders?
lampray said that's the default location, disable the popups using the extra definitions in project prefences.
-
@iamlamprey said in Question for IamLamprey for NEAT Player:
Thank you @iamlamprey :) (y)