Question
Using Javascript to manage the File Save Options
Hi all,
I'm trying to imitate the following preferences in Illustrator, disabling them all by using Javascript...

The following worked a treat, and do exactly what's being asked:
app.preferences.setBooleanPreference('CrashRecovery/AutomaticallySave', false);
app.preferences.setBooleanPreference('CrashRecovery/TurnOffForComplexDocument', false);
However, the following don't seem to work at all, where am I going wrong?
app.preferences.setBooleanPreference('enableBackgroundSave', false);
app.preferences.setBooleanPreference('enableBackgroundExport', false);
app.preferences.setBooleanPreference('cloudAIEnableAutoSave', false);
Any help would be much appreciated!
Cheers,
Sam
