Hi,
I want to create button that should do the following:
- Search for specific image types in the actual folder (recursive)
- Select all in the resulting list
- Convert all the images to defined format/size
So far I got this working. I created a button that runs the following internal commands:
Find NAME="*.(jpg|bmp|png|gif|webm)" SHOWRESULTS=source RECURSE IN {sourcepath$}
Select ALL
Image CONVERT=jpg QUALITY=90 WIDTH=500 PRESERVEASPECTRATIO HERE REPLACE ADDSUFFIX "_thumb"
When I run each command on its own it works, but when I run it like it is here it finds the images and selects them, but don't start the conversion. To me it looks like a timing issue,
like the conversion starts and no file is selected.
Any idea?
Regards
Stefan