GIF Format Options
I'm trying to add GIF settings for Save for Web and Devices to a script I have. It has 2 different areas for FileSaveOptions (shown below). Can someone please tell me how or where do I tell the script to incorporate each of the settings in the attached example?
self.gifTransparency = true;
self.gifInterlaced = false;
--------------------------------------------------------------------------
case "gif": {
saveOpts.transparency = toBoolean(fsOpts.gifTransparency);
saveOpts.interlaced = toBoolean(fsOpts.gifInterlaced);
saveOpts._convertToIndexed = true;
saveOpts._flatten = true;
saveOpts._8Bit = true;
break;
