PostCallback - isnt post the preset load
-
.. this is doing my head in AGAIN.....
could we please please please please, have the post preset load callback happen AFTER all the preset load processing is complete?
-
@Lindon is this for an fx plugin?
-
@DanH no.
-
@Lindon I'm sure we spoke about this before - if you're using samples potentially think abut using the loading callback - I'm using it successfully as an alternative to the supposed post preset callback
-
The post preset callback is supposed to be post preset and it‘s working here fine, so please make an example snippet that shows the issue.
-
@Christoph-Hart said in PostCallback - isnt post the preset load:
The post preset callback is supposed to be post preset and it‘s working here fine, so please make an example snippet that shows the issue.
sure it executes, after the "preset values" have loaded --- but not before all the samples have loaded....
-
@Lindon Presets and samples are separate things. The preset has no concept of samples. That's what the sample loading callback is for.
-
@d-healey said in PostCallback - isnt post the preset load:
@Lindon Presets and samples are separate things. The preset has no concept of samples. That's what the sample loading callback is for.
yeah - I remember now, having been schooled by @DanH - so thanks to you both....now wheres that t-shirt gone...?
-
LoadPanel.setLoadingCallback(function(isPreloading) { if(isPreloading) { do something if you want } else { do the ting }
-
@DanH thank you...