Hello,
How to clear the action list?
Please help.
How to clear the action list?
Please help.
Stdlib.deleteAllActionSets = function(confirmDelete) { if (confirmDelete != false) { if (!confirm("Do you really want to empty your Actions Palette?")) { return; } } var sets = Stdlib.getActionSets(); for (var i = sets.length-1; i >= 0; i--) { Stdlib.deleteActionSet(sets[i].name); } };
Comment