-
Extendscript: Button stays highlighted after click
Is their a way to deselect a button after its been clicked?
currently I have:
myPanel.grp.groupOne.myPurgeButton.onClick = function () {
var newPurgeButton = app.purge(PurgeTarget.IMAGE_CACHES);
}The only thing I can find is that if I add
myPanel.grp.groupOne.myPurgeButton.active = false;
it seems to work on the first click, but not on any consecutive clicks.Any ideas on how to do this?
Thanks,
-Jay