Hi everybody, I have a checkbox defined as this: var passThrough = groupTwo.add ("checkbox", undefined, "passThrough"); And I'm trying to store the checkbox value in the AE Preference setting file, using this code here: passThrough.onClick = function(){ app.settings.saveSetting("EVLCopy", "passThrough", passThrough.value); } It doesn't work. The getSetting method doesn't work neither (over a setting that already exists in the file): passThrough.onClick = function(){ var testing = app.settings.getSetting("AE_OpenGL","Downsample Factor"); alert(testing); } What the heck am I doing wrong?
... View more