Just another quick example of how to make Photoshop do your bidding. This is bare bones basics so don't expect a massive revelation if you have been doing PS scripting for a while. Running this script will give you a document with a bunch of layers and groups. Real useful, I know. But the goal is just to see how those layers and groups are made, named and accessed. If anyone out there is using Python with Photoshop I'd be interested in hearing about how you have used it and what kind of tasks you have found it useful for! Anyway, here we go: ############################################################################## # # Here is a quick code sample showing how to manage different layers and groups # in a photoshop document using Python. # # Pete Hanshaw, 2012 # http://peterhanshawart.blogspot.com.au/ # ############################################################################## # # How to make a layerSet (aka, 'group') artLayer (aka 'layer'), how to make ...