@Oli-Ullmann again im just using the example project https://github.com/christophhart/hise_tutorial "Simple Copy Protection" so i know its not related to the code
Posts
-
RE: Simple Copy Protection MacOS Issue
-
RE: Simple Copy Protection MacOS Issue
@Oli-Ullmann sorry no this is in the exported plugin. it works fine on windows but on macos it is not creating the json file with the serial. and prompts for it every time the plugin is loaded
-
RE: Simple Copy Protection MacOS Issue
@Oli-Ullmann imjust using the boiler plate example but the code looks like this
// Stores the file to the hard drive. In HISE it will be the project folder // but in the compiled plugin it will use the parent directory to the // user preset directory (which is usually the app data folder). Engine.dumpAsJSON(data, "../RegistrationInfo.js");
i think the issue is as @aaronventure said and its a flag that im missing but im really not seeing where. it works fine, just under certain condition. the folder needs to be present but empty.. gotta mean im doing something wrong in packages i think
-
RE: Simple Copy Protection MacOS Issue
@aaronventure thanks, where do i enable write permissions? i tried in packages but no luck
-
Simple Copy Protection MacOS Issue
i am attempting to use hise simple copy protection for a plugin. its working fine on windows but on mac the serial is not being written to RegistrationInfo.js file. it just keeps reprompting.
the file needs to be written to the application support/my company/my plugin folder but it seems some hidden permissions setting is preventing it? have any of you had this?
-
RE: Is it possible to set a custom StepSize
@ustk you sir are the man, thank you
-
RE: SliderPack popup value.
do you know if this was ever implemented? @d-healey
-
Is it possible to set a custom StepSize
I want to do this specifically with the sliderpacks. i understand the range needs to be 0.0 to 1.0 but id like to set it to a custom step size like 0.04 etc. is this possible with scripting?
-
RE: WebView Doesn't Work in Compiled Plugins and Stand-alone Apps
@DabDab did you ever get a resolution for this? my webview is working on one computer but not the other with seemingly the same setup. im a bit lost haha
-
Question about plugin 'Focus'
Hi guys, I've noticed that in FL Studio my plugin basically "takes over" the keyboard. Meaning when it's selected, the spacebar doesnt play/stop as usual. Does anyone know the fix for this?
I see we have Focus in the api now, is this what needs to be called?
-
RE: WebView Doesn't Work in Compiled Plugins and Stand-alone Apps
getting the same issue as @DabDab
-
Tone.js in WebView
Is it possible to use to Tone.js to send sound to Hise through a WebView? trying and Tone js is being loaded but im not getting any sound.
-
RE: Reading DAW Grid Time Value
@ulrik no unfortunately this wouldn’t work as I need the time in samples to be passed and perfectly synced with DSP’s audio buffer. In my second comment there’s a media fire link you can download and
you can see im using the hise:TempoListener in C++this is a very simple and easy thing to do in juce by just calling getAudioPlayhead on the plugin processor and passing it to the dsp processors. But hise doesn’t seem to expose this info in c++ unless im missing it. maybe @Christoph-Hart could clarify that?