How do I set additional Preflight options...
Hi Folks,
I'm attempting to write an AppleScript to create a Preflight profile in InDesign CS5.
I've worked out how to create the profile, give it a name, and set some of the properties using code similar to this shown below:
tell application "Adobe InDesign CS5"
set profileName to "TEST PROFILE"
set profileDescription to "This text describes what the profile does..."
set newProfile to make new preflight profile with properties {name:profileName}
set description of newProfile to profileDescription
tell newProfile
set TrnspBlendOptions to make preflight rule instance with properties {id:"ADBE_TransparencyBlending"}
set flag of TrnspBlendOptions to return as error
end tell
end tell
This code above will configure the settings as shown in the screenshot below:

My question is...
How do I access and set additional properties?
In this instance how do I set the colorspace to be RGB ?
Cheers, Rob.
