AN EASY WAY TO GENERATE THE BASIC SLIDESHOW ARRAY FROM A LIST OF IMAGE TITLES AND ORIENTATIONS 1. Make a list of the image names (without the _med.jpg or _tmb.jpg, etc.) 1a. Run Tools > Add/Remove Line Numbers... to number the lines 2. after each image, put an ! and h or v for the orientation 3. run a BBEdit Grep (regular expression) search/replace on the list for example, if the list is like 9 Ramsey01!h 10 Ramsey03!v search for: (\d+) (Ramsey\d\d)!([hv]) and replace with: \r\t\1 => array (\r\t\t"image" => "\2",\r\t\t"orientation" => "\3",\r\t\t"color" => "c",\r\t\t"sidecaption" => "",\r\t\t"undercaption" => "",\r\t\t"photographer" => "The Pluralism Project",\r\t\t"year" => "2003"\r\t\t),\r