Copy link to clipboard
Copied
I don't think I've ever been so fast before:
http://www.jongware.com/idjshelp.html is updated, it now also contains my Friendly Help for CS6, as both HTML (separate files) and CHM (one compiled file for use with a Windows Help viewer).
By way of experiment I added a "Full Index" to the HTML version. This is a single huge file, 2.7MB, but it contains links to all properties and methods in the entire set of files. So if you can't use the live one in the compiled CHM, you can still use this one to get a good overview of What to find Where.
... Enjoy!
Copy link to clipboard
Copied
Jognware,
Thanks for that. Would it be possible for you to do a difference list, that is, to do a list with "what's new in CS6"? New properties, methods, and enumerations? I did a few of those in the past but it has become a bit of a hassle in recent years.
Thanks,
Peter
Copy link to clipboard
Copied
Aw, come on! I really like the layout of your lists (that nice font in particular
).
I don't know if I can do the same; purely theoretically it ought to be possible with XSLT (which, I'm sure you know, I am using to process the data files). But I can't think of a good method off the top of my head.
Copy link to clipboard
Copied
Yeah, it's been on my list before. I believe what you want to do is just produce a file with the suite and class for all properties. You know:
Basics Application activeBook
Basics Application activeDocument
and then sort them and compare with diff. Similarly for the methods and enumerations and whatnot.
And I guess we could skip the suite, since it's not as easy in the XSLT since you'd have to look it up in the <map/> rather than just noting the parent properties in the <package/>.
Maybe I'll be enthused to try this before my idea of when Jongware wakes up 🙂
Copy link to clipboard
Copied
Maybe I'll be enthused to try this before my idea of when Jongware wakes up 🙂
Right. So, here's some XSLT:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text"/>
<xsl:template match="text()|@*"/> <!-- Suppress default text output -->
<xsl:template match="property|method">
<xsl:call-template name="list-name-and-grandparent-name-with-tabs"/>
</xsl:template>
<xsl:template name="list-name-and-grandparent-name-with-tabs">
<xsl:value-of select="name()"/>
<xsl:if test="../../@enumeration">(enum)</xsl:if>
<xsl:text>	</xsl:text>
<xsl:value-of select="name()"/><xsl:text>	</xsl:text>
<xsl:value-of select="../../@name"/><xsl:text>	</xsl:text>
<xsl:value-of select="@name"/><xsl:text>	</xsl:text>
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
Hopefully it's self-explanatory. I even added the "(enum)" to distinguish enums from regular properties. Just for you, Peter K!
Then we just run it on the omv cachefiles, sort the output, and do some comparisons with "comm."
That is:
xsltproc omv.xsl omv\$indesign-7.5\$7.5.xml | sort > 7575.txt
xsltproc omv.xsl omv\$indesign-8.0\$8.0.xml | sort > 8080.txt
I hope it's not a dumb idea to put this all in one long post...
For instance, the following 29 items were removed from CS5.5 to CS6 (comm -23 7575.txt 8080.txt):
| property | Button | visibilityInPdf | |
| property | DocumentPreference | masterTextFrame | |
| property | DocumentPreset | masterTextFrame | |
| property | EPubExportPreference | cssExportOption | |
| property | EPubExportPreference | externalCSSPath | |
| property | EPubExportPreference | format | |
| property | EPubExportPreference | marginUnit | |
| property | EPubExportPreference | spaceUnit | |
| property | EPubExportPreference | useTocStyle | |
| property | HTMLExportPreference | bottomMargin | |
| property | HTMLExportPreference | externalCSSPath | |
| property | HTMLExportPreference | javascriptURL | |
| property | HTMLExportPreference | leftMargin | |
| property | HTMLExportPreference | linkToJavascript | |
| property | HTMLExportPreference | marginUnit | |
| property | HTMLExportPreference | rightMargin | |
| property | HTMLExportPreference | spaceUnit | |
| property | HTMLExportPreference | topMargin | |
| property | ObjectExportOption | customImageAlignment | |
| property | ObjectExportOption | spaceUnit | |
| property | PagesPanel | verticalView | |
| property(enum) | SpaceUnitType | CSS_EM | |
| property(enum) | SpaceUnitType | CSS_PIXEL | |
| property(enum) | StyleSheetExportOption | EXTERNAL_CSS | |
| property(enum) | StyleSheetExportOption | STYLE_NAME_ONLY | |
| property(enum) | VisibilityInPdf | HIDDEN_BUT_PRINTABLE_IN_PDF | |
| property(enum) | VisibilityInPdf | HIDDEN_IN_PDF | |
| property(enum) | VisibilityInPdf | VISIBLE_BUT_DOES_NOT_PRINT_IN_PDF | |
| property(enum) | VisibilityInPdf | VISIBLE_IN_PDF |
And the following 1,984 were added in CS6 (comm -13 7575.txt 8080.txt):
| method | Button | contentPlace | |
| method | CellStyleMapping | addEventListener | |
| method | CellStyleMapping | getElements | |
| method | CellStyleMapping | remove | |
| method | CellStyleMapping | removeEventListener | |
| method | CellStyleMapping | toSource | |
| method | CellStyleMapping | toSpecifier | |
| method | CellStyleMappings | [] | |
| method | CellStyleMappings | add | |
| method | CellStyleMappings | anyItem | |
| method | CellStyleMappings | count | |
| method | CellStyleMappings | everyItem | |
| method | CellStyleMappings | firstItem | |
| method | CellStyleMappings | item | |
| method | CellStyleMappings | itemByRange | |
| method | CellStyleMappings | lastItem | |
| method | CellStyleMappings | middleItem | |
| method | CellStyleMappings | nextItem | |
| method | CellStyleMappings | previousItem | |
| method | CellStyleMappings | toSource | |
| method | CharStyleMapping | addEventListener | |
| method | CharStyleMapping | getElements | |
| method | CharStyleMapping | remove | |
| method | CharStyleMapping | removeEventListener | |
| method | CharStyleMapping | toSource | |
| method | CharStyleMapping | toSpecifier | |
| method | CharStyleMappings | [] | |
| method | CharStyleMappings | add | |
| method | CharStyleMappings | anyItem | |
| method | CharStyleMappings | count | |
| method | CharStyleMappings | everyItem | |
| method | CharStyleMappings | firstItem | |
| method | CharStyleMappings | item | |
| method | CharStyleMappings | itemByRange | |
| method | CharStyleMappings | lastItem | |
| method | CharStyleMappings | middleItem | |
| method | CharStyleMappings | nextItem | |
| method | CharStyleMappings | previousItem | |
| method | CharStyleMappings | toSource | |
| method | CheckBox | addEventListener | |
| method | CheckBox | applyObjectStyle | |
| method | CheckBox | asynchronousExportFile | |
| method | CheckBox | autoTag | |
| method | CheckBox | bringForward | |
| method | CheckBox | bringToFront | |
| method | CheckBox | changeObject | |
| method | CheckBox | clearObjectStyleOverrides | |
| method | CheckBox | clearTransformations | |
| method | CheckBox | contentPlace | |
| method | CheckBox | convertShape | |
| method | CheckBox | convertToObject | |
| method | CheckBox | detach | |
| method | CheckBox | duplicate | |
| method | CheckBox | exportFile | |
| method | CheckBox | extractLabel | |
| method | CheckBox | findObject | |
| method | CheckBox | fit | |
| method | CheckBox | flipItem | |
| method | CheckBox | getElements | |
| method | CheckBox | insertLabel | |
| method | CheckBox | markup | |
| method | CheckBox | move | |
| method | CheckBox | override | |
| method | CheckBox | placeXML | |
| method | CheckBox | redefineScaling | |
| method | CheckBox | reframe | |
| method | CheckBox | remove | |
| method | CheckBox | removeEventListener | |
| method | CheckBox | removeOverride | |
| method | CheckBox | resize | |
| method | CheckBox | resolve | |
| method | CheckBox | select | |
| method | CheckBox | sendBackward | |
| method | CheckBox | sendToBack | |
| method | CheckBox | store | |
| method | CheckBox | toSource | |
| method | CheckBox | toSpecifier | |
| method | CheckBox | transform | |
| method | CheckBox | transformAgain | |
| method | CheckBox | transformAgainIndividually | |
| method | CheckBox | transformSequenceAgain | |
| method | CheckBox | transformSequenceAgainIndividually | |
| method | CheckBox | transformValuesOf | |
| method | CheckBoxes | [] | |
| method | CheckBoxes | add | |
| method | CheckBoxes | anyItem | |
| method | CheckBoxes | count | |
| method | CheckBoxes | everyItem | |
| method | CheckBoxes | firstItem | |
| method | CheckBoxes | item | |
| method | CheckBoxes | itemByID | |
| method | CheckBoxes | itemByName | |
| method | CheckBoxes | itemByRange | |
| method | CheckBoxes | lastItem | |
| method | CheckBoxes | middleItem | |
| method | CheckBoxes | nextItem | |
| method | CheckBoxes | previousItem | |
| method | CheckBoxes | toSource | |
| method | ClearFormBehavior | addEventListener | |
| method | ClearFormBehavior | extractLabel | |
| method | ClearFormBehavior | getElements | |
| method | ClearFormBehavior | insertLabel | |
| method | ClearFormBehavior | remove | |
| method | ClearFormBehavior | removeEventListener | |
| method | ClearFormBehavior | toSource | |
| method | ClearFormBehavior | toSpecifier | |
| method | ClearFormBehaviors | [] | |
| method | ClearFormBehaviors | add | |
| method | ClearFormBehaviors | anyItem | |
| method | ClearFormBehaviors | count | |
| method | ClearFormBehaviors | everyItem | |
| method | ClearFormBehaviors | firstItem | |
| method | ClearFormBehaviors | item | |
| method | ClearFormBehaviors | itemByID | |
| method | ClearFormBehaviors | itemByName | |
| method | ClearFormBehaviors | itemByRange | |
| method | ClearFormBehaviors | lastItem | |
| method | ClearFormBehaviors | middleItem | |
| method | ClearFormBehaviors | nextItem | |
| method | ClearFormBehaviors | previousItem | |
| method | ClearFormBehaviors | toSource | |
| method | ComboBox | addEventListener | |
| method | ComboBox | applyObjectStyle | |
| method | ComboBox | asynchronousExportFile | |
| method | ComboBox | autoTag | |
| method | ComboBox | bringForward | |
| method | ComboBox | bringToFront | |
| method | ComboBox | changeObject | |
| method | ComboBox | clearObjectStyleOverrides | |
| method | ComboBox | clearTransformations | |
| method | ComboBox | contentPlace | |
| method | ComboBox | convertShape | |
| method | ComboBox | convertToObject | |
| method | ComboBox | detach | |
| method | ComboBox | duplicate | |
| method | ComboBox | exportFile | |
| method | ComboBox | extractLabel | |
| method | ComboBox | findObject | |
| method | ComboBox | fit | |
| method | ComboBox | flipItem | |
| method | ComboBox | getElements | |
| method | ComboBox | insertLabel | |
| method | ComboBox | markup | |
| method | ComboBox | move | |
| method | ComboBox | override | |
| method | ComboBox | placeXML | |
| method | ComboBox | redefineScaling | |
| method | ComboBox | reframe | |
| method | ComboBox | remove | |
| method | ComboBox | removeEventListener | |
| method | ComboBox | removeOverride | |
| method | ComboBox | resize | |
| method | ComboBox | resolve | |
| method | ComboBox | select | |
| method | ComboBox | sendBackward | |
| method | ComboBox | sendToBack | |
| method | ComboBox | store | |
| method | ComboBox | toSource | |
| method | ComboBox | toSpecifier | |
| method | ComboBox | transform | |
| method | ComboBox | transformAgain | |
| method | ComboBox | transformAgainIndividually | |
| method | ComboBox | transformSequenceAgain | |
| method | ComboBox | transformSequenceAgainIndividually | |
| method | ComboBox | transformValuesOf | |
| method | ComboBoxes | [] | |
| method | ComboBoxes | add | |
| method | ComboBoxes | anyItem | |
| method | ComboBoxes | count | |
| method | ComboBoxes | everyItem | |
| method | ComboBoxes | firstItem | |
| method | ComboBoxes | item | |
| method | ComboBoxes | itemByID | |
| method | ComboBoxes | itemByName | |
| method | ComboBoxes | itemByRange | |
| method | ComboBoxes | lastItem | |
| method | ComboBoxes | middleItem | |
| method | ComboBoxes | nextItem | |
| method | ComboBoxes | previousItem | |
| method | ComboBoxes | toSource | |
| method | ContentPlacerObject | addEventListener | |
| method | ContentPlacerObject | getElements | |
| method | ContentPlacerObject | load | |
| method | ContentPlacerObject | removeEventListener | |
| method | ContentPlacerObject | toSource | |
| method | ContentPlacerObject | toSpecifier | |
| method | Document | createAlternateLayout | |
| method | Document | deleteAlternateLayout | |
| method | EPS | contentPlace | |
| method | EPSText | contentPlace | |
| method | FontLockingPreference | addEventListener | |
| method | FontLockingPreference | getElements | |
| method | FontLockingPreference | removeEventListener | |
| method | FontLockingPreference | toSource | |
| method | FontLockingPreference | toSpecifier | |
| method | FormField | contentPlace | |
| method | Graphic | contentPlace | |
| method | GraphicLine | contentPlace | |
| method | Group | contentPlace | |
| method | Guide | resolve | |
| method | Guide | transformValuesOf | |
| method | HtmlItem | addEventListener | |
| method | HtmlItem | applyObjectStyle | |
| method | HtmlItem | asynchronousExportFile | |
| method | HtmlItem | autoTag | |
| method | HtmlItem | changeObject | |
| method | HtmlItem | clearObjectStyleOverrides | |
| method | HtmlItem | clearTransformations | |
| method | HtmlItem | contentPlace | |
| method | HtmlItem | convertShape | |
| method | HtmlItem | detach | |
| method | HtmlItem | duplicate | |
| method | HtmlItem | exportFile | |
| method | HtmlItem | extractLabel | |
| method | HtmlItem | findObject | |
| method | HtmlItem | fit | |
| method | HtmlItem | flipItem | |
| method | HtmlItem | getElements | |
| method | HtmlItem | insertLabel | |
| method | HtmlItem | markup | |
| method | HtmlItem | move | |
| method | HtmlItem | override | |
| method | HtmlItem | place | |
| method | HtmlItem | placeXML | |
| method | HtmlItem | redefineScaling | |
| method | HtmlItem | reframe | |
| method | HtmlItem | remove | |
| method | HtmlItem | removeEventListener | |
| method | HtmlItem | removeOverride | |
| method | HtmlItem | resize | |
| method | HtmlItem | resolve | |
| method | HtmlItem | select | |
| method | HtmlItem | store | |
| method | HtmlItem | toSource | |
| method | HtmlItem | toSpecifier | |
| method | HtmlItem | transform | |
| method | HtmlItem | transformAgain | |
| method | HtmlItem | transformAgainIndividually | |
| method | HtmlItem | transformSequenceAgain | |
| method | HtmlItem | transformSequenceAgainIndividually | |
| method | HtmlItem | transformValuesOf | |
| method | HtmlItems | [] | |
| method | HtmlItems | add | |
| method | HtmlItems | anyItem | |
| method | HtmlItems | count | |
| method | HtmlItems | everyItem | |
| method | HtmlItems | firstItem | |
| method | HtmlItems | item | |
| method | HtmlItems | itemByID | |
| method | HtmlItems | itemByName | |
| method | HtmlItems | itemByRange | |
| method | HtmlItems | lastItem | |
| method | HtmlItems | middleItem | |
| method | HtmlItems | nextItem | |
| method | HtmlItems | previousItem | |
| method | HtmlItems | toSource | |
| method | Image | contentPlace | |
| method | ImportedPage | contentPlace | |
| method | Link | goToSource | |
| method | LinkedPageItemOption | addEventListener | |
| method | LinkedPageItemOption | getElements | |
| method | LinkedPageItemOption | removeEventListener | |
| method | LinkedPageItemOption | toSource | |
| method | LinkedPageItemOption | toSpecifier | |
| method | ListBox | addEventListener | |
| method | ListBox | applyObjectStyle | |
| method | ListBox | asynchronousExportFile | |
| method | ListBox | autoTag | |
| method | ListBox | bringForward | |
| method | ListBox | bringToFront | |
| method | ListBox | changeObject | |
| method | ListBox | clearObjectStyleOverrides | |
| method | ListBox | clearTransformations | |
| method | ListBox | contentPlace | |
| method | ListBox | convertShape | |
| method | ListBox | convertToObject | |
| method | ListBox | detach | |
| method | ListBox | duplicate | |
| method | ListBox | exportFile | |
| method | ListBox | extractLabel | |
| method | ListBox | findObject | |
| method | ListBox | fit | |
| method | ListBox | flipItem | |
| method | ListBox | getElements | |
| method | ListBox | insertLabel | |
| method | ListBox | markup | |
| method | ListBox | move | |
| method | ListBox | override | |
| method | ListBox | placeXML | |
| method | ListBox | redefineScaling | |
| method | ListBox | reframe | |
| method | ListBox | remove | |
| method | ListBox | removeEventListener | |
| method | ListBox | removeOverride | |
| method | ListBox | resize | |
| method | ListBox | resolve | |
| method | ListBox | select | |
| method | ListBox | sendBackward | |
| method | ListBox | sendToBack | |
| method | ListBox | store | |
| method | ListBox | toSource | |
| method | ListBox | toSpecifier | |
| method | ListBox | transform | |
| method | ListBox | transformAgain | |
| method | ListBox | transformAgainIndividually | |
| method | ListBox | transformSequenceAgain | |
| method | ListBox | transformSequenceAgainIndividually | |
| method | ListBox | transformValuesOf | |
| method | ListBoxes | [] | |
| method | ListBoxes | add | |
| method | ListBoxes | anyItem | |
| method | ListBoxes | count | |
| method | ListBoxes | everyItem | |
| method | ListBoxes | firstItem | |
| method | ListBoxes | item | |
| method | ListBoxes | itemByID | |
| method | ListBoxes | itemByName | |
| method | ListBoxes | itemByRange | |
| method | ListBoxes | lastItem | |
| method | ListBoxes | middleItem | |
| method | ListBoxes | nextItem | |
| method | ListBoxes | previousItem | |
| method | ListBoxes | toSource | |
| method | MasterSpread | contentPlace | |
| method | MediaItem | contentPlace | |
| method | Movie | contentPlace | |
| method | MultiStateObject | contentPlace | |
| method | Oval | contentPlace | |
| method | contentPlace | ||
| method | PICT | contentPlace | |
| method | PNGExportPreference | addEventListener | |
| method | PNGExportPreference | getElements | |
| method | PNGExportPreference | removeEventListener | |
| method | PNGExportPreference | toSource | |
| method | PNGExportPreference | toSpecifier | |
| method | Page | contentPlace | |
| method | Page | deleteAllLayoutSnapshots | |
| method | Page | deleteLayoutSnapshot | |
| method | Page | snapshotCurrentLayout | |
| method | PageItem | contentPlace | |
| method | ParaStyleMapping | addEventListener | |
| method | ParaStyleMapping | getElements | |
| method | ParaStyleMapping | remove | |
| method | ParaStyleMapping | removeEventListener | |
| method | ParaStyleMapping | toSource | |
| method | ParaStyleMapping | toSpecifier | |
| method | ParaStyleMappings | [] | |
| method | ParaStyleMappings | add | |
| method | ParaStyleMappings | anyItem | |
| method | ParaStyleMappings | count | |
| method | ParaStyleMappings | everyItem | |
| method | ParaStyleMappings | firstItem | |
| method | ParaStyleMappings | item | |
| method | ParaStyleMappings | itemByRange | |
| method | ParaStyleMappings | lastItem | |
| method | ParaStyleMappings | middleItem | |
| method | ParaStyleMappings | nextItem | |
| method | ParaStyleMappings | previousItem | |
| method | ParaStyleMappings | toSource | |
| method | Polygon | contentPlace | |
| method | PrintFormBehavior | addEventListener | |
| method | PrintFormBehavior | extractLabel | |
| method | PrintFormBehavior | getElements | |
| method | PrintFormBehavior | insertLabel | |
| method | PrintFormBehavior | remove | |
| method | PrintFormBehavior | removeEventListener | |
| method | PrintFormBehavior | toSource | |
| method | PrintFormBehavior | toSpecifier | |
| method | PrintFormBehaviors | [] | |
| method | PrintFormBehaviors | add | |
| method | PrintFormBehaviors | anyItem | |
| method | PrintFormBehaviors | count | |
| method | PrintFormBehaviors | everyItem | |
| method | PrintFormBehaviors | firstItem | |
| method | PrintFormBehaviors | item | |
| method | PrintFormBehaviors | itemByID | |
| method | PrintFormBehaviors | itemByName | |
| method | PrintFormBehaviors | itemByRange | |
| method | PrintFormBehaviors | lastItem | |
| method | PrintFormBehaviors | middleItem | |
| method | PrintFormBehaviors | nextItem | |
| method | PrintFormBehaviors | previousItem | |
| method | PrintFormBehaviors | toSource | |
| method | RadioButton | addEventListener | |
| method | RadioButton | applyObjectStyle | |
| method | RadioButton | asynchronousExportFile | |
| method | RadioButton | autoTag | |
| method | RadioButton | bringForward | |
| method | RadioButton | bringToFront | |
| method | RadioButton | changeObject | |
| method | RadioButton | clearObjectStyleOverrides | |
| method | RadioButton | clearTransformations | |
| method | RadioButton | contentPlace | |
| method | RadioButton | convertShape | |
| method | RadioButton | convertToObject | |
| method | RadioButton | detach | |
| method | RadioButton | duplicate | |
| method | RadioButton | exportFile | |
| method | RadioButton | extractLabel | |
| method | RadioButton | findObject | |
| method | RadioButton | fit | |
| method | RadioButton | flipItem | |
| method | RadioButton | getElements | |
| method | RadioButton | insertLabel | |
| method | RadioButton | markup | |
| method | RadioButton | move | |
| method | RadioButton | override | |
| method | RadioButton | placeXML | |
| method | RadioButton | redefineScaling | |
| method | RadioButton | reframe | |
| method | RadioButton | remove | |
| method | RadioButton | removeEventListener | |
| method | RadioButton | removeOverride | |
| method | RadioButton | resize | |
| method | RadioButton | resolve | |
| method | RadioButton | select | |
| method | RadioButton | sendBackward | |
| method | RadioButton | sendToBack | |
| method | RadioButton | store | |
| method | RadioButton | toSource | |
| method | RadioButton | toSpecifier | |
| method | RadioButton | transform | |
| method | RadioButton | transformAgain | |
| method | RadioButton | transformAgainIndividually | |
| method | RadioButton | transformSequenceAgain | |
| method | RadioButton | transformSequenceAgainIndividually | |
| method | RadioButton | transformValuesOf | |
| method | RadioButtons | [] | |
| method | RadioButtons | add | |
| method | RadioButtons | anyItem | |
| method | RadioButtons | count | |
| method | RadioButtons | everyItem | |
| method | RadioButtons | firstItem | |
| method | RadioButtons | item | |
| method | RadioButtons | itemByID | |
| method | RadioButtons | itemByName | |
| method | RadioButtons | itemByRange | |
| method | RadioButtons | lastItem | |
| method | RadioButtons | middleItem | |
| method | RadioButtons | nextItem | |
| method | RadioButtons | previousItem | |
| method | RadioButtons | toSource | |
| method | Rectangle | contentPlace | |
| method | SignatureField | addEventListener | |
| method | SignatureField | applyObjectStyle | |
| method | SignatureField | asynchronousExportFile | |
| method | SignatureField | autoTag | |
| method | SignatureField | bringForward | |
| method | SignatureField | bringToFront | |
| method | SignatureField | changeObject | |
| method | SignatureField | clearObjectStyleOverrides | |
| method | SignatureField | clearTransformations | |
| method | SignatureField | contentPlace | |
| method | SignatureField | convertShape | |
| method | SignatureField | convertToObject | |
| method | SignatureField | detach | |
| method | SignatureField | duplicate | |
| method | SignatureField | exportFile | |
| method | SignatureField | extractLabel | |
| method | SignatureField | findObject | |
| method | SignatureField | fit | |
| method | SignatureField | flipItem | |
| method | SignatureField | getElements | |
| method | SignatureField | insertLabel | |
| method | SignatureField | markup | |
| method | SignatureField | move | |
| method | SignatureField | override | |
| method | SignatureField | placeXML | |
| method | SignatureField | redefineScaling | |
| method | SignatureField | reframe | |
| method | SignatureField | remove | |
| method | SignatureField | removeEventListener | |
| method | SignatureField | removeOverride | |
| method | SignatureField | resize | |
| method | SignatureField | resolve | |
| method | SignatureField | select | |
| method | SignatureField | sendBackward | |
| method | SignatureField | sendToBack | |
| method | SignatureField | store | |
| method | SignatureField | toSource | |
| method | SignatureField | toSpecifier | |
| method | SignatureField | transform | |
| method | SignatureField | transformAgain | |
| method | SignatureField | transformAgainIndividually | |
| method | SignatureField | transformSequenceAgain | |
| method | SignatureField | transformSequenceAgainIndividually | |
| method | SignatureField | transformValuesOf | |
| method | SignatureFields | [] | |
| method | SignatureFields | add | |
| method | SignatureFields | anyItem | |
| method | SignatureFields | count | |
| method | SignatureFields | everyItem | |
| method | SignatureFields | firstItem | |
| method | SignatureFields | item | |
| method | SignatureFields | itemByID | |
| method | SignatureFields | itemByName | |
| method | SignatureFields | itemByRange | |
| method | SignatureFields | lastItem | |
| method | SignatureFields | middleItem | |
| method | SignatureFields | nextItem | |
| method | SignatureFields | previousItem | |
| method | SignatureFields | toSource | |
| method | Sound | contentPlace | |
| method | SplineItem | contentPlace | |
| method | Spread | contentPlace | |
| method | SubmitFormBehavior | addEventListener | |
| method | SubmitFormBehavior | extractLabel | |
| method | SubmitFormBehavior | getElements | |
| method | SubmitFormBehavior | insertLabel | |
| method | SubmitFormBehavior | remove | |
| method | SubmitFormBehavior | removeEventListener | |
| method | SubmitFormBehavior | toSource | |
| method | SubmitFormBehavior | toSpecifier | |
| method | SubmitFormBehaviors | [] | |
| method | SubmitFormBehaviors | add | |
| method | SubmitFormBehaviors | anyItem | |
| method | SubmitFormBehaviors | count | |
| method | SubmitFormBehaviors | everyItem | |
| method | SubmitFormBehaviors | firstItem | |
| method | SubmitFormBehaviors | item | |
| method | SubmitFormBehaviors | itemByID | |
| method | SubmitFormBehaviors | itemByName | |
| method | SubmitFormBehaviors | itemByRange | |
| method | SubmitFormBehaviors | lastItem | |
| method | SubmitFormBehaviors | middleItem | |
| method | SubmitFormBehaviors | nextItem | |
| method | SubmitFormBehaviors | previousItem | |
| method | SubmitFormBehaviors | toSource | |
| method | TableStyleMapping | addEventListener | |
| method | TableStyleMapping | getElements | |
| method | TableStyleMapping | remove | |
| method | TableStyleMapping | removeEventListener | |
| method | TableStyleMapping | toSource | |
| method | TableStyleMapping | toSpecifier | |
| method | TableStyleMappings | [] | |
| method | TableStyleMappings | add | |
| method | TableStyleMappings | anyItem | |
| method | TableStyleMappings | count | |
| method | TableStyleMappings | everyItem | |
| method | TableStyleMappings | firstItem | |
| method | TableStyleMappings | item | |
| method | TableStyleMappings | itemByRange | |
| method | TableStyleMappings | lastItem | |
| method | TableStyleMappings | middleItem | |
| method | TableStyleMappings | nextItem | |
| method | TableStyleMappings | previousItem | |
| method | TableStyleMappings | toSource | |
| method | TextBox | addEventListener | |
| method | TextBox | applyObjectStyle | |
| method | TextBox | asynchronousExportFile | |
| method | TextBox | autoTag | |
| method | TextBox | bringForward | |
| method | TextBox | bringToFront | |
| method | TextBox | changeObject | |
| method | TextBox | clearObjectStyleOverrides | |
| method | TextBox | clearTransformations | |
| method | TextBox | contentPlace | |
| method | TextBox | convertShape | |
| method | TextBox | convertToObject | |
| method | TextBox | detach | |
| method | TextBox | duplicate | |
| method | TextBox | exportFile | |
| method | TextBox | extractLabel | |
| method | TextBox | findObject | |
| method | TextBox | fit | |
| method | TextBox | flipItem | |
| method | TextBox | getElements | |
| method | TextBox | insertLabel | |
| method | TextBox | markup | |
| method | TextBox | move | |
| method | TextBox | override | |
| method | TextBox | placeXML | |
| method | TextBox | redefineScaling | |
| method | TextBox | reframe | |
| method | TextBox | remove | |
| method | TextBox | removeEventListener | |
| method | TextBox | removeOverride | |
| method | TextBox | resize | |
| method | TextBox | resolve | |
| method | TextBox | select | |
| method | TextBox | sendBackward | |
| method | TextBox | sendToBack | |
| method | TextBox | store | |
| method | TextBox | toSource | |
| method | TextBox | toSpecifier | |
| method | TextBox | transform | |
| method | TextBox | transformAgain | |
| method | TextBox | transformAgainIndividually | |
| method | TextBox | transformSequenceAgain | |
| method | TextBox | transformSequenceAgainIndividually | |
| method | TextBox | transformValuesOf | |
| method | TextBoxes | [] | |
| method | TextBoxes | add | |
| method | TextBoxes | anyItem | |
| method | TextBoxes | count | |
| method | TextBoxes | everyItem | |
| method | TextBoxes | firstItem | |
| method | TextBoxes | item | |
| method | TextBoxes | itemByID | |
| method | TextBoxes | itemByName | |
| method | TextBoxes | itemByRange | |
| method | TextBoxes | lastItem | |
| method | TextBoxes | middleItem | |
| method | TextBoxes | nextItem | |
| method | TextBoxes | previousItem | |
| method | TextBoxes | toSource | |
| method | TextFrame | contentPlace | |
| method | WMF | contentPlace | |
| property | Application | cellStyleMappings | |
| property | Application | charStyleMappings | |
| property | Application | contentPlacer | |
| property | Application | fontLockingPreferences | |
| property | Application | linkedPageItemOptions | |
| property | Application | paraStyleMappings | |
| property | Application | pngExportPreferences | |
| property | Application | selectionKeyObject | |
| property | Application | tableStyleMappings | |
| property | Button | clearFormBehaviors | |
| property | Button | hiddenUntilTriggered | |
| property | Button | horizontalLayoutConstraints | |
| property | Button | linkedPageItemOptions | |
| property | Button | printFormBehaviors | |
| property | Button | printableInPdf | |
| property | Button | submitFormBehaviors | |
| property | Button | verticalLayoutConstraints | |
| property | Cell | checkBoxes | |
| property | Cell | comboBoxes | |
| property | Cell | listBoxes | |
| property | Cell | radioButtons | |
| property | Cell | signatureFields | |
| property | Cell | textBoxes | |
| property | CellStyleMapping | destinationStyleName | |
| property | CellStyleMapping | eventListeners | |
| property | CellStyleMapping | events | |
| property | CellStyleMapping | index | |
| property | CellStyleMapping | isValid | |
| property | CellStyleMapping | mappingRuleType | |
| property | CellStyleMapping | parent | |
| property | CellStyleMapping | properties | |
| property | CellStyleMapping | sourceStyleName | |
| property | CellStyleMappings | length | |
| property | ChangeGrepPreference | paragraphKashidaWidth | |
| property | ChangeObjectPreference | autoSizingReferencePoint | |
| property | ChangeObjectPreference | autoSizingType | |
| property | ChangeObjectPreference | minimumHeightForAutoSizing | |
| property | ChangeObjectPreference | minimumWidthForAutoSizing | |
| property | ChangeObjectPreference | useMinimumHeightForAutoSizing | |
| property | ChangeObjectPreference | useMinimumWidthForAutoSizing | |
| property | ChangeObjectPreference | useNoLineBreaksForAutoSizing | |
| property | ChangeTextPreference | paragraphKashidaWidth | |
| property | CharStyleMapping | destinationStyleName | |
| property | CharStyleMapping | eventListeners | |
| property | CharStyleMapping | events | |
| property | CharStyleMapping | index | |
| property | CharStyleMapping | isValid | |
| property | CharStyleMapping | mappingRuleType | |
| property | CharStyleMapping | parent | |
| property | CharStyleMapping | properties | |
| property | CharStyleMapping | sourceStyleName | |
| property | CharStyleMappings | length | |
| property | Character | checkBoxes | |
| property | Character | comboBoxes | |
| property | Character | listBoxes | |
| property | Character | paragraphKashidaWidth | |
| property | Character | radioButtons | |
| property | Character | signatureFields | |
| property | Character | textBoxes | |
| property | CheckBox | AFTER_PLACE | |
| property | CheckBox | BEFORE_PLACE | |
| property | CheckBox | absoluteFlip | |
| property | CheckBox | absoluteHorizontalScale | |
| property | CheckBox | absoluteRotationAngle | |
| property | CheckBox | absoluteShearAngle | |
| property | CheckBox | absoluteVerticalScale | |
| property | CheckBox | activeStateIndex | |
| property | CheckBox | allArticles | |
| property | CheckBox | allGraphics | |
| property | CheckBox | allPageItems | |
| property | CheckBox | allowOverrides | |
| property | CheckBox | anchoredObjectSettings | |
| property | CheckBox | animationSettings | |
| property | CheckBox | appliedObjectStyle | |
| property | CheckBox | associatedXMLElement | |
| property | CheckBox | behaviors | |
| property | CheckBox | bottomLeftCornerOption | |
| property | CheckBox | bottomLeftCornerRadius | |
| property | CheckBox | bottomRightCornerOption | |
| property | CheckBox | bottomRightCornerRadius | |
| property | CheckBox | checkedByDefault | |
| property | CheckBox | clearFormBehaviors | |
| property | CheckBox | contentTransparencySettings | |
| property | CheckBox | description | |
| property | CheckBox | endCap | |
| property | CheckBox | endJoin | |
| property | CheckBox | epss | |
| property | CheckBox | epstexts | |
| property | CheckBox | eventListeners | |
| property | CheckBox | events | |
| property | CheckBox | exportValue | |
| property | CheckBox | fillColor | |
| property | CheckBox | fillTint | |
| property | CheckBox | fillTransparencySettings | |
| property | CheckBox | flip | |
| property | CheckBox | gapColor | |
| property | CheckBox | gapTint | |
| property | CheckBox | geometricBounds | |
| property | CheckBox | gotoAnchorBehaviors | |
| property | CheckBox | gotoFirstPageBehaviors | |
| property | CheckBox | gotoLastPageBehaviors | |
| property | CheckBox | gotoNextPageBehaviors | |
| property | CheckBox | gotoNextViewBehaviors | |
| property | CheckBox | gotoPreviousPageBehaviors | |
| property | CheckBox | gotoPreviousViewBehaviors | |
| property | CheckBox | gotoURLBehaviors | |
| property | CheckBox | gradientFillAngle | |
| property | CheckBox | gradientFillLength | |
| property | CheckBox | gradientFillStart | |
| property | CheckBox | gradientStrokeAngle | |
| property | CheckBox | gradientStrokeLength | |
| property | CheckBox | gradientStrokeStart | |
| property | CheckBox | graphicLines | |
| property | CheckBox | graphics | |
| property | CheckBox | groups | |
| property | CheckBox | hiddenUntilTriggered | |
| property | CheckBox | horizontalLayoutConstraints | |
| property | CheckBox | horizontalScale | |
| property | CheckBox | id | |
| property | CheckBox | images | |
| property | CheckBox | index | |
| property | CheckBox | isValid | |
| property | CheckBox | itemLayer | |
| property | CheckBox | label | |
| property | CheckBox | leftLineEnd | |
| property | CheckBox | linkedPageItemOptions | |
| property | CheckBox | localDisplaySetting | |
| property | CheckBox | locked | |
| property | CheckBox | miterLimit | |
| property | CheckBox | movieBehaviors | |
| property | CheckBox | name | |
| property | CheckBox | nonprinting | |
| property | CheckBox | openFileBehaviors | |
| property | CheckBox | ovals | |
| property | CheckBox | overprintFill | |
| property | CheckBox | overprintGap | |
| property | CheckBox | overprintStroke | |
| property | CheckBox | overridden | |
| property | CheckBox | overriddenMasterPageItem | |
| property | CheckBox | pageItems | |
| property | CheckBox | parent | |
| property | CheckBox | parentPage | |
| property | CheckBox | pdfs | |
| property | CheckBox | picts | |
| property | CheckBox | polygons | |
| property | CheckBox | preferences | |
| property | CheckBox | printFormBehaviors | |
| property | CheckBox | printableInPdf | |
| property | CheckBox | properties | |
| property | CheckBox | readOnly | |
| property | CheckBox | rectangles | |
| property | CheckBox | required | |
| property | CheckBox | rightLineEnd | |
| property | CheckBox | rotationAngle | |
| property | CheckBox | shearAngle | |
| property | CheckBox | showHideFieldsBehaviors | |
| property | CheckBox | soundBehaviors | |
| property | CheckBox | splineItems | |
| property | CheckBox | states | |
| property | CheckBox | strokeAlignment | |
| property | CheckBox | strokeColor | |
| property | CheckBox | strokeCornerAdjustment | |
| property | CheckBox | strokeDashAndGap | |
| property | CheckBox | strokeTint | |
| property | CheckBox | strokeTransparencySettings | |
| property | CheckBox | strokeType | |
| property | CheckBox | strokeWeight | |
| property | CheckBox | submitFormBehaviors | |
| property | CheckBox | textFrames | |
| property | CheckBox | textWrapPreferences | |
| property | CheckBox | timingSettings | |
| property | CheckBox | topLeftCornerOption | |
| property | CheckBox | topLeftCornerRadius | |
| property | CheckBox | topRightCornerOption | |
| property | CheckBox | topRightCornerRadius | |
| property | CheckBox | transparencySettings | |
| property | CheckBox | verticalLayoutConstraints | |
| property | CheckBox | verticalScale | |
| property | CheckBox | viewZoomBehaviors | |
| property | CheckBox | visible | |
| property | CheckBox | visibleBounds | |
| property | CheckBox | wmfs | |
| property | CheckBoxes | length | |
| property | ClearFormBehavior | behaviorEvent | |
| property | ClearFormBehavior | enableBehavior | |
| property | ClearFormBehavior | eventListeners | |
| property | ClearFormBehavior | events | |
| property | ClearFormBehavior | id | |
| property | ClearFormBehavior | index | |
| property | ClearFormBehavior | isValid | |
| property | ClearFormBehavior | label | |
| property | ClearFormBehavior | name | |
| property | ClearFormBehavior | parent | |
| property | ClearFormBehavior | properties | |
| property | ClearFormBehaviors | length | |
| property | ComboBox | AFTER_PLACE | |
| property | ComboBox | BEFORE_PLACE | |
| property | ComboBox | absoluteFlip | |
| property | ComboBox | absoluteHorizontalScale | |
| property | ComboBox | absoluteRotationAngle | |
| property | ComboBox | absoluteShearAngle | |
| property | ComboBox | absoluteVerticalScale | |
| property | ComboBox | activeStateIndex | |
| property | ComboBox | allArticles | |
| property | ComboBox | allGraphics | |
| property | ComboBox | allPageItems | |
| property | ComboBox | allowOverrides | |
| property | ComboBox | anchoredObjectSettings | |
| property | ComboBox | animationSettings | |
| property | ComboBox | appliedObjectStyle | |
| property | ComboBox | associatedXMLElement | |
| property | ComboBox | behaviors | |
| property | ComboBox | bottomLeftCornerOption | |
| property | ComboBox | bottomLeftCornerRadius | |
| property | ComboBox | bottomRightCornerOption | |
| property | ComboBox | bottomRightCornerRadius | |
| property | ComboBox | choiceList | |
| property | ComboBox | clearFormBehaviors | |
| property | ComboBox | contentTransparencySettings | |
| property | ComboBox | description | |
| property | ComboBox | endCap | |
| property | ComboBox | endJoin | |
| property | ComboBox | epss | |
| property | ComboBox | epstexts | |
| property | ComboBox | eventListeners | |
| property | ComboBox | events | |
| property | ComboBox | fillColor | |
| property | ComboBox | fillTint | |
| property | ComboBox | fillTransparencySettings | |
| property | ComboBox | flip | |
| property | ComboBox | fontSize | |
| property | ComboBox | gapColor | |
| property | ComboBox | gapTint | |
| property | ComboBox | geometricBounds | |
| property | ComboBox | gotoAnchorBehaviors | |
| property | ComboBox | gotoFirstPageBehaviors | |
| property | ComboBox | gotoLastPageBehaviors | |
| property | ComboBox | gotoNextPageBehaviors | |
| property | ComboBox | gotoNextViewBehaviors | |
| property | ComboBox | gotoPreviousPageBehaviors | |
| property | ComboBox | gotoPreviousViewBehaviors | |
| property | ComboBox | gotoURLBehaviors | |
| property | ComboBox | gradientFillAngle | |
| property | ComboBox | gradientFillLength | |
| property | ComboBox | gradientFillStart | |
| property | ComboBox | gradientStrokeAngle | |
| property | ComboBox | gradientStrokeLength | |
| property | ComboBox | gradientStrokeStart | |
| property | ComboBox | graphicLines | |
| property | ComboBox | graphics | |
| property | ComboBox | groups | |
| property | ComboBox | hiddenUntilTriggered | |
| property | ComboBox | horizontalLayoutConstraints | |
| property | ComboBox | horizontalScale | |
| property | ComboBox | id | |
| property | ComboBox | images | |
| property | ComboBox | index | |
| property | ComboBox | isValid | |
| property | ComboBox | itemLayer | |
| property | ComboBox | label | |
| property | ComboBox | leftLineEnd | |
| property | ComboBox | linkedPageItemOptions | |
| property | ComboBox | localDisplaySetting | |
| property | ComboBox | locked | |
| property | ComboBox | miterLimit | |
| property | ComboBox | movieBehaviors | |
| property | ComboBox | name | |
| property | ComboBox | nonprinting | |
| property | ComboBox | openFileBehaviors | |
| property | ComboBox | ovals | |
| property | ComboBox | overprintFill | |
| property | ComboBox | overprintGap | |
| property | ComboBox | overprintStroke | |
| property | ComboBox | overridden | |
| property | ComboBox | overriddenMasterPageItem | |
| property | ComboBox | pageItems | |
| property | ComboBox | parent | |
| property | ComboBox | parentPage | |
| property | ComboBox | pdfs | |
| property | ComboBox | picts | |
| property | ComboBox | polygons | |
| property | ComboBox | preferences | |
| property | ComboBox | printFormBehaviors | |
| property | ComboBox | printableInPdf | |
| property | ComboBox | properties | |
| property | ComboBox | readOnly | |
| property | ComboBox | rectangles | |
| property | ComboBox | required | |
| property | ComboBox | rightLineEnd | |
| property | ComboBox | rightToLeftField | |
| property | ComboBox | rotationAngle | |
| property | ComboBox | shearAngle | |
| property | ComboBox | showHideFieldsBehaviors | |
| property | ComboBox | sortChoices | |
| property | ComboBox | soundBehaviors | |
| property | ComboBox | splineItems | |
| property | ComboBox | strokeAlignment | |
| property | ComboBox | strokeColor | |
| property | ComboBox | strokeCornerAdjustment | |
| property | ComboBox | strokeDashAndGap | |
| property | ComboBox | strokeTint | |
| property | ComboBox | strokeTransparencySettings | |
| property | ComboBox | strokeType | |
| property | ComboBox | strokeWeight | |
| property | ComboBox | submitFormBehaviors | |
| property | ComboBox | textFrames | |
| property | ComboBox | textWrapPreferences | |
| property | ComboBox | timingSettings | |
| property | ComboBox | topLeftCornerOption | |
| property | ComboBox | topLeftCornerRadius | |
| property | ComboBox | topRightCornerOption | |
| property | ComboBox | topRightCornerRadius | |
| property | ComboBox | transparencySettings | |
| property | ComboBox | verticalLayoutConstraints | |
| property | ComboBox | verticalScale | |
| property | ComboBox | viewZoomBehaviors | |
| property | ComboBox | visible | |
| property | ComboBox | visibleBounds | |
| property | ComboBox | wmfs | |
| property | ComboBoxes | length | |
| property | ContentPlacerObject | eventListeners | |
| property | ContentPlacerObject | events | |
| property | ContentPlacerObject | isValid | |
| property | ContentPlacerObject | loaded | |
| property | ContentPlacerObject | parent | |
| property | ContentPlacerObject | properties | |
| property | Document | cellStyleMappings | |
| property | Document | charStyleMappings | |
| property | Document | checkBoxes | |
| property | Document | comboBoxes | |
| property | Document | linkedPageItemOptions | |
| property | Document | listBoxes | |
| property | Document | paraStyleMappings | |
| property | Document | radioButtons | |
| property | Document | selectionKeyObject | |
| property | Document | signatureFields | |
| property | Document | tableStyleMappings | |
| property | Document | textBoxes | |
| property | DocumentPreference | createPrimaryTextFrame | |
| property | DocumentPreset | createPrimaryTextFrame | |
| property | EPS | horizontalLayoutConstraints | |
| property | EPS | linkedPageItemOptions | |
| property | EPS | verticalLayoutConstraints | |
| property | EPSText | horizontalLayoutConstraints | |
| property | EPSText | linkedPageItemOptions | |
| property | EPSText | verticalLayoutConstraints | |
| property | EPubExportPreference | externalStyleSheets | |
| property | EPubExportPreference | javascripts | |
| property | EPubExportPreference | version | |
| property | FindGrepPreference | paragraphKashidaWidth | |
| property | FindObjectPreference | autoSizingReferencePoint | |
| property | FindObjectPreference | autoSizingType | |
| property | FindObjectPreference | minimumHeightForAutoSizing | |
| property | FindObjectPreference | minimumWidthForAutoSizing | |
| property | FindObjectPreference | useMinimumHeightForAutoSizing | |
| property | FindObjectPreference | useMinimumWidthForAutoSizing | |
| property | FindObjectPreference | useNoLineBreaksForAutoSizing | |
| property | FindTextPreference | paragraphKashidaWidth | |
| property | FontLockingPreference | eventListeners | |
| property | FontLockingPreference | events | |
| property | FontLockingPreference | fontChangeLocking | |
| property | FontLockingPreference | fontInputLocking | |
| property | FontLockingPreference | isValid | |
| property | FontLockingPreference | parent | |
| property | FontLockingPreference | properties | |
| property | FormField | horizontalLayoutConstraints | |
| property | FormField | linkedPageItemOptions | |
| property | FormField | verticalLayoutConstraints | |
| property | GeneralPreference | createLinksOnContentPlace | |
| property | GeneralPreference | customMonitorPpi | |
| property | GeneralPreference | greekVectorGraphicsOnDrag | |
| property | GeneralPreference | mainMonitorPpi | |
| property | GeneralPreference | mapStylesOnContentPlace | |
| property | GeneralPreference | previewPages | |
| property | GeneralPreference | showConveyor | |
| property | GeneralPreference | useCustomMonitorResolution | |
| property | Graphic | horizontalLayoutConstraints | |
| property | Graphic | linkedPageItemOptions | |
| property | Graphic | verticalLayoutConstraints | |
| property | GraphicLine | checkBoxes | |
| property | GraphicLine | comboBoxes | |
| property | GraphicLine | horizontalLayoutConstraints | |
| property | GraphicLine | htmlItems | |
| property | GraphicLine | linkedPageItemOptions | |
| property | GraphicLine | listBoxes | |
| property | GraphicLine | radioButtons | |
| property | GraphicLine | signatureFields | |
| property | GraphicLine | textBoxes | |
| property | GraphicLine | verticalLayoutConstraints | |
| property | Group | checkBoxes | |
| property | Group | comboBoxes | |
| property | Group | horizontalLayoutConstraints | |
| property | Group | linkedPageItemOptions | |
| property | Group | listBoxes | |
| property | Group | radioButtons | |
| property | Group | signatureFields | |
| property | Group | textBoxes | |
| property | Group | verticalLayoutConstraints | |
| property | Guide | guideType | |
| property | Guide | guideZone | |
| property | HTMLExportPreference | externalStyleSheets | |
| property | HTMLExportPreference | javascripts | |
| property | HtmlItem | AFTER_PLACE | |
| property | HtmlItem | BEFORE_PLACE | |
| property | HtmlItem | absoluteFlip | |
| property | HtmlItem | absoluteHorizontalScale | |
| property | HtmlItem | absoluteRotationAngle | |
| property | HtmlItem | absoluteShearAngle | |
| property | HtmlItem | absoluteVerticalScale | |
| property | HtmlItem | allArticles | |
| property | HtmlItem | allGraphics | |
| property | HtmlItem | allPageItems | |
| property | HtmlItem | allowOverrides | |
| property | HtmlItem | animationSettings | |
| property | HtmlItem | appliedObjectStyle | |
| property | HtmlItem | associatedXMLElement | |
| property | HtmlItem | bottomLeftCornerOption | |
| property | HtmlItem | bottomLeftCornerRadius | |
| property | HtmlItem | bottomRightCornerOption | |
| property | HtmlItem | bottomRightCornerRadius | |
| property | HtmlItem | contentTransparencySettings | |
| property | HtmlItem | endCap | |
| property | HtmlItem | endJoin | |
| property | HtmlItem | eventListeners | |
| property | HtmlItem | events | |
| property | HtmlItem | fillColor | |
| property | HtmlItem | fillTint | |
| property | HtmlItem | fillTransparencySettings | |
| property | HtmlItem | fixedDimensions | |
| property | HtmlItem | flip | |
| property | HtmlItem | gapColor | |
| property | HtmlItem | gapTint | |
| property | HtmlItem | geometricBounds | |
| property | HtmlItem | gradientFillAngle | |
| property | HtmlItem | gradientFillLength | |
| property | HtmlItem | gradientFillStart | |
| property | HtmlItem | gradientStrokeAngle | |
| property | HtmlItem | gradientStrokeLength | |
| property | HtmlItem | gradientStrokeStart | |
| property | HtmlItem | horizontalLayoutConstraints | |
| property | HtmlItem | horizontalScale | |
| property | HtmlItem | htmlContent | |
| property | HtmlItem | id | |
| property | HtmlItem | index | |
| property | HtmlItem | isValid | |
| property | HtmlItem | itemLayer | |
| property | HtmlItem | label | |
| property | HtmlItem | leftLineEnd | |
| property | HtmlItem | linkedPageItemOptions | |
| property | HtmlItem | localDisplaySetting | |
| property | HtmlItem | locked | |
| property | HtmlItem | miterLimit | |
| property | HtmlItem | name | |
| property | HtmlItem | nonprinting | |
| property | HtmlItem | overprintFill | |
| property | HtmlItem | overprintGap | |
| property | HtmlItem | overprintStroke | |
| property | HtmlItem | overridden | |
| property | HtmlItem | overriddenMasterPageItem | |
| property | HtmlItem | parent | |
| property | HtmlItem | parentPage | |
| property | HtmlItem | preferences | |
| property | HtmlItem | properties | |
| property | HtmlItem | rightLineEnd | |
| property | HtmlItem | rotationAngle | |
| property | HtmlItem | shearAngle | |
| property | HtmlItem | strokeAlignment | |
| property | HtmlItem | strokeColor | |
| property | HtmlItem | strokeCornerAdjustment | |
| property | HtmlItem | strokeDashAndGap | |
| property | HtmlItem | strokeTint | |
| property | HtmlItem | strokeTransparencySettings | |
| property | HtmlItem | strokeType | |
| property | HtmlItem | strokeWeight | |
| property | HtmlItem | textWrapPreferences | |
| property | HtmlItem | timingSettings | |
| property | HtmlItem | topLeftCornerOption | |
| property | HtmlItem | topLeftCornerRadius | |
| property | HtmlItem | topRightCornerOption | |
| property | HtmlItem | topRightCornerRadius | |
| property | HtmlItem | transparencySettings | |
| property | HtmlItem | verticalLayoutConstraints | |
| property | HtmlItem | verticalScale | |
| property | HtmlItem | visible | |
| property | HtmlItem | visibleBounds | |
| property | HtmlItems | length | |
| property | IMEPreference | useNativeDigits | |
| property | Image | horizontalLayoutConstraints | |
| property | Image | linkedPageItemOptions | |
| property | Image | verticalLayoutConstraints | |
| property | ImportedPage | horizontalLayoutConstraints | |
| property | ImportedPage | linkedPageItemOptions | |
| property | ImportedPage | verticalLayoutConstraints | |
| property | InsertionPoint | checkBoxes | |
| property | InsertionPoint | comboBoxes | |
| property | InsertionPoint | listBoxes | |
| property | InsertionPoint | paragraphKashidaWidth | |
| property | InsertionPoint | radioButtons | |
| property | InsertionPoint | signatureFields | |
| property | InsertionPoint | textBoxes | |
| property | InteractivePDFExportPreference | usePDFStructureForTabOrder | |
| property | Layer | checkBoxes | |
| property | Layer | comboBoxes | |
| property | Layer | listBoxes | |
| property | Layer | radioButtons | |
| property | Layer | signatureFields | |
| property | Layer | textBoxes | |
| property | LayoutWindow | selectionKeyObject | |
| property | Line | checkBoxes | |
| property | Line | comboBoxes | |
| property | Line | listBoxes | |
| property | Line | paragraphKashidaWidth | |
| property | Line | radioButtons | |
| property | Line | signatureFields | |
| property | Line | textBoxes | |
| property | LinkedPageItemOption | eventListeners | |
| property | LinkedPageItemOption | events | |
| property | LinkedPageItemOption | isValid | |
| property | LinkedPageItemOption | parent | |
| property | LinkedPageItemOption | preserveAppearance | |
| property | LinkedPageItemOption | preserveFrameContent | |
| property | LinkedPageItemOption | preserveInteractivity | |
| property | LinkedPageItemOption | preserveOthers | |
| property | LinkedPageItemOption | preserveSizeAndShape | |
| property | LinkedPageItemOption | properties | |
| property | LinkedPageItemOption | updateLinkWhileSaving | |
| property | LinkedPageItemOption | warnOnUpdateOfEditedPageItem | |
| property | LinkedStoryOption | applyStyleMappings | |
| property | ListBox | AFTER_PLACE | |
| property | ListBox | BEFORE_PLACE | |
| property | ListBox | absoluteFlip | |
| property | ListBox | absoluteHorizontalScale | |
| property | ListBox | absoluteRotationAngle | |
| property | ListBox | absoluteShearAngle | |
| property | ListBox | absoluteVerticalScale | |
| property | ListBox | activeStateIndex | |
| property | ListBox | allArticles | |
| property | ListBox | allGraphics | |
| property | ListBox | allPageItems | |
| property | ListBox | allowOverrides | |
| property | ListBox | anchoredObjectSettings | |
| property | ListBox | animationSettings | |
| property | ListBox | appliedObjectStyle | |
| property | ListBox | associatedXMLElement | |
| property | ListBox | behaviors | |
| property | ListBox | bottomLeftCornerOption | |
| property | ListBox | bottomLeftCornerRadius | |
| property | ListBox | bottomRightCornerOption | |
| property | ListBox | bottomRightCornerRadius | |
| property | ListBox | choiceList | |
| property | ListBox | clearFormBehaviors | |
| property | ListBox | contentTransparencySettings | |
| property | ListBox | description | |
| property | ListBox | endCap | |
| property | ListBox | endJoin | |
| property | ListBox | epss | |
| property | ListBox | epstexts | |
| property | ListBox | eventListeners | |
| property | ListBox | events | |
| property | ListBox | fillColor | |
| property | ListBox | fillTint | |
| property | ListBox | fillTransparencySettings | |
| property | ListBox | flip | |
| property | ListBox | fontSize | |
| property | ListBox | gapColor | |
| property | ListBox | gapTint | |
| property | ListBox | geometricBounds | |
| property | ListBox | gotoAnchorBehaviors | |
| property | ListBox | gotoFirstPageBehaviors | |
| property | ListBox | gotoLastPageBehaviors | |
| property | ListBox | gotoNextPageBehaviors | |
| property | ListBox | gotoNextViewBehaviors | |
| property | ListBox | gotoPreviousPageBehaviors | |
| property | ListBox | gotoPreviousViewBehaviors | |
| property | ListBox | gotoURLBehaviors | |
| property | ListBox | gradientFillAngle | |
| property | ListBox | gradientFillLength | |
| property | ListBox | gradientFillStart | |
| property | ListBox | gradientStrokeAngle | |
| property | ListBox | gradientStrokeLength | |
| property | ListBox | gradientStrokeStart | |
| property | ListBox | graphicLines | |
| property | ListBox | graphics | |
| property | ListBox | groups | |
| property | ListBox | hiddenUntilTriggered | |
| property | ListBox | horizontalLayoutConstraints | |
| property | ListBox | horizontalScale | |
| property | ListBox | id | |
| property | ListBox | images | |
| property | ListBox | index | |
| property | ListBox | isValid | |
| property | ListBox | itemLayer | |
| property | ListBox | label | |
| property | ListBox | leftLineEnd | |
| property | ListBox | linkedPageItemOptions | |
| property | ListBox | localDisplaySetting | |
| property | ListBox | locked | |
| property | ListBox | miterLimit | |
| property | ListBox | movieBehaviors | |
| property | ListBox | multipleSelection | |
| property | ListBox | name | |
| property | ListBox | nonprinting | |
| property | ListBox | openFileBehaviors | |
| property | ListBox | ovals | |
| property | ListBox | overprintFill | |
| property | ListBox | overprintGap | |
| property | ListBox | overprintStroke | |
| property | ListBox | overridden | |
| property | ListBox | overriddenMasterPageItem | |
| property | ListBox | pageItems | |
| property | ListBox | parent | |
| property | ListBox | parentPage | |
| property | ListBox | pdfs | |
| property | ListBox | picts | |
| property | ListBox | polygons | |
| property | ListBox | preferences | |
| property | ListBox | printFormBehaviors | |
| property | ListBox | printableInPdf | |
| property | ListBox | properties | |
| property | ListBox | readOnly | |
| property | ListBox | rectangles | |
| property | ListBox | required | |
| property | ListBox | rightLineEnd | |
| property | ListBox | rightToLeftField | |
| property | ListBox | rotationAngle | |
| property | ListBox | shearAngle | |
| property | ListBox | showHideFieldsBehaviors | |
| property | ListBox | sortChoices | |
| property | ListBox | soundBehaviors | |
| property | ListBox | splineItems | |
| property | ListBox | strokeAlignment | |
| property | ListBox | strokeColor | |
| property | ListBox | strokeCornerAdjustment | |
| property | ListBox | strokeDashAndGap | |
| property | ListBox | strokeTint | |
| property | ListBox | strokeTransparencySettings | |
| property | ListBox | strokeType | |
| property | ListBox | strokeWeight | |
| property | ListBox | submitFormBehaviors | |
| property | ListBox | textFrames | |
| property | ListBox | textWrapPreferences | |
| property | ListBox | timingSettings | |
| property | ListBox | topLeftCornerOption | |
| property | ListBox | topLeftCornerRadius | |
| property | ListBox | topRightCornerOption | |
| property | ListBox | topRightCornerRadius | |
| property | ListBox | transparencySettings | |
| property | ListBox | verticalLayoutConstraints | |
| property | ListBox | verticalScale | |
| property | ListBox | viewZoomBehaviors | |
| property | ListBox | visible | |
| property | ListBox | visibleBounds | |
| property | ListBox | wmfs | |
| property | ListBoxes | length | |
| property | MasterSpread | checkBoxes | |
| property | MasterSpread | comboBoxes | |
| property | MasterSpread | listBoxes | |
| property | MasterSpread | primaryTextFrame | |
| property | MasterSpread | radioButtons | |
| property | MasterSpread | signatureFields | |
| property | MasterSpread | textBoxes | |
| property | MediaItem | horizontalLayoutConstraints | |
| property | MediaItem | linkedPageItemOptions | |
| property | MediaItem | verticalLayoutConstraints | |
| property | Movie | horizontalLayoutConstraints | |
| property | Movie | linkedPageItemOptions | |
| property | Movie | verticalLayoutConstraints | |
| property | MultiStateObject | horizontalLayoutConstraints | |
| property | MultiStateObject | linkedPageItemOptions | |
| property | MultiStateObject | verticalLayoutConstraints | |
| property | ObjectExportOption | customLayout | |
| property | ObjectExportOption | customLayoutType | |
| property | ObjectStyle | enableTextFrameAutoSizingOptions | |
| property | Oval | checkBoxes | |
| property | Oval | comboBoxes | |
| property | Oval | horizontalLayoutConstraints | |
| property | Oval | htmlItems | |
| property | Oval | linkedPageItemOptions | |
| property | Oval | listBoxes | |
| property | Oval | radioButtons | |
| property | Oval | signatureFields | |
| property | Oval | textBoxes | |
| property | Oval | verticalLayoutConstraints | |
| property | horizontalLayoutConstraints | ||
| property | linkedPageItemOptions | ||
| property | verticalLayoutConstraints | ||
| property | PICT | horizontalLayoutConstraints | |
| property | PICT | linkedPageItemOptions | |
| property | PICT | verticalLayoutConstraints | |
| property | PNGExportPreference | antiAlias | |
| property | PNGExportPreference | eventListeners | |
| property | PNGExportPreference | events | |
| property | PNGExportPreference | exportResolution | |
| property | PNGExportPreference | exportingSpread | |
| property | PNGExportPreference | isValid | |
| property | PNGExportPreference | pageString | |
| property | PNGExportPreference | parent | |
| property | PNGExportPreference | pngColorSpace | |
| property | PNGExportPreference | pngExportRange | |
| property | PNGExportPreference | pngQuality | |
| property | PNGExportPreference | properties | |
| property | PNGExportPreference | simulateOverprint | |
| property | PNGExportPreference | transparentBackground | |
| property | PNGExportPreference | useDocumentBleeds | |
| property | Page | appliedAlternateLayout | |
| property | Page | checkBoxes | |
| property | Page | comboBoxes | |
| property | Page | layoutRule | |
| property | Page | listBoxes | |
| property | Page | optionalPage | |
| property | Page | radioButtons | |
| property | Page | signatureFields | |
| property | Page | snapshotBlendingMode | |
| property | Page | textBoxes | |
| property | PageItem | horizontalLayoutConstraints | |
| property | PageItem | linkedPageItemOptions | |
| property | PageItem | verticalLayoutConstraints | |
| property | ParaStyleMapping | destinationStyleName | |
| property | ParaStyleMapping | eventListeners | |
| property | ParaStyleMapping | events | |
| property | ParaStyleMapping | index | |
| property | ParaStyleMapping | isValid | |
| property | ParaStyleMapping | mappingRuleType | |
| property | ParaStyleMapping | parent | |
| property | ParaStyleMapping | properties | |
| property | ParaStyleMapping | sourceStyleName | |
| property | ParaStyleMappings | length | |
| property | Paragraph | checkBoxes | |
| property | Paragraph | comboBoxes | |
| property | Paragraph | listBoxes | |
| property | Paragraph | paragraphKashidaWidth | |
| property | Paragraph | radioButtons | |
| property | Paragraph | signatureFields | |
| property | Paragraph | textBoxes | |
| property | ParagraphStyle | paragraphKashidaWidth | |
| property | PlaceGun | checkBoxes | |
| property | PlaceGun | comboBoxes | |
| property | PlaceGun | listBoxes | |
| property | PlaceGun | radioButtons | |
| property | PlaceGun | signatureFields | |
| property | PlaceGun | textBoxes | |
| property | Polygon | checkBoxes | |
| property | Polygon | comboBoxes | |
| property | Polygon | horizontalLayoutConstraints | |
| property | Polygon | htmlItems | |
| property | Polygon | linkedPageItemOptions | |
| property | Polygon | listBoxes | |
| property | Polygon | radioButtons | |
| property | Polygon | signatureFields | |
| property | Polygon | textBoxes | |
| property | Polygon | verticalLayoutConstraints | |
| property | PrintFormBehavior | behaviorEvent | |
| property | PrintFormBehavior | enableBehavior | |
| property | PrintFormBehavior | eventListeners | |
| property | PrintFormBehavior | events | |
| property | PrintFormBehavior | id | |
| property | PrintFormBehavior | index | |
| property | PrintFormBehavior | isValid | |
| property | PrintFormBehavior | label | |
| property | PrintFormBehavior | name | |
| property | PrintFormBehavior | parent | |
| property | PrintFormBehavior | properties | |
| property | PrintFormBehaviors | length | |
| property | RadioButton | AFTER_PLACE | |
| property | RadioButton | BEFORE_PLACE | |
| property | RadioButton | absoluteFlip | |
| property | RadioButton | absoluteHorizontalScale | |
| property | RadioButton | absoluteRotationAngle | |
| property | RadioButton | absoluteShearAngle | |
| property | RadioButton | absoluteVerticalScale | |
| property | RadioButton | activeStateIndex | |
| property | RadioButton | allArticles | |
| property | RadioButton | allGraphics | |
| property | RadioButton | allPageItems | |
| property | RadioButton | allowOverrides | |
| property | RadioButton | anchoredObjectSettings | |
| property | RadioButton | animationSettings | |
| property | RadioButton | appliedObjectStyle | |
| property | RadioButton | associatedXMLElement | |
| property | RadioButton | behaviors | |
| property | RadioButton | bottomLeftCornerOption | |
| property | RadioButton | bottomLeftCornerRadius | |
| property | RadioButton | bottomRightCornerOption | |
| property | RadioButton | bottomRightCornerRadius | |
| property | RadioButton | checkedByDefault | |
| property | RadioButton | clearFormBehaviors | |
| property | RadioButton | contentTransparencySettings | |
| property | RadioButton | description | |
| property | RadioButton | endCap | |
| property | RadioButton | endJoin | |
| property | RadioButton | epss | |
| property | RadioButton | epstexts | |
| property | RadioButton | eventListeners | |
| property | RadioButton | events | |
| property | RadioButton | exportValue | |
| property | RadioButton | fillColor | |
| property | RadioButton | fillTint | |
| property | RadioButton | fillTransparencySettings | |
| property | RadioButton | flip | |
| property | RadioButton | gapColor | |
| property | RadioButton | gapTint | |
| property | RadioButton | geometricBounds | |
| property | RadioButton | gotoAnchorBehaviors | |
| property | RadioButton | gotoFirstPageBehaviors | |
| property | RadioButton | gotoLastPageBehaviors | |
| property | RadioButton | gotoNextPageBehaviors | |
| property | RadioButton | gotoNextViewBehaviors | |
| property | RadioButton | gotoPreviousPageBehaviors | |
| property | RadioButton | gotoPreviousViewBehaviors | |
| property | RadioButton | gotoURLBehaviors | |
| property | RadioButton | gradientFillAngle | |
| property | RadioButton | gradientFillLength | |
| property | RadioButton | gradientFillStart | |
| property | RadioButton | gradientStrokeAngle | |
| property | RadioButton | gradientStrokeLength | |
| property | RadioButton | gradientStrokeStart | |
| property | RadioButton | graphicLines | |
| property | RadioButton | graphics | |
| property | RadioButton | groups | |
| property | RadioButton | hiddenUntilTriggered | |
| property | RadioButton | horizontalLayoutConstraints | |
| property | RadioButton | horizontalScale | |
| property | RadioButton | id | |
| property | RadioButton | images | |
| property | RadioButton | index | |
| property | RadioButton | isValid | |
| property | RadioButton | itemLayer | |
| property | RadioButton | label | |
| property | RadioButton | leftLineEnd | |
| property | RadioButton | linkedPageItemOptions | |
| property | RadioButton | localDisplaySetting | |
| property | RadioButton | locked | |
| property | RadioButton | miterLimit | |
| property | RadioButton | movieBehaviors | |
| property | RadioButton | name | |
| property | RadioButton | nonprinting | |
| property | RadioButton | openFileBehaviors | |
| property | RadioButton | ovals | |
| property | RadioButton | overprintFill | |
| property | RadioButton | overprintGap | |
| property | RadioButton | overprintStroke | |
| property | RadioButton | overridden | |
| property | RadioButton | overriddenMasterPageItem | |
| property | RadioButton | pageItems | |
| property | RadioButton | parent | |
| property | RadioButton | parentPage | |
| property | RadioButton | pdfs | |
| property | RadioButton | picts | |
| property | RadioButton | polygons | |
| property | RadioButton | preferences | |
| property | RadioButton | printFormBehaviors | |
| property | RadioButton | printableInPdf | |
| property | RadioButton | properties | |
| property | RadioButton | readOnly | |
| property | RadioButton | rectangles | |
| property | RadioButton | required | |
| property | RadioButton | rightLineEnd | |
| property | RadioButton | rotationAngle | |
| property | RadioButton | shearAngle | |
| property | RadioButton | showHideFieldsBehaviors | |
| property | RadioButton | soundBehaviors | |
| property | RadioButton | splineItems | |
| property | RadioButton | states | |
| property | RadioButton | strokeAlignment | |
| property | RadioButton | strokeColor | |
| property | RadioButton | strokeCornerAdjustment | |
| property | RadioButton | strokeDashAndGap | |
| property | RadioButton | strokeTint | |
| property | RadioButton | strokeTransparencySettings | |
| property | RadioButton | strokeType | |
| property | RadioButton | strokeWeight | |
| property | RadioButton | submitFormBehaviors | |
| property | RadioButton | textFrames | |
| property | RadioButton | textWrapPreferences | |
| property | RadioButton | timingSettings | |
| property | RadioButton | topLeftCornerOption | |
| property | RadioButton | topLeftCornerRadius | |
| property | RadioButton | topRightCornerOption | |
| property | RadioButton | topRightCornerRadius | |
| property | RadioButton | transparencySettings | |
| property | RadioButton | verticalLayoutConstraints | |
| property | RadioButton | verticalScale | |
| property | RadioButton | viewZoomBehaviors | |
| property | RadioButton | visible | |
| property | RadioButton | visibleBounds | |
| property | RadioButton | wmfs | |
| property | RadioButtons | length | |
| property | Rectangle | checkBoxes | |
| property | Rectangle | comboBoxes | |
| property | Rectangle | horizontalLayoutConstraints | |
| property | Rectangle | htmlItems | |
| property | Rectangle | linkedPageItemOptions | |
| property | Rectangle | listBoxes | |
| property | Rectangle | radioButtons | |
| property | Rectangle | signatureFields | |
| property | Rectangle | textBoxes | |
| property | Rectangle | verticalLayoutConstraints | |
| property | Section | alternateLayout | |
| property | Section | alternateLayoutLength | |
| property | Section | pagination | |
| property | Section | paginationMaster | |
| property | SignatureField | AFTER_PLACE | |
| property | SignatureField | BEFORE_PLACE | |
| property | SignatureField | absoluteFlip | |
| property | SignatureField | absoluteHorizontalScale | |
| property | SignatureField | absoluteRotationAngle | |
| property | SignatureField | absoluteShearAngle | |
| property | SignatureField | absoluteVerticalScale | |
| property | SignatureField | activeStateIndex | |
| property | SignatureField | allArticles | |
| property | SignatureField | allGraphics | |
| property | SignatureField | allPageItems | |
| property | SignatureField | allowOverrides | |
| property | SignatureField | anchoredObjectSettings | |
| property | SignatureField | animationSettings | |
| property | SignatureField | appliedObjectStyle | |
| property | SignatureField | associatedXMLElement | |
| property | SignatureField | behaviors | |
| property | SignatureField | bottomLeftCornerOption | |
| property | SignatureField | bottomLeftCornerRadius | |
| property | SignatureField | bottomRightCornerOption | |
| property | SignatureField | bottomRightCornerRadius | |
| property | SignatureField | clearFormBehaviors | |
| property | SignatureField | contentTransparencySettings | |
| property | SignatureField | description | |
| property | SignatureField | endCap | |
| property | SignatureField | endJoin | |
| property | SignatureField | epss | |
| property | SignatureField | epstexts | |
| property | SignatureField | eventListeners | |
| property | SignatureField | events | |
| property | SignatureField | fillColor | |
| property | SignatureField | fillTint | |
| property | SignatureField | fillTransparencySettings | |
| property | SignatureField | flip | |
| property | SignatureField | gapColor | |
| property | SignatureField | gapTint | |
| property | SignatureField | geometricBounds | |
| property | SignatureField | gotoAnchorBehaviors | |
| property | SignatureField | gotoFirstPageBehaviors | |
| property | SignatureField | gotoLastPageBehaviors | |
| property | SignatureField | gotoNextPageBehaviors | |
| property | SignatureField | gotoNextViewBehaviors | |
| property | SignatureField | gotoPreviousPageBehaviors | |
| property | SignatureField | gotoPreviousViewBehaviors | |
| property | SignatureField | gotoURLBehaviors | |
| property | SignatureField | gradientFillAngle | |
| property | SignatureField | gradientFillLength | |
| property | SignatureField | gradientFillStart | |
| property | SignatureField | gradientStrokeAngle | |
| property | SignatureField | gradientStrokeLength | |
| property | SignatureField | gradientStrokeStart | |
| property | SignatureField | graphicLines | |
| property | SignatureField | graphics | |
| property | SignatureField | groups | |
| property | SignatureField | hiddenUntilTriggered | |
| property | SignatureField | horizontalLayoutConstraints | |
| property | SignatureField | horizontalScale | |
| property | SignatureField | id | |
| property | SignatureField | images | |
| property | SignatureField | index | |
| property | SignatureField | isValid | |
| property | SignatureField | itemLayer | |
| property | SignatureField | label | |
| property | SignatureField | leftLineEnd | |
| property | SignatureField | linkedPageItemOptions | |
| property | SignatureField | localDisplaySetting | |
| property | SignatureField | locked | |
| property | SignatureField | miterLimit | |
| property | SignatureField | movieBehaviors | |
| property | SignatureField | name | |
| property | SignatureField | nonprinting | |
| property | SignatureField | openFileBehaviors | |
| property | SignatureField | ovals | |
| property | SignatureField | overprintFill | |
| property | SignatureField | overprintGap | |
| property | SignatureField | overprintStroke | |
| property | SignatureField | overridden | |
| property | SignatureField | overriddenMasterPageItem | |
| property | SignatureField | pageItems | |
| property | SignatureField | parent | |
| property | SignatureField | parentPage | |
| property | SignatureField | pdfs | |
| property | SignatureField | picts | |
| property | SignatureField | polygons | |
| property | SignatureField | preferences | |
| property | SignatureField | printFormBehaviors | |
| property | SignatureField | printableInPdf | |
| property | SignatureField | properties | |
| property | SignatureField | readOnly | |
| property | SignatureField | rectangles | |
| property | SignatureField | required | |
| property | SignatureField | rightLineEnd | |
| property | SignatureField | rotationAngle | |
| property | SignatureField | shearAngle | |
| property | SignatureField | showHideFieldsBehaviors | |
| property | SignatureField | soundBehaviors | |
| property | SignatureField | splineItems | |
| property | SignatureField | strokeAlignment | |
| property | SignatureField | strokeColor | |
| property | SignatureField | strokeCornerAdjustment | |
| property | SignatureField | strokeDashAndGap | |
| property | SignatureField | strokeTint | |
| property | SignatureField | strokeTransparencySettings | |
| property | SignatureField | strokeType | |
| property | SignatureField | strokeWeight | |
| property | SignatureField | submitFormBehaviors | |
| property | SignatureField | textFrames | |
| property | SignatureField | textWrapPreferences | |
| property | SignatureField | timingSettings | |
| property | SignatureField | topLeftCornerOption | |
| property | SignatureField | topLeftCornerRadius | |
| property | SignatureField | topRightCornerOption | |
| property | SignatureField | topRightCornerRadius | |
| property | SignatureField | transparencySettings | |
| property | SignatureField | verticalLayoutConstraints | |
| property | SignatureField | verticalScale | |
| property | SignatureField | viewZoomBehaviors | |
| property | SignatureField | visible | |
| property | SignatureField | visibleBounds | |
| property | SignatureField | wmfs | |
| property | SignatureFields | length | |
| property | Snippet | checkBoxes | |
| property | Snippet | comboBoxes | |
| property | Snippet | listBoxes | |
| property | Snippet | radioButtons | |
| property | Snippet | signatureFields | |
| property | Snippet | textBoxes | |
| property | Sound | horizontalLayoutConstraints | |
| property | Sound | linkedPageItemOptions | |
| property | Sound | verticalLayoutConstraints | |
| property | SplineItem | checkBoxes | |
| property | SplineItem | comboBoxes | |
| property | SplineItem | horizontalLayoutConstraints | |
| property | SplineItem | htmlItems | |
| property | SplineItem | linkedPageItemOptions | |
| property | SplineItem | listBoxes | |
| property | SplineItem | radioButtons | |
| property | SplineItem | signatureFields | |
| property | SplineItem | textBoxes | |
| property | SplineItem | verticalLayoutConstraints | |
| property | Spread | checkBoxes | |
| property | Spread | comboBoxes | |
| property | Spread | listBoxes | |
| property | Spread | radioButtons | |
| property | Spread | signatureFields | |
| property | Spread | textBoxes | |
| property | StaticText | staticAlignment | |
| property | Story | cellStyleMappings | |
| property | Story | charStyleMappings | |
| property | Story | checkBoxes | |
| property | Story | comboBoxes | |
| property | Story | listBoxes | |
| property | Story | paraStyleMappings | |
| property | Story | paragraphKashidaWidth | |
| property | Story | radioButtons | |
| property | Story | signatureFields | |
| property | Story | tableStyleMappings | |
| property | Story | textBoxes | |
| property | StoryWindow | selectionKeyObject | |
| property | StyleExportTagMap | splitDocument | |
| property | SubmitFormBehavior | behaviorEvent | |
| property | SubmitFormBehavior | enableBehavior | |
| property | SubmitFormBehavior | eventListeners | |
| property | SubmitFormBehavior | events | |
| property | SubmitFormBehavior | id | |
| property | SubmitFormBehavior | index | |
| property | SubmitFormBehavior | isValid | |
| property | SubmitFormBehavior | label | |
| property | SubmitFormBehavior | name | |
| property | SubmitFormBehavior | parent | |
| property | SubmitFormBehavior | properties | |
| property | SubmitFormBehavior | url | |
| property | SubmitFormBehaviors | length | |
| property | Table | checkBoxes | |
| property | Table | comboBoxes | |
| property | Table | listBoxes | |
| property | Table | radioButtons | |
| property | Table | signatureFields | |
| property | Table | textBoxes | |
| property | TableStyleMapping | destinationStyleName | |
| property | TableStyleMapping | eventListeners | |
| property | TableStyleMapping | events | |
| property | TableStyleMapping | index | |
| property | TableStyleMapping | isValid | |
| property | TableStyleMapping | mappingRuleType | |
| property | TableStyleMapping | parent | |
| property | TableStyleMapping | properties | |
| property | TableStyleMapping | sourceStyleName | |
| property | TableStyleMappings | length | |
| property | Text | checkBoxes | |
| property | Text | comboBoxes | |
| property | Text | listBoxes | |
| property | Text | paragraphKashidaWidth | |
| property | Text | radioButtons | |
| property | Text | signatureFields | |
| property | Text | textBoxes | |
| property | TextBox | AFTER_PLACE | |
| property | TextBox | BEFORE_PLACE | |
| property | TextBox | absoluteFlip | |
| property | TextBox | absoluteHorizontalScale | |
| property | TextBox | absoluteRotationAngle | |
| property | TextBox | absoluteShearAngle | |
| property | TextBox | absoluteVerticalScale | |
| property | TextBox | activeStateIndex | |
| property | TextBox | allArticles | |
| property | TextBox | allGraphics | |
| property | TextBox | allPageItems | |
| property | TextBox | allowOverrides | |
| property | TextBox | anchoredObjectSettings | |
| property | TextBox | animationSettings | |
| property | TextBox | appliedObjectStyle | |
| property | TextBox | associatedXMLElement | |
| property | TextBox | behaviors | |
| property | TextBox | bottomLeftCornerOption | |
| property | TextBox | bottomLeftCornerRadius | |
| property | TextBox | bottomRightCornerOption | |
| property | TextBox | bottomRightCornerRadius | |
| property | TextBox | clearFormBehaviors | |
| property | TextBox | contentTransparencySettings | |
| property | TextBox | description | |
| property | TextBox | endCap | |
| property | TextBox | endJoin | |
| property | TextBox | epss | |
| property | TextBox | epstexts | |
| property | TextBox | eventListeners | |
| property | TextBox | events | |
| property | TextBox | fillColor | |
| property | TextBox | fillTint | |
| property | TextBox | fillTransparencySettings | |
| property | TextBox | flip | |
| property | TextBox | fontSize | |
| property | TextBox | gapColor | |
| property | TextBox | gapTint | |
| property | TextBox | geometricBounds | |
| property | TextBox | gotoAnchorBehaviors | |
| property | TextBox | gotoFirstPageBehaviors | |
| property | TextBox | gotoLastPageBehaviors | |
| property | TextBox | gotoNextPageBehaviors | |
| property | TextBox | gotoNextViewBehaviors | |
| property | TextBox | gotoPreviousPageBehaviors | |
| property | TextBox | gotoPreviousViewBehaviors | |
| property | TextBox | gotoURLBehaviors | |
| property | TextBox | gradientFillAngle | |
| property | TextBox | gradientFillLength | |
| property | TextBox | gradientFillStart | |
| property | TextBox | gradientStrokeAngle | |
| property | TextBox | gradientStrokeLength | |
| property | TextBox | gradientStrokeStart | |
| property | TextBox | graphicLines | |
| property | TextBox | graphics | |
| property | TextBox | groups | |
| property | TextBox | hiddenUntilTriggered | |
| property | TextBox | horizontalLayoutConstraints | |
| property | TextBox | horizontalScale | |
| property | TextBox | id | |
| property | TextBox | images | |
| property | TextBox | index | |
| property | TextBox | isValid | |
| property | TextBox | itemLayer | |
| property | TextBox | label | |
| property | TextBox | leftLineEnd | |
| property | TextBox | linkedPageItemOptions | |
| property | TextBox | localDisplaySetting | |
| property | TextBox | locked | |
| property | TextBox | miterLimit | |
| property | TextBox | movieBehaviors | |
| property | TextBox | multiline | |
| property | TextBox | name | |
| property | TextBox | nonprinting | |
| property | TextBox | openFileBehaviors | |
| property | TextBox | ovals | |
| property | TextBox | overprintFill | |
| property | TextBox | overprintGap | |
| property | TextBox | overprintStroke | |
| property | TextBox | overridden | |
| property | TextBox | overriddenMasterPageItem | |
| property | TextBox | pageItems | |
| property | TextBox | parent | |
| property | TextBox | parentPage | |
| property | TextBox | password | |
| property | TextBox | pdfs | |
| property | TextBox | picts | |
| property | TextBox | polygons | |
| property | TextBox | preferences | |
| property | TextBox | printFormBehaviors | |
| property | TextBox | printableInPdf | |
| property | TextBox | properties | |
| property | TextBox | readOnly | |
| property | TextBox | rectangles | |
| property | TextBox | required | |
| property | TextBox | rightLineEnd | |
| property | TextBox | rightToLeftField | |
| property | TextBox | rotationAngle | |
| property | TextBox | scrollable | |
| property | TextBox | shearAngle | |
| property | TextBox | showHideFieldsBehaviors | |
| property | TextBox | soundBehaviors | |
| property | TextBox | splineItems | |
| property | TextBox | strokeAlignment | |
| property | TextBox | strokeColor | |
| property | TextBox | strokeCornerAdjustment | |
| property | TextBox | strokeDashAndGap | |
| property | TextBox | strokeTint | |
| property | TextBox | strokeTransparencySettings | |
| property | TextBox | strokeType | |
| property | TextBox | strokeWeight | |
| property | TextBox | submitFormBehaviors | |
| property | TextBox | textFrames | |
| property | TextBox | textWrapPreferences | |
| property | TextBox | timingSettings | |
| property | TextBox | topLeftCornerOption | |
| property | TextBox | topLeftCornerRadius | |
| property | TextBox | topRightCornerOption | |
| property | TextBox | topRightCornerRadius | |
| property | TextBox | transparencySettings | |
| property | TextBox | verticalLayoutConstraints | |
| property | TextBox | verticalScale | |
| property | TextBox | viewZoomBehaviors | |
| property | TextBox | visible | |
| property | TextBox | visibleBounds | |
| property | TextBox | wmfs | |
| property | TextBoxes | length | |
| property | TextColumn | checkBoxes | |
| property | TextColumn | comboBoxes | |
| property | TextColumn | listBoxes | |
| property | TextColumn | paragraphKashidaWidth | |
| property | TextColumn | radioButtons | |
| property | TextColumn | signatureFields | |
| property | TextColumn | textBoxes | |
| property | TextDefault | paragraphKashidaWidth | |
| property | TextFrame | checkBoxes | |
| property | TextFrame | comboBoxes | |
| property | TextFrame | horizontalLayoutConstraints | |
| property | TextFrame | linkedPageItemOptions | |
| property | TextFrame | listBoxes | |
| property | TextFrame | objectExportOptions | |
| property | TextFrame | radioButtons | |
| property | TextFrame | signatureFields | |
| property | TextFrame | textBoxes | |
| property | TextFrame | verticalLayoutConstraints | |
| property | TextFramePreference | autoSizingReferencePoint | |
| property | TextFramePreference | autoSizingType | |
| property | TextFramePreference | minimumHeightForAutoSizing | |
| property | TextFramePreference | minimumWidthForAutoSizing | |
| property | TextFramePreference | textColumnMaxWidth | |
| property | TextFramePreference | useFlexibleColumnWidth | |
| property | TextFramePreference | useMinimumHeightForAutoSizing | |
| property | TextFramePreference | useMinimumWidthForAutoSizing | |
| property | TextFramePreference | useNoLineBreaksForAutoSizing | |
| property | TextPreference | quoteCharactersRotatedInVertical | |
| property | TextStyleRange | checkBoxes | |
| property | TextStyleRange | comboBoxes | |
| property | TextStyleRange | listBoxes | |
| property | TextStyleRange | paragraphKashidaWidth | |
| property | TextStyleRange | radioButtons | |
| property | TextStyleRange | signatureFields | |
| property | TextStyleRange | textBoxes | |
| property | WMF | horizontalLayoutConstraints | |
| property | WMF | linkedPageItemOptions | |
| property | WMF | verticalLayoutConstraints | |
| property | Window | selectionKeyObject | |
| property | Word | checkBoxes | |
| property | Word | comboBoxes | |
| property | Word | listBoxes | |
| property | Word | paragraphKashidaWidth | |
| property | Word | radioButtons | |
| property | Word | signatureFields | |
| property | Word | textBoxes | |
| property | XmlStory | cellStyleMappings | |
| property | XmlStory | charStyleMappings | |
| property | XmlStory | checkBoxes | |
| property | XmlStory | comboBoxes | |
| property | XmlStory | listBoxes | |
| property | XmlStory | paraStyleMappings | |
| property | XmlStory | paragraphKashidaWidth | |
| property | XmlStory | radioButtons | |
| property | XmlStory | signatureFields | |
| property | XmlStory | tableStyleMappings | |
| property | XmlStory | textBoxes | |
| property(enum) | AlignDistributeBounds | KEY_OBJECT | |
| property(enum) | AutoSizingReferenceEnum | BOTTOM_CENTER_POINT | |
| property(enum) | AutoSizingReferenceEnum | BOTTOM_LEFT_POINT | |
| property(enum) | AutoSizingReferenceEnum | BOTTOM_RIGHT_POINT | |
| property(enum) | AutoSizingReferenceEnum | CENTER_POINT | |
| property(enum) | AutoSizingReferenceEnum | LEFT_CENTER_POINT | |
| property(enum) | AutoSizingReferenceEnum | RIGHT_CENTER_POINT | |
| property(enum) | AutoSizingReferenceEnum | TOP_CENTER_POINT | |
| property(enum) | AutoSizingReferenceEnum | TOP_LEFT_POINT | |
| property(enum) | AutoSizingReferenceEnum | TOP_RIGHT_POINT | |
| property(enum) | AutoSizingTypeEnum | HEIGHT_AND_WIDTH | |
| property(enum) | AutoSizingTypeEnum | HEIGHT_AND_WIDTH_PROPORTIONALLY | |
| property(enum) | AutoSizingTypeEnum | HEIGHT_ONLY | |
| property(enum) | AutoSizingTypeEnum | OFF | |
| property(enum) | AutoSizingTypeEnum | WIDTH_ONLY | |
| property(enum) | CoordinateSpaces | PAGE_COORDINATES | |
| property(enum) | CustomLayoutTypeEnum | ALIGNMENT_AND_SPACING | |
| property(enum) | CustomLayoutTypeEnum | FLOAT_LEFT | |
| property(enum) | CustomLayoutTypeEnum | FLOAT_RIGHT | |
| property(enum) | DiacriticPositionOptions | OPENTYPE_POSITION_FROM_BASELINE | |
| property(enum) | DimensionsConstraints | FIXED_DIMENSION | |
| property(enum) | DimensionsConstraints | FLEXIBLE_DIMENSION | |
| property(enum) | DocumentIntentOptions | DPS_INTENT | |
| property(enum) | EpubVersion | EPUB2 | |
| property(enum) | EpubVersion | EPUB3 | |
| property(enum) | EpubVersion | EPUB3_WITH_LAYOUT | |
| property(enum) | FindChangeTransliterateCharacterTypes | ARABIC_INDIC_DIGITS | |
| property(enum) | FindChangeTransliterateCharacterTypes | FARSI_DIGITS | |
| property(enum) | FindChangeTransliterateCharacterTypes | WESTERN_ARABIC_DIGITS | |
| property(enum) | GuideTypeOptions | LIQUID | |
| property(enum) | GuideTypeOptions | RULER | |
| property(enum) | LanguageAndRegion | INDIC | |
| property(enum) | LayoutRuleOptions | GUIDE_BASED | |
| property(enum) | LayoutRuleOptions | OBJECT_BASED | |
| property(enum) | LayoutRuleOptions | OFF | |
| property(enum) | LayoutRuleOptions | PRESERVE_EXISTING | |
| property(enum) | LayoutRuleOptions | RECENTER | |
| property(enum) | LayoutRuleOptions | SCALE | |
| property(enum) | LayoutRuleOptions | USE_MASTER | |
| property(enum) | MapType | GROUP_MAPPING_RULE | |
| property(enum) | MapType | GROUP_TO_STYLE_MAPPING_RULE | |
| property(enum) | MapType | STYLE_MAPPING_RULE | |
| property(enum) | MapType | STYLE_TO_GROUP_MAPPING_RULE | |
| property(enum) | PDFColorSpace | GRAY | |
| property(enum) | PNGColorSpaceEnum | GRAY | |
| property(enum) | PNGColorSpaceEnum | RGB | |
| property(enum) | PNGExportRangeEnum | EXPORT_ALL | |
| property(enum) | PNGExportRangeEnum | EXPORT_RANGE | |
| property(enum) | PNGQualityEnum | HIGH | |
| property(enum) | PNGQualityEnum | LOW | |
| property(enum) | PNGQualityEnum | MAXIMUM | |
| property(enum) | PNGQualityEnum | MEDIUM | |
| property(enum) | PageViewOptions | BY_ALTERNATE_LAYOUT | |
| property(enum) | PageViewOptions | HORIZONTALLY | |
| property(enum) | PageViewOptions | VERTICALLY | |
| property(enum) | PaginationOption | AUTO_PAGINATE | |
| property(enum) | PaginationOption | FROM_LAST_PAGE | |
| property(enum) | ParagraphJustificationOptions | NASKH_KASHIDA_JUSTIFICATION | |
| property(enum) | ParagraphJustificationOptions | NASKH_KASHIDA_JUSTIFICATION_FRAC | |
| property(enum) | ParagraphJustificationOptions | NASKH_TATWEEL_JUSTIFICATION | |
| property(enum) | ParagraphJustificationOptions | NASKH_TATWEEL_JUSTIFICATION_FRAC | |
| property(enum) | PreviewPagesOptions | ALL_PAGES | |
| property(enum) | PreviewPagesOptions | FIRST_10_PAGES | |
| property(enum) | PreviewPagesOptions | FIRST_2_PAGES | |
| property(enum) | PreviewPagesOptions | FIRST_5_PAGES | |
| property(enum) | PreviewPagesOptions | FIRST_PAGE | |
| property(enum) | SelectionOptions | SET_KEY | |
| property(enum) | SnapshotBlendingModes | FULL_SNAPSHOT_BLENDING | |
| property(enum) | SnapshotBlendingModes | IGNORE_LAYOUT_SNAPSHOTS | |
| property(enum) | SnapshotBlendingModes | LIMITED_SNAPSHOT_BLENDING | |
| property(enum) | SnapshotBlendingModes | USE_NEAREST_SNAPSHOT | |
| property(enum) | StateTypes | DOWN_OFF | |
| property(enum) | StateTypes | DOWN_ON | |
| property(enum) | StateTypes | ROLLOVER_OFF | |
| property(enum) | StateTypes | ROLLOVER_ON | |
| property(enum) | StateTypes | UP_OFF | |
| property(enum) | StateTypes | UP_ON | |
| property(enum) | StaticAlignmentOptions | CENTER_ALIGN | |
| property(enum) | StaticAlignmentOptions | LEFT_ALIGN | |
| property(enum) | StaticAlignmentOptions | RIGHT_ALIGN | |
| property(enum) | TagTextExportCharacterSet | CENTRALEUROPEAN_ISO | |
| property(enum) | TagTextExportCharacterSet | CYRILLIC_ISO | |
| property(enum) | TagTextExportCharacterSet | GREEK_ISO | |
| property(enum) | TagTextExportCharacterSet | WINDOWS_ARABIC | |
| property(enum) | TagTextExportCharacterSet | WINDOWS_HEBREW | |
| property(enum) | TextFrameContents | PLACEHOLDER_TEXT_ARABIC | |
| property(enum) | TextFrameContents | PLACEHOLDER_TEXT_CYRILLIC | |
| property(enum) | TextFrameContents | PLACEHOLDER_TEXT_GREEK | |
| property(enum) | TextFrameContents | PLACEHOLDER_TEXT_HEBREW | |
| property(enum) | TextImportCharacterSet | ARABIC_ASMO | |
| property(enum) | TextImportCharacterSet | ARABIC_ASMO_TRANSPARENT | |
| property(enum) | TextImportCharacterSet | MACINTOSH_ARABIC | |
| property(enum) | TextImportCharacterSet | MACINTOSH_GREEK_SHARED_CAPS | |
| property(enum) | TextImportCharacterSet | MACINTOSH_HEBREW | |
| property(enum) | TextImportCharacterSet | WINDOWS_ARABIC | |
| property(enum) | TextImportCharacterSet | WINDOWS_HEBREW |
Everybody happy?
Copy link to clipboard
Copied
@Jongware & John – Great ! Great ! Great !!
Thank you very much!
Uwe
Copy link to clipboard
Copied
Thanks very much!
Peter
Copy link to clipboard
Copied
Some odd choices here ...
For example, who could ever have a grudge against PagesPanel.verticalView!? Surely that's not no longer an option in CS6?
Copy link to clipboard
Copied
For example, who could ever have a grudge against PagesPanel.verticalView!? Surely that's not no longer an option in CS6?
Whoops. The position of the UI control for this changed, and I figured it just moved around in the scripting DOM, but that doesn't appear to be the case. Sounds like an oversight. Bug #3177903: PagesPanel.verticalView property disappeared (CS6 regression). If you find any others, it would be good to find them prior to Monday.
On the bright side, you can just set app.scriptPreferences.version=7.5 and it still works.
Any others?
*Kicks self* for not running this report earlier and not really paying attention...
Copy link to clipboard
Copied
Whoops. The position of the UI control for this changed, and I figured it just moved around in the scripting DOM, but that doesn't appear to be the case. Sounds like an oversight. Bug #3177903: PagesPanel.verticalView property disappeared (CS6 regression). If you find any others, it would be good to find them prior to Monday.
Well, that was exciting.
Bug was marked Withdrawn/Closed/As Designed on Monday, I guess because QE thought that there was some way to use PageViewOptions.
I lodged an inquiry then and today it was confirmed that it is indeed a bug (after "lengthy investigation") and it's been reopened and moved to CSnext.
Gotta fight for your bugs!
Copy link to clipboard
Copied
@Jongware – Could you also do a chm version for InDesign CS5.5?
I know there is the online documentation. I wonder how much trouble it is to transform that into a chm file.
Or are there tools to do it myself?
And another thing with the online documentation of CS5.5:
Did you by any chance have the Adobe Digitial Publishing Suite installed when you created the online version of InDesign CS5.5?
I noticed that there is the "getAllOverlays" method listed for "application":
http://jongware.mit.edu/idcsjs5.5/pc_Application.html#getAllOverlays
That method is missing in the above lists by John. That is no omission since there seems no DPS involved on his side. And in your case, no wonder, it is missing in the CS6 documentation too, since DPS v20 for InDesign CS6 is not available yet and the current v19 does not work with InDesign CS6.
On the other hand the "app.getDigpubVersion()" method is missing in your online documentation of InDesign CS5.5 which, so I believe, belongs totally to DPS and is only available if you have a installed DPS (like me). But maybe this method came with v19 of DPS and you had v17 or v18 installed the day you did the online documentation.
Thank you again for your efforts!
Uwe
Copy link to clipboard
Copied
Laubender wrote:
@Jongware – Could you also do a chm version for InDesign CS5.5?
I know there is the online documentation. I wonder how much trouble it is to transform that into a chm file.
Or are there tools to do it myself?
CS5.5 was a strange omission -- perhaps because it came out at such a strange time! Corrected; I also threw in InCopy and ID Server for completeness' sake.
If you have a set of HTML files you can convert them to a single CHM file with Microsoft's HTML Help Workshop. The version I am using is from 1999, which is ancient in terms of software, but it does a very good job, as an input size of 19MB gets compressed into a mere 3.5MB in minutes.
These help files are 'old format'; there is also a 'new format', but (a) I don't have the tools or any experience with creating it, (b) I'm not too sure if my preferred Mac viewer (Robin Lu's iCHM) can display them, and (c) I'm not too wild about how files are displayed
.
Copy link to clipboard
Copied
Updated:
When you see a property such as "Document.articles", sometimes you want to get to the reference to the "Articles" -- plural --, for example when you want to add or list them. But more often, you want to see the properties of an individual article; and to get to those, you have to click "Articles", then browse down the list to a reference to the singular and then click that. So now, when I see a plural reference and there also is a singular class, this is shown besides the plural.
Some numbers for the CS6 version, by the way, to illustrate the depth & width of this help ![]()
| 8,105 | Topics |
| 117,298 | Local links |
| 1 | Internet link |
| 0 | Graphics |
Copy link to clipboard
Copied
So now, when I see a plural reference and there also is a singular class, this is shown besides the plural.
@Jongware – and you did an update for this in the CS4 files as well. Cool.

Uwe
Copy link to clipboard
Copied
> For example, who could ever have a grudge against PagesPanel.verticalView!? Surely that's not no longer an option in CS6?
See here: http://jongware.mit.edu/idcs6js/pe_PageViewOptions.html <g>
The odd choice was to move it in the Panel Options dialog.
Peter
Copy link to clipboard
Copied
See here: http://jongware.mit.edu/idcs6js/pe_PageViewOptions.html <g>
The odd choice was to move it in the Panel Options dialog.
Yes, but what variable uses this enumerator?
Copy link to clipboard
Copied
Dunno. I've been looking under all kinds of preferences and settings, but haven't found it. To make finding what parent(s) a property or a method belongs to, I was going to ask if it's possible to change the xslt in such a way that the output list includes full path names, so to speak.
Peter
Copy link to clipboard
Copied
I had found the PageViewOptions enumerator before I concluded that there was no way to do this, but it didn't get me anywhere...but I'd be happy to be shown to be wrong!
To make finding what parent(s) a property or a method belongs to, I was going to ask if it's possible to change the xslt in such a way that the output list includes full path names, so to speak.
Unfortunately that's not how the XML is structured. Take a look at the OMV cache file, it looks like this:
<dictionary engine="">
<map name="8.0" ...>
<topicref navtitle="Assignment Suite">
<topicref navtitle="Assignment" href="#/Assignment"/>
</topicref>
</map>
<package>
<classdef name="Assignment" dynamic="true">
<shortdesc>An assignment.</shortdesc>
<elements type="instance">
<property name="documentPath" rwaccess="readonly">
<shortdesc>The path to the document that the hyperlink ...</shortdesc>
<datatype>
<type>File</type>
</datatype>
</property>
...
<method name="update">
<shortdesc>Updates the assignment file.</shortdesc>
<parameters>
<parameter name="versionComments">
<shortdesc>The comment for this version. (Optional)</shortdesc>
<datatype>
<type>string</type>
</datatype>
</parameter>
...
</parameters>
</method>
</elements>
</classdef>
</package>
</dictionary>
That is, for each proprerty (including eums), we only know the associated Class. And the Class belongs to a Suite.
Sometimes the descriptions include (unstructured) references to an enumerator, but there are no decriptions that reference this enumerator.
And nothing has a <datatype/> tag that lists this enumerator.
So, it's certainly possible to change the XSLT to look up the Suite of a class in the <map/> section, but I didn't bother because it's a little more code and doesn't get us anything real. The PageViewOptions class belongs to the Enumeration suite, and that's all we can say.
Or did I misunderstand?
Copy link to clipboard
Copied
Ok, thanks, I see now that the xml won't let you get the full path. Thanks.
Copy link to clipboard
Copied
It sounds to me like Adobe intended this enumeration to be used in the PagesPanel ... but they removed the property that it was supposed to be associated with it ...
Copy link to clipboard
Copied
.. added CS6 InCopy and CS6 Server as well.
Uwe, I don't do anything 'special' to get or not get special DPS commands included -- I only use what I get to see in the most recent OMV file.
Since DPS is constantly updated (well, probably a good thing) you'll have to check Adobe's OMV for changes in the JS interface, each time you update it. Besides, I'm not a fan user of DPS so I'm not going to jump through hoops everytime ithis happens.
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more