-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmkdocs.yml
226 lines (217 loc) · 10.5 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# Do not modify below line! Inherits common components.
INHERIT: ./docs/_global/mkdocs.yml
#### Site metadata & nav - update these!
site_name: Adobe Illustrator Scripting Guide
site_url: https://ai-scripting.docsforadobe.dev/
repo_url: https://github.com/docsforadobe/illustrator-scripting-guide/
repo_name: "illustrator-scripting-guide"
nav:
- Home: index.md
- Introduction:
- What is Scripting?: introduction/whatIsScripting.md
- Changelog: introduction/changelog.md
- Scripting language support in Adobe Illustrator CC: introduction/scriptingLanguageSupport.md
- Viewing the object model: introduction/viewingTheObjectModel.md
- Executing Scripts: introduction/executingScripts.md
- Illustrator Scripting Object Model:
- The Illustrator Scripting Object Model: objectmodel/objectModel.md
- Object Naming Conventions: objectmodel/objectNamingConventions.md
- Top-Level (containing) Objects: objectmodel/topLevelObjects.md
- The Artwork Tree: objectmodel/theArtworkTree.md
- Text Objects: objectmodel/textObjects.md
- Dynamic Objects: objectmodel/dynamic.md
- Symbols: objectmodel/symbols.md
- Transformations: objectmodel/transformations.md
- Scripting Illustrator:
- Launching and quitting Illustrator from a script: scripting/launching.md
- Working with objects: scripting/workingWithObjects.md
- Measurement Units: scripting/measurementUnits.md
- Page-item positioning and dimensions: scripting/positioning.md
- Paths and shapes: scripting/pathsShapes.md
- User-interaction levels: scripting/userInteractionLevels.md
- Printing Illustrator documents: scripting/printingDocuments.md
- Scripting with AppleScript:
- For more information: scriptingApplescript/forMoreInfo.md
- Your first Illustrator script: scriptingApplescript/yourFirstScript.md
- Object references: scriptingApplescript/objectReferences.md
- Working with text frames: scriptingApplescript/workingWithTextFrames.md
- Creating paths and shapes: scriptingApplescript/creatingPathsShapes.md
- Working with the perspective grid: scriptingApplescript/perspectiveGrid.md
- Scripting with JavaScript:
- For more information: scriptingJavascript/forMoreInfo.md
- Your first Illustrator script: scriptingJavascript/yourFirstScript.md
- Working with methods in JavaScript: scriptingJavascript/workingWithMethods.md
- Accessing and referencing objects: scriptingJavascript/objectReferences.md
- Working with text frames: scriptingJavascript/workingWithTextFrames.md
- Creating paths and shapes: scriptingJavascript/creatingPathsShapes.md
- Working with the perspective grid: scriptingJavascript/perspectiveGrid.md
- Scripting with VBScript:
- For more information: scriptingVBScript/forMoreInfo.md
- Your first Illustrator script: scriptingVBScript/yourFirstScript.md
- Accessing and referencing objects: scriptingVBScript/objectReferences.md
- Working with text frames: scriptingVBScript/workingWithTextFrames.md
- Creating paths and shapes: scriptingVBScript/creatingPathsShapes.md
- Working with enumeration values: scriptingVBScript/enumerationValues.md
- Working with the perspective grid: scriptingVBScript/perspectiveGrid.md
- Javascript Object Reference:
- Scripting Constants: jsobjref/scripting-constants.md
- JavaScript Object Reference: jsobjref/javascript-object-reference.md
- Application: jsobjref/Application.md
- Artboard: jsobjref/Artboard.md
- Artboards: jsobjref/Artboards.md
- Brush: jsobjref/Brush.md
- Brushes: jsobjref/Brushes.md
- CharacterAttributes: jsobjref/CharacterAttributes.md
- Characters: jsobjref/Characters.md
- CharacterStyle: jsobjref/CharacterStyle.md
- CharacterStyles: jsobjref/CharacterStyles.md
- CMYKColor: jsobjref/CMYKColor.md
- Color: jsobjref/Color.md
- CompoundPathItem: jsobjref/CompoundPathItem.md
- CompoundPathItems: jsobjref/CompoundPathItems.md
- Dataset: jsobjref/Dataset.md
- Datasets: jsobjref/Datasets.md
- Document: jsobjref/Document.md
- DocumentPreset: jsobjref/DocumentPreset.md
- Documents: jsobjref/Documents.md
- EPSSaveOptions: jsobjref/EPSSaveOptions.md
- ExportOptionsAutoCAD: jsobjref/ExportOptionsAutoCAD.md
- ExportOptionsFlash: jsobjref/ExportOptionsFlash.md
- ExportOptionsGIF: jsobjref/ExportOptionsGIF.md
- ExportOptionsJPEG: jsobjref/ExportOptionsJPEG.md
- ExportOptionsPhotoshop: jsobjref/ExportOptionsPhotoshop.md
- ExportOptionsPNG24: jsobjref/ExportOptionsPNG24.md
- ExportOptionsPNG8: jsobjref/ExportOptionsPNG8.md
- ExportOptionsSVG: jsobjref/ExportOptionsSVG.md
- ExportOptionsTIFF: jsobjref/ExportOptionsTIFF.md
- FXGSaveOptions: jsobjref/FXGSaveOptions.md
- Gradient: jsobjref/Gradient.md
- GradientColor: jsobjref/GradientColor.md
- Gradients: jsobjref/Gradients.md
- GradientStop: jsobjref/GradientStop.md
- GradientStops: jsobjref/GradientStops.md
- GraphicStyle: jsobjref/GraphicStyle.md
- GraphicStyles: jsobjref/GraphicStyles.md
- GraphItem: jsobjref/GraphItem.md
- GraphItems: jsobjref/GraphItems.md
- GrayColor: jsobjref/GrayColor.md
- GroupItem: jsobjref/GroupItem.md
- GroupItems: jsobjref/GroupItems.md
- IllustratorSaveOptions: jsobjref/IllustratorSaveOptions.md
- ImageCaptureOptions: jsobjref/ImageCaptureOptions.md
- Ink: jsobjref/Ink.md
- InkInfo: jsobjref/InkInfo.md
- InsertionPoint: jsobjref/InsertionPoint.md
- InsertionPoints: jsobjref/InsertionPoints.md
- LabColor: jsobjref/LabColor.md
- Layer: jsobjref/Layer.md
- Layers: jsobjref/Layers.md
- LegacyTextItem: jsobjref/LegacyTextItem.md
- LegacyTextItems: jsobjref/LegacyTextItems.md
- Lines: jsobjref/Lines.md
- Matrix: jsobjref/Matrix.md
- MeshItem: jsobjref/MeshItem.md
- MeshItems: jsobjref/MeshItems.md
- NoColor: jsobjref/NoColor.md
- NonNativeItem: jsobjref/NonNativeItem.md
- NonNativeItems: jsobjref/NonNativeItems.md
- OpenOptions: jsobjref/OpenOptions.md
- OpenOptionsAutoCAD: jsobjref/OpenOptionsAutoCAD.md
- OpenOptionsFreeHand: jsobjref/OpenOptionsFreeHand.md
- OpenOptionsPhotoshop: jsobjref/OpenOptionsPhotoshop.md
- PageItem: jsobjref/PageItem.md
- PageItems: jsobjref/PageItems.md
- Paper: jsobjref/Paper.md
- PaperInfo: jsobjref/PaperInfo.md
- ParagraphAttributes: jsobjref/ParagraphAttributes.md
- Paragraphs: jsobjref/Paragraphs.md
- ParagraphStyle: jsobjref/ParagraphStyle.md
- ParagraphStyles: jsobjref/ParagraphStyles.md
- PathItem: jsobjref/PathItem.md
- PathItems: jsobjref/PathItems.md
- PathPoint: jsobjref/PathPoint.md
- PathPoints: jsobjref/PathPoints.md
- Pattern: jsobjref/Pattern.md
- Patterns: jsobjref/Patterns.md
- PatternColor: jsobjref/PatternColor.md
- PDFFileOptions: jsobjref/PDFFileOptions.md
- PDFSaveOptions: jsobjref/PDFSaveOptions.md
- PhotoshopFileOptions: jsobjref/PhotoshopFileOptions.md
- PlacedItem: jsobjref/PlacedItem.md
- PlacedItems: jsobjref/PlacedItems.md
- PluginItem: jsobjref/PluginItem.md
- PluginItems: jsobjref/PluginItems.md
- PPDFile: jsobjref/PPDFile.md
- PPDFileInfo: jsobjref/PPDFileInfo.md
- Preferences: jsobjref/Preferences.md
- PrintColorManagementOptions: jsobjref/PrintColorManagementOptions.md
- PrintColorSeparationOptions: jsobjref/PrintColorSeparationOptions.md
- PrintCoordinateOptions: jsobjref/PrintCoordinateOptions.md
- Printer: jsobjref/Printer.md
- PrinterInfo: jsobjref/PrinterInfo.md
- PrintFlattenerOptions: jsobjref/PrintFlattenerOptions.md
- PrintFontOptions: jsobjref/PrintFontOptions.md
- PrintJobOptions: jsobjref/PrintJobOptions.md
- PrintOptions: jsobjref/PrintOptions.md
- PrintPageMarksOptions: jsobjref/PrintPageMarksOptions.md
- PrintPaperOptions: jsobjref/PrintPaperOptions.md
- PrintPostScriptOptions: jsobjref/PrintPostScriptOptions.md
- RasterEffectOptions: jsobjref/RasterEffectOptions.md
- RasterItem: jsobjref/RasterItem.md
- RasterItems: jsobjref/RasterItems.md
- RasterizeOptions: jsobjref/RasterizeOptions.md
- RGBColor: jsobjref/RGBColor.md
- Screen: jsobjref/Screen.md
- ScreenInfo: jsobjref/ScreenInfo.md
- ScreenSpotFunction: jsobjref/ScreenSpotFunction.md
- Spot: jsobjref/Spot.md
- SpotColor: jsobjref/SpotColor.md
- Spots: jsobjref/Spots.md
- Story: jsobjref/Story.md
- Stories: jsobjref/Stories.md
- Swatch: jsobjref/Swatch.md
- Swatches: jsobjref/Swatches.md
- SwatchGroup: jsobjref/SwatchGroup.md
- SwatchGroups: jsobjref/SwatchGroups.md
- SymbolItem: jsobjref/SymbolItem.md
- SymbolItems: jsobjref/SymbolItems.md
- Symbol: jsobjref/Symbol.md
- Symbols: jsobjref/Symbols.md
- TabStopInfo: jsobjref/TabStopInfo.md
- Tag: jsobjref/Tag.md
- Tags: jsobjref/Tags.md
- TextFont: jsobjref/TextFont.md
- TextFonts: jsobjref/TextFonts.md
- TextFrameItem: jsobjref/TextFrameItem.md
- TextFrameItems: jsobjref/TextFrameItems.md
- TextPath: jsobjref/TextPath.md
- TextRange: jsobjref/TextRange.md
- TextRanges: jsobjref/TextRanges.md
- TracingObject: jsobjref/TracingObject.md
- TracingOptions: jsobjref/TracingOptions.md
- Variable: jsobjref/Variable.md
- Variables: jsobjref/Variables.md
- View: jsobjref/View.md
- Views: jsobjref/Views.md
- Words: jsobjref/Words.md
#### Additional config below - modify sparingly!
extra:
# Custom guide-specific overrides
#
# Valid keys are:
# custom_dir: str
# hooks:
# - path/to/hook.py
# not_in_nav:
# - gitignore_style/path/to/exclude
# theme_features:
# - theme.feature
overrides: {}
# CSS for this guide
extra_css:
- _static/extra.css
# JS for this guide
extra_javascript:
- _static/extra.js
markdown_extensions: {}
plugins: {}