Search found 1 match
- October 2nd, 2020, 2:42 pm
- Forum: Script requests
- Topic: Remove hidden properties and effects
- Replies: 0
- Views: 39931
Remove hidden properties and effects
How to delete hidden properties (Like Fill - Stroke - Trim Paths of shape layers) and effects from selected layers? This script removes hidden Fill: function myHandler1(g){ if (g.matchName === "ADBE Vector Graphic - Fill" && g.enabled == false) g.remove(); }; function scoutContent(...