If linkFile is missing....
-
So I'm building a set of plugins that use a 3rd-party installer, its responsible for setting up the LinkFile and installing the samples(.ch1) etc.
When the plugin starts I'd like to be able to check the LinkFile is present and pointing at the correct folder, which contains all the ch1 files for the product. All of this I can do, but I'd like the plugin NOT to be asking the user for the sample folder etc. if it cant find the linkFile, I'd like to be in charge of this bit...
do I just turn off Embed Audio Files? Or do I need those extra definitions to stop this happening?(Which I can never remember ..)
-
File.isFile()
checks if the file exists.To turn off the overlay messages you need to define
HISE_DEACTIVATE_OVERLAY =1
-
@Christoph-Hart said in If linkFile is missing....:
File.isFile()
checks if the file exists.- yeah this bit I get....
To turn off the overlay messages you need to define
HISE_DEACTIVATE_OVERLAY =1
cool thanks that deactivation is the one I want I think