in extendscript - Photoshop, dialog-box persistence?
问题 in extendscript - Photoshop, I would like my dialog-box check boxes to default to previously used choices ... anyone know if this is possible? 回答1: You have two choices. First choice: Using a //@targetengine Values can be made persistent over a session using a targetengine. First script //@targetengine myengine var x = 100; Second script //@targetengine myengine $.writeln(x); If you close Photoshop all of the values will be lost Second choice: Write to a file. I wont write an example here.