Adobe Illustrator CS6 Type Library - Documentation.help

Transcription

Adobe Illustrator CS6 Type Library

ContentsJavaScript Reference JavaScript BaseGuideClassesScripting is one of theSuite that applies tomost powerful featuresall applicationsin Illustrator. It can saveScripting commandslots of time: almostanything you can doand classes for Adobewith the user interface,Illustratoryou can do with scripts,and there are even a few Color classes forAdobe Illustratorthings you can do inscripting that you cannot Text processingdo from within the usercommands andinterface. The contentsclasses for Adobeon the right iscategorized by function; Illustratorin the index at theTransformationbottom, you can find allmatrix events andobjects in alphabeticalclasses for Adobeorder. Each objectdescription lists itsIllustratorelements, properties, andClasses used only formethods.creating path items.This entire site was entirelycreated automatically! Oh wow - Cannot be use toread more!access page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for AdobeIllustratorFile export options

classes for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6

About these pagesThe ExtendScript ToolkitEditor comes with a builtin Help function, whichdisplays all objectsaccessible in JavaScriptfor InDesign, Bridge,Illustrator, and Photoshop.It does so by sending arequest to the targetprogram to output anXML data file, containingthe prototypes anddefinitions for all of itsscriptable components.This XML file is saved ina cache (presumablybecause it's a lengthyoperation) andsubsequentially displayedwhen requested. If itdetects a new plugin, therequest is sent again andthe XML file is rebuiltfrom scratch. That meansthat online help for anynew scriptable plugincommands are availableimmediately for your newscripts. Amazing!XML is a very readabledata format . if you're abithead like me! Butwouldn't it be nice to beable to format this helptext just as you like, andbe readable (and

searchable!) in yourfavourite program, such asyour web browser? Well,the XML format has aunique advantage over justabout any other data file.It's highly structured, andthis content can bemanipulated using XSLT— the ExtensibleStylesheet LanguageTransformations language,as defined by the WorldWide Web Consortium(W3C). An XSLTstylesheet can sort andmanipulate XML input,insert all kinds of extradata (such as, oh, acopyright manifest at thetop of every output), andwrite the result to one ormore output files. Whathas that to do with these750 pages of HTML? Ididn't create a single oneof them. (This page iscreated 'All By Hand'TM— but it's not part ofAdobe's XML files.)So I wrote an XSLTstylesheet to read, parse,split, and sort the hugeinput file, and to output itas formatted andhyperlinked HTML pages.This was no mean task atall — the input file is over

113,000 lines long, and thelatest version of the stylesheet contains just under athousand lines. All in all,it took me more than 50hours of hard work tocreate the output you seebefore you. But wait!couldn't I just have searchand-replaced the XMLcommands into HTML?Sure — manually sortingand such, but still doable.But if I ever want tochange something — say,I want 4 columns of indexinstead of 3, or I don'twant to use tablesanymore, but real CSS3columns — all I have todo is re-write a (small)part of the XSLT stylesheet and let the SaxonXSLT interpreter go overthe XML again. If myinstallation of InDesign isupgraded with somescriptable plugin, all Ihave to do is run Saxonagain. Since the XML helpfor CS4 has the sameformatting, I can runSaxon again on its helpfile. And there you haveit! Another entirely newset of more than 750 files,all properly indexed andhyperlinked, without medoing any more than

changing how it shouldlook!aUnderstanding XML iseasy, especially if you arewell-versed in HTML. Ifthe latter, you shouldreally know aboutXHTML — the wellformatted younger brotherof that plain old tacktogether-with-sticky-tapethat grew so bloated overthe years. XML is evenmore so structured, andthe step over shouldn't bedifficult. XSLT issomething quite else. Firstoff, it's defined in terms ofXML (meaning: you canrun an XSLT style sheetover an XSLT style sheet,for example to format itfor printing or viewing).It's a programminglanguage, but it doesn'twork in the do-this-thenthat sequential steps;instead, it's a procedurallanguage, and it describeswhat to do on each andevery XML element itencounters in the inputXML document. Writingyour first XSLT style sheetcan be frustrating (usually,because your first attemptsdon't appear to doanything at all) until you

get into the proper mindset. Soon you will bescanning every folder onyour computer for XMLfiles to examine! (Mac OSX users: a .plistconfiguration file is alsoXML; lots of other files inthat system are as well.)So, why did I work sohard on writing the sheetfor this? Well, it was funto create something new— a good reason in itself.Besides, I needed thetraining. As a typesetter,one of my upcoming jobsincludes a dictionary thatis being assembled asExcel data. I experimentedwith a small data set,exporting it from Excel asXML, and then convertingit to plain text, sortingentries and concatenatingduplicates all in one go.After that I reckoned,"INX" — InDesign'scompatibility file format— "is also an XML file",and went on to include allnecessary formatting, frompages and paragraphs,right up to the style andformatting of individualwords. Saxon still didn'tbreak into a sweat — andnow all I have to do if the

complete data comes in, isexport it to XML, run mysheet over it to create anINX output file, and openthat one with InDesign.The publisher will beamazed if he receives acomplete set of proofswithin a couple of hours(let's be generous), nomatter if it's a hundredpages of output or athousand. How does thatsound for pagethroughput!?AcknowledgementsThe first CHM conversionof the files for CS3 wasdone by fellow scriptingenthousiast ABC GREEN.Additionally, he helpedme set up my system tocompile other versions aswell. Thanks, mate!NoteaDue to a hard disk crash of myWindows machine I lost all of myinstalled programs. Fortunately, mygood friend René Kramer (19672010) was able to rescue most (ifnot all) of my data. Thanks, René that bottle of whiskey was wellearned. Enjoy it, whereever youare.So this version is not created withSaxon on a Windows computer.Working on my Mac, I downloadedKernow for Saxon. The olderversion 1.4 comes complete with aJava interface and Saxon 8B, and tomy surprise (and relief) it took just

a few clicks to re-generate theentire Help set anew. I said itbefore and I'll say it again: SupportOpen Source Software!Jongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsJavaScript BaseClassesBasic JavaScriptJavaScript Baseprogramming starts here. ClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for AdobeIllustrator ArrayBooleanDateErrorFileFolderFunctionGlobal flectionInfoRegExpSocketStringUnitValueXMLXMLList

File export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsSuite that applies toall applicationsApplicationJavaScript BaseDocumentClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for AdobeIllustrator

File export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsScriptingcommands andclasses for AdobeIllustratorJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used onlyfor creating pathitems. Cannot be useto access pageitems.File opening optionsclasses for m

File save optionsclasses for AdobeIllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses forcontroling AdobeIllustrator's dynamicpublishing behaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI tibilityPlacedItem

dViewZOrderMethod

Jongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsColor classes forAdobe IllustratorJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for ColorRGBColorSpotSpotColorSwatchSwatchGroup

File export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsText processingcommands andclasses for AdobeIllustratorJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used onlyfor creating pathitems. Cannot beuse to access pageitems.File opening optionsclasses for tRangeWariChuJustificationType

File save optionsclasses for AdobeIllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses forcontroling AdobeIllustrator's dynamicpublishing behaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsTransformationmatrix events andclasses for AdobeIllustratorMatrixJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save options

classes for AdobeIllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsClasses used onlyfor creating pathitems. Cannot beuse to access pageitems.JavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustrator

File save optionsclasses for AdobeIllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsFile opening optionsclasses for AdobeIllustratorJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for ptionsPDFOpenOptionsPhotoshop

IllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsFile save optionsclasses for AdobeIllustratorJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for tionsPDFSaveOptions

IllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsFile export optionsclasses for AdobeIllustratorJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for portOptionsTIFFExportTypeImageCaptureOptions

IllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsCommands andclasses forcontroling AdobeIllustrator'sdynamic publishingbehaviorDataSetJavaScript BaseVariableClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for Adobe

IllustratorFile save optionsclasses for AdobeIllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsMiscellaneousstandard events andclassesJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for Adobe

IllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsPrinting classesfor AdobeIllustratorJavaScript BaseClassesSuite that appliesto all applicationsScriptingcommands andclasses for AdobeIllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used onlyfor creating pathitems. Cannot beuse to access pageitems.File openingoptions classes forAdobe ModePrinterInfoPrinterTypeEnumPrintingBounds

File save optionsclasses for AdobeIllustratorFile export optionsclasses for AdobeIllustratorCommands andclasses forcontroling aneousstandard eventsand classesPrinting classesfor AdobeIllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, nTrappingTypeContents :: Index

Adobe Illustrator CS6 Type Library

ContentsTracing classes forAdobe IllustratorJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for racingModeTypeTracingObjectTracingOptionsViewType

File export optionsclasses for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsCollectionsJavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for AdobeIllustratorFile export ontsTextFrameItems

classes for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, ents :: Index

Adobe Illustrator CS6 Type Library

ContentsOther ClassesPointJavaScript BaseRectangleClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for AdobeIllustratorFile export options

classes for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

Adobe Illustrator CS6 Type Library

ContentsScriptUI ClassesDon't like the panels anddialogs Adobe came upwith? Create your ownand see if you can dobetter.JavaScript BaseClassesSuite that applies toall applicationsScripting commandsand classes forAdobe IllustratorColor classes forAdobe IllustratorText processingcommands andclasses for AdobeIllustratorTransformationmatrix events andclasses for AdobeIllustratorClasses used only forcreating path items.Cannot be use toaccess page items.File opening optionsclasses for AdobeIllustratorFile save optionsclasses for AdobeIllustratorFile export optionsBoundsButton (SUI)Checkbox mentEvent (SUI)Events (SUI)FlashPlayerGroup (SUI)IconButtonKeyboardStateLayoutManagerListBox (SUI)ListItemPanel (SUI)Point (SUI)ProgressbarRadioButton liderStaticText (SUI)TreeViewUIEventWindow (SUI)

classes for AdobeIllustratorCommands andclasses for controlingAdobe Illustrator'sdynamic publishingbehaviorMiscellaneousstandard events andclassesPrinting classes forAdobe IllustratorTracing classes forAdobe IllustratorCollectionsOther ClassesScriptUI ClassesJongware, 25Nov-2012v3.0.3iContents :: Index

ClassIndex A B C D E F GHI J K L M N O P AB C D E F GHI J K L M N O PAlternateGlyphsForm (enum)ArtStylesAntiAliasingMethod rs (enum)ArtClippingOption (enum)AutoCADCompatibility (enum)ArtStyleAutoCADExportFileFormat(enum) ABC D E F GHI J K L M N O PBaselineDirectionType (enum)BooleanBlendAnimationType (enum)BoundsBlendModes (enum)BrushBlendsExpandPolicy (enum)Brushes A BCD E F GHI J K L M N O PCMYKColorColorConversion (enum)CaseChangeType (enum)ColorConvertPurpose (enum)CharacterAttributesColorDestination (enum)CharacterStyleColorDitherMethod (enum)CharacterStylesColorModel (enum)CharactersColorProfile (enum)Checkbox (SUI)ColorReductionMethod (enum)ColorColorType (enum) A B CDE F GHI J K L M N O PDataSetDocumentColorSpace (enum)

DataSetsDocumentPresetDateDocumentPresetType (enum)DimensionDocumentPreviewMode oardLayout (enum) (enum)DocumentTransparencyGrid(enum) A B C DEF GHI J K L M N O PEPSPostScriptLevelEnum (enum) Event (SUI)EPSPreview (enum)Events ortOptionsJPEG A B C D EFGHI J K L M N O PFXGSaveOptionsFlashExportStyle (enum)FXGVersion (enum)FlashExportVersion (enum)FigureStyleType (enum)FlashImageFormat (enum)FileFlashJPEGMethod (enum)FiltersPreservePolicy (enum)FlashPlaybackSecurity (enum)FirstBaselineType (enum)FlashPlayer A B C D E F GH I J K L M N O licy (enum)GradientStopGraphItemGradientStopsGraphItems

GradientType (enum)GrayColor A B C D E F G HI J K L M N O ptureOptionsInkPrintStatus (enum)ImageColorSpace (enum)InkType (enum) A B C D E F GHIJK L M N O PJavaScriptExecutionMode (enum) Justification (enum) A B C D E F GHI JKL M N O PKeyboardStateKinsokuOrderEnum (enum) A B C D E F GHI J KLM N O PLabColorLayersLanguageType pe (enum)LegacyTextItems A B C D E F GHI J K LMN O PMathMeshItemMatrixMeshItems A B C D E F GHI J K L MNO PNamespaceNonNativeItemNoColorNonNativeItems A B C D E F GHI J K L M DF A B C D E F GHI J K L M N OP

A B C D E F GHI J K L M N OPPDFBoxType tSelection (enum)PDFCompatibility (enum)PatternPDFOverprint (enum)PatternColorPDFPrintAllowedEnum ridPlaneType (enum)PDFTrimMarkWeight (enum)PhotoshopCompatibility (enum)PDFXStandard es (enum)Point (SUI)Panel (SUI)PointType (enum)PaperPolarityValues raphStylesPrintArtworkDesignation (enum)ParagraphsPrintColorIntent PrintColorProfile (enum) A B C D E F GHI J K L M N O PQName A B C D E F GHI J K L M N O PRGBColorRasterLinkState (enum)

RGBColorRasterLinkState (enum)RadioButton (SUI)RasterizationColorModel mRectangleRasterItemsReflection A B C D E F GHI J K L M N O PSVGCSSPropertyLocation (enum) ScriptUIImageSVGDTDVersion (enum)ScriptUIPathSVGDocumentEncoding (enum)ScriptUIPenSVGFontSubsetting (enum)ScrollbarSVGFontType (enum)SliderSaveOptions e (enum)SpotColorKind (enum)ScreenSpotFunctionSpotsScriptUIStaticText GraphicsString A B C D E F GHI J K L M N O PTIFFByteOrder (enum)TextFrameItemTabStopAlignment (enum)TextFrameItemsTabStopInfoTextOrientation (enum)TagTextPathTagsTextPreservePolicy (enum)TextAntialias (enum)TextRange

TextAntialias (enum)TextRangeTextFontTextRangesTextFontsTextType (enum) A B C D E F GHI J K L M N O PUIEventUnitValue A B C D E F GHI J K L M N O PVariableVariablesVariableKind (enum)View A B C D E F GHI J K L M N O PWariChuJustificationType (enum) Window (SUI) A B C D E F GHI J K L M N O PXMLXMLList A B C D E F GHI J K L M N O PZOrderMethod (enum)Jongware, 25Nov-2012v3.0.3iContents :: Index

Class

The object provides a number of debugging facilities

Adobe Illustrator CS6 Type Library. Contents JavaScript Reference Guide Scripting is one of the . classes for Adobe Illustrator Commands and classes for controling Adobe Illustrator's dynamic publishing behavior . Saxon on a Windows computer. Wo