main workspace not show up
-
@d-healey Ok so in
BackendApplicationCommands.cpp
, line 266, change the lastbool
totrue
It'll just call the Save As window (if the XML already exists), so it's not great but better than clicking the menu twice...setCommandTarget(result, "Save as XML", GET_PROJECT_HANDLER(bpe->getMainSynthChain()).isActive(), false, 'X', true);
You can change the letter if you wish.
I tried to implement a
Save XML
menu entry the same way it works withSave Archive
with a YES/NO and "Overwrite" box but after adding a dozen lines to create the menu entry, handling the whole XML rewriting process is way out of my skills...Also, it should be possible to add another modifierKey like SHIFT for a SHIFT+CMD+S by adding just a new argument...
I'll try... -
@ustk Thanks, I'll take a look at it.
-
@d-healey Here's with shift+cmd+S:
setCommandTarget(result, "Save as XML", GET_PROJECT_HANDLER(bpe->getMainSynthChain()).isActive(), false, 'X', true); TO setCommandTarget(result, "Save as XML", GET_PROJECT_HANDLER(bpe->getMainSynthChain()).isActive(), false, 'S', true, ModifierKeys::commandModifier | ModifierKeys::shiftModifier);
You can also invert it with the Archive command
Save As XML
=> CMD + S
Save Archive
=> SHIFT + CMD + S -
Having the same issue now, all of my previous projects are now doing this crap.
No samplers or anything showing up.
Tried to paste the SendFX snippet into HISE and even it is doing the same thing (nothing in main workspace).
Nothing changed on the PC :( -
@Dalart .hip or .xml?
-
@d-healey Neither will load, I backup in XML and archive.
Using Scriptnode 2.1.0 build 650 with IPP installed. -
@Dalart Run your XML through an xml validator and see if there is an error. I made a video about this
-
@d-healey Thanks David :)
-
There's also the Create Recovery XML from HIP function in the file menu if you end up with a corrupted .hip file (which is impossible to validate unlike XML).
-
@Christoph-Hart Thanks Christoph :)