i seem to recall a while back someone posting a photoshop script that would take and export out folders as seperate files based on the folder name say i have a file with 50 folders in its layers, in each folder theres like 2 or 3 layers i would like to save these all out as .dds with each one named the same as the folder.…
vTools only saves to TGA (http://home.insightbb.com/~jamestaylor/ if you dont know it) sure you could first save them out as tga and batch convert to DDS. i used the vTools Folder Exporting heavily on a project (around 40-60 folders) - but as its scripted, it can take an awufully long time to process everything. maybe…
That's the 'code' to export a dds uncompressed with the last plugin ( not sure it works with older ones but it should ). You just need to replace the TGA part with that and change the "filename.dds" part with the corresponding variable. ( something like [ docRef.path + "/" + tempDoc.name + ".dds" ] ) var idsave =…
http://home.insightbb.com/~jamestaylor/ vSavePSDTGA and vQuickPSDTGA are the ones you want is old but works in my PS cs5 fine edit didnt notice someone already mentioned vtools
I don't have the dds plugin installed right now, so I'm not able to test code for dds exporting, but as kio mentioned, you could probably batch convert the TGA output. #target photoshopapp.bringToFront();docRef = app.activeDocument;for(i = 0; i < docRef.layerSets.length; i++) { tempDoc = app.documents.add(docRef.width,…
vTools comes to mind, but you would probably have to add prefixes to the name of each layer group. I also found this: http://www.damienvanholten.com/blog/export-groups-to-files-photoshop/ it saves out as PNGs but I'm sure you can modify to save as other formats.