-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathExtendScript.sublime-completions
5496 lines (5488 loc) · 330 KB
/
ExtendScript.sublime-completions
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"scope": "source.jsx",
"completions":
[
{"trigger": "update", "contents":"update"},
{"trigger": "remove", "contents":"remove"},
{"trigger": "createPackage", "contents":"createPackage"},
{"trigger": "cancelPackage", "contents":"cancelPackage"},
{"trigger": "insertLabel", "contents":"insertLabel"},
{"trigger": "extractLabel", "contents":"extractLabel"},
{"trigger": "toSource", "contents":"toSource"},
{"trigger": "getElements", "contents":"getElements"},
{"trigger": "toSpecifier", "contents":"toSpecifier"},
{"trigger": "addEventListener", "contents":"addEventListener"},
{"trigger": "removeEventListener", "contents":"removeEventListener"},
{"trigger": "add", "contents":"add"},
{"trigger": "count", "contents":"count"},
{"trigger": "item", "contents":"item"},
{"trigger": "itemByName", "contents":"itemByName"},
{"trigger": "itemByID", "contents":"itemByID"},
{"trigger": "itemByRange", "contents":"itemByRange"},
{"trigger": "firstItem", "contents":"firstItem"},
{"trigger": "lastItem", "contents":"lastItem"},
{"trigger": "middleItem", "contents":"middleItem"},
{"trigger": "previousItem", "contents":"previousItem"},
{"trigger": "nextItem", "contents":"nextItem"},
{"trigger": "anyItem", "contents":"anyItem"},
{"trigger": "everyItem", "contents":"everyItem"},
{"trigger": "move", "contents":"move"},
{"trigger": "stopPropagation", "contents":"stopPropagation"},
{"trigger": "preventDefault", "contents":"preventDefault"},
{"trigger": "abortPlaceGun", "contents":"abortPlaceGun"},
{"trigger": "rotate", "contents":"rotate"},
{"trigger": "loadPlaceGun", "contents":"loadPlaceGun"},
{"trigger": "get", "contents":"get"},
{"trigger": "getValue", "contents":"getValue"},
{"trigger": "set", "contents":"set"},
{"trigger": "setValue", "contents":"setValue"},
{"trigger": "isDefined", "contents":"isDefined"},
{"trigger": "clear", "contents":"clear"},
{"trigger": "save", "contents":"save"},
{"trigger": "restore", "contents":"restore"},
{"trigger": "deleteUnusedTags", "contents":"deleteUnusedTags"},
{"trigger": "loadXMLTags", "contents":"loadXMLTags"},
{"trigger": "saveXMLTags", "contents":"saveXMLTags"},
{"trigger": "mountProject", "contents":"mountProject"},
{"trigger": "importStyles", "contents":"importStyles"},
{"trigger": "exportStrokeStyles", "contents":"exportStrokeStyles"},
{"trigger": "findText", "contents":"findText"},
{"trigger": "changeText", "contents":"changeText"},
{"trigger": "findGrep", "contents":"findGrep"},
{"trigger": "changeGrep", "contents":"changeGrep"},
{"trigger": "findGlyph", "contents":"findGlyph"},
{"trigger": "changeGlyph", "contents":"changeGlyph"},
{"trigger": "findObject", "contents":"findObject"},
{"trigger": "changeObject", "contents":"changeObject"},
{"trigger": "saveFindChangeQuery", "contents":"saveFindChangeQuery"},
{"trigger": "loadFindChangeQuery", "contents":"loadFindChangeQuery"},
{"trigger": "deleteFindChangeQuery", "contents":"deleteFindChangeQuery"},
{"trigger": "findTransliterate", "contents":"findTransliterate"},
{"trigger": "changeTransliterate", "contents":"changeTransliterate"},
{"trigger": "print", "contents":"print"},
{"trigger": "exportPresets", "contents":"exportPresets"},
{"trigger": "importFile", "contents":"importFile"},
{"trigger": "place", "contents":"place"},
{"trigger": "clearFrameFittingOptions", "contents":"clearFrameFittingOptions"},
{"trigger": "updateFonts", "contents":"updateFonts"},
{"trigger": "loadMotionPreset", "contents":"loadMotionPreset"},
{"trigger": "cut", "contents":"cut"},
{"trigger": "copy", "contents":"copy"},
{"trigger": "paste", "contents":"paste"},
{"trigger": "pasteInto", "contents":"pasteInto"},
{"trigger": "pasteInPlace", "contents":"pasteInPlace"},
{"trigger": "pasteWithoutFormatting", "contents":"pasteWithoutFormatting"},
{"trigger": "loadSwatches", "contents":"loadSwatches"},
{"trigger": "saveSwatches", "contents":"saveSwatches"},
{"trigger": "importAdobeSwatchbookSpotColor", "contents":"importAdobeSwatchbookSpotColor"},
{"trigger": "importAdobeSwatchbookProcessColor", "contents":"importAdobeSwatchbookProcessColor"},
{"trigger": "loadConditions", "contents":"loadConditions"},
{"trigger": "select", "contents":"select"},
{"trigger": "applyShortcutSet", "contents":"applyShortcutSet"},
{"trigger": "applyWorkspace", "contents":"applyWorkspace"},
{"trigger": "applyMenuCustomization", "contents":"applyMenuCustomization"},
{"trigger": "togglePanelSystemVisibility", "contents":"togglePanelSystemVisibility"},
{"trigger": "open", "contents":"open"},
{"trigger": "quit", "contents":"quit"},
{"trigger": "doScript", "contents":"doScript"},
{"trigger": "activate", "contents":"activate"},
{"trigger": "cascadeWindows", "contents":"cascadeWindows"},
{"trigger": "findKeyStrings", "contents":"findKeyStrings"},
{"trigger": "translateKeyString", "contents":"translateKeyString"},
{"trigger": "undo", "contents":"undo"},
{"trigger": "redo", "contents":"redo"},
{"trigger": "tileWindows", "contents":"tileWindows"},
{"trigger": "generateIDMLSchema", "contents":"generateIDMLSchema"},
{"trigger": "cancelAllTasks", "contents":"cancelAllTasks"},
{"trigger": "waitForAllTasks", "contents":"waitForAllTasks"},
{"trigger": "setApplicationPreferences", "contents":"setApplicationPreferences"},
{"trigger": "performanceMetric", "contents":"performanceMetric"},
{"trigger": "dumpFromMemoryMark", "contents":"dumpFromMemoryMark"},
{"trigger": "dumpBetweenMemoryMarks", "contents":"dumpBetweenMemoryMarks"},
{"trigger": "memoryStatistics", "contents":"memoryStatistics"},
{"trigger": "performanceMetricShortName", "contents":"performanceMetricShortName"},
{"trigger": "performanceMetricLongName", "contents":"performanceMetricLongName"},
{"trigger": "unpackageUCF", "contents":"unpackageUCF"},
{"trigger": "packageUCF", "contents":"packageUCF"},
{"trigger": "loadPreflightProfile", "contents":"loadPreflightProfile"},
{"trigger": "exportArticleFolio", "contents":"exportArticleFolio"},
{"trigger": "getDigpubVersion", "contents":"getDigpubVersion"},
{"trigger": "getSupportedViewerVersions", "contents":"getSupportedViewerVersions"},
{"trigger": "exportMiniFolio", "contents":"exportMiniFolio"},
{"trigger": "exportFolioToPackage", "contents":"exportFolioToPackage"},
{"trigger": "exportFolioToDirectory", "contents":"exportFolioToDirectory"},
{"trigger": "exportFolioToDirectoryPackage", "contents":"exportFolioToDirectoryPackage"},
{"trigger": "getAllOverlays", "contents":"getAllOverlays"},
{"trigger": "createCustomMiniFolio", "contents":"createCustomMiniFolio"},
{"trigger": "cancelTask", "contents":"cancelTask"},
{"trigger": "waitForTask", "contents":"waitForTask"},
{"trigger": "queryProperty", "contents":"queryProperty"},
{"trigger": "mapStylesToXMLTags", "contents":"mapStylesToXMLTags"},
{"trigger": "mapXMLTagsToStyles", "contents":"mapXMLTagsToStyles"},
{"trigger": "importDtd", "contents":"importDtd"},
{"trigger": "importXML", "contents":"importXML"},
{"trigger": "changeComposer", "contents":"changeComposer"},
{"trigger": "revertToProject", "contents":"revertToProject"},
{"trigger": "synchronizeWithVersionCue", "contents":"synchronizeWithVersionCue"},
{"trigger": "checkIn", "contents":"checkIn"},
{"trigger": "createTOC", "contents":"createTOC"},
{"trigger": "recompose", "contents":"recompose"},
{"trigger": "placeAndLink", "contents":"placeAndLink"},
{"trigger": "printBooklet", "contents":"printBooklet"},
{"trigger": "loadMasters", "contents":"loadMasters"},
{"trigger": "createAlternateLayout", "contents":"createAlternateLayout"},
{"trigger": "deleteAlternateLayout", "contents":"deleteAlternateLayout"},
{"trigger": "importFormats", "contents":"importFormats"},
{"trigger": "updateCrossReferences", "contents":"updateCrossReferences"},
{"trigger": "align", "contents":"align"},
{"trigger": "distribute", "contents":"distribute"},
{"trigger": "resetAllMultiStateObjects", "contents":"resetAllMultiStateObjects"},
{"trigger": "resetAllButtons", "contents":"resetAllButtons"},
{"trigger": "createPlainTextQRCode", "contents":"createPlainTextQRCode"},
{"trigger": "createHyperlinkQRCode", "contents":"createHyperlinkQRCode"},
{"trigger": "createTextMsgQRCode", "contents":"createTextMsgQRCode"},
{"trigger": "createEmailQRCode", "contents":"createEmailQRCode"},
{"trigger": "createVCardQRCode", "contents":"createVCardQRCode"},
{"trigger": "close", "contents":"close"},
{"trigger": "exportFile", "contents":"exportFile"},
{"trigger": "asynchronousExportFile", "contents":"asynchronousExportFile"},
{"trigger": "revert", "contents":"revert"},
{"trigger": "saveACopy", "contents":"saveACopy"},
{"trigger": "packageForPrint", "contents":"packageForPrint"},
{"trigger": "embed", "contents":"embed"},
{"trigger": "getAlternateLayoutsForFolio", "contents":"getAlternateLayoutsForFolio"},
{"trigger": "maximize", "contents":"maximize"},
{"trigger": "minimize", "contents":"minimize"},
{"trigger": "bringToFront", "contents":"bringToFront"},
{"trigger": "zoom", "contents":"zoom"},
{"trigger": "load", "contents":"load"},
{"trigger": "synchronize", "contents":"synchronize"},
{"trigger": "repaginate", "contents":"repaginate"},
{"trigger": "updateChapterAndParagraphNumbers", "contents":"updateChapterAndParagraphNumbers"},
{"trigger": "updateAllNumbers", "contents":"updateAllNumbers"},
{"trigger": "updateAllCrossReferences", "contents":"updateAllCrossReferences"},
{"trigger": "preflight", "contents":"preflight"},
{"trigger": "replace", "contents":"replace"},
{"trigger": "duplicate", "contents":"duplicate"},
{"trigger": "merge", "contents":"merge"},
{"trigger": "ungroup", "contents":"ungroup"},
{"trigger": "showSource", "contents":"showSource"},
{"trigger": "showDestination", "contents":"showDestination"},
{"trigger": "showBookmark", "contents":"showBookmark"},
{"trigger": "importTopics", "contents":"importTopics"},
{"trigger": "removeUnusedTopics", "contents":"removeUnusedTopics"},
{"trigger": "capitalize", "contents":"capitalize"},
{"trigger": "generate", "contents":"generate"},
{"trigger": "placeXML", "contents":"placeXML"},
{"trigger": "autoTag", "contents":"autoTag"},
{"trigger": "markup", "contents":"markup"},
{"trigger": "override", "contents":"override"},
{"trigger": "removeOverride", "contents":"removeOverride"},
{"trigger": "detach", "contents":"detach"},
{"trigger": "fit", "contents":"fit"},
{"trigger": "flipItem", "contents":"flipItem"},
{"trigger": "applyObjectStyle", "contents":"applyObjectStyle"},
{"trigger": "clearObjectStyleOverrides", "contents":"clearObjectStyleOverrides"},
{"trigger": "convertShape", "contents":"convertShape"},
{"trigger": "clearTransformations", "contents":"clearTransformations"},
{"trigger": "transform", "contents":"transform"},
{"trigger": "transformValuesOf", "contents":"transformValuesOf"},
{"trigger": "resolve", "contents":"resolve"},
{"trigger": "redefineScaling", "contents":"redefineScaling"},
{"trigger": "resize", "contents":"resize"},
{"trigger": "reframe", "contents":"reframe"},
{"trigger": "transformAgain", "contents":"transformAgain"},
{"trigger": "transformSequenceAgain", "contents":"transformSequenceAgain"},
{"trigger": "transformAgainIndividually", "contents":"transformAgainIndividually"},
{"trigger": "transformSequenceAgainIndividually", "contents":"transformSequenceAgainIndividually"},
{"trigger": "contentPlace", "contents":"contentPlace"},
{"trigger": "store", "contents":"store"},
{"trigger": "sendToBack", "contents":"sendToBack"},
{"trigger": "bringForward", "contents":"bringForward"},
{"trigger": "sendBackward", "contents":"sendBackward"},
{"trigger": "convertToObject", "contents":"convertToObject"},
{"trigger": "releaseAsObject", "contents":"releaseAsObject"},
{"trigger": "addItemsToState", "contents":"addItemsToState"},
{"trigger": "releaseAsObjects", "contents":"releaseAsObjects"},
{"trigger": "addItemsAsState", "contents":"addItemsAsState"},
{"trigger": "verifyURL", "contents":"verifyURL"},
{"trigger": "unlink", "contents":"unlink"},
{"trigger": "setContent", "contents":"setContent"},
{"trigger": "createGuides", "contents":"createGuides"},
{"trigger": "snapshotCurrentLayout", "contents":"snapshotCurrentLayout"},
{"trigger": "deleteLayoutSnapshot", "contents":"deleteLayoutSnapshot"},
{"trigger": "deleteAllLayoutSnapshots", "contents":"deleteAllLayoutSnapshots"},
{"trigger": "makeCompoundPath", "contents":"makeCompoundPath"},
{"trigger": "releaseCompoundPath", "contents":"releaseCompoundPath"},
{"trigger": "intersectPath", "contents":"intersectPath"},
{"trigger": "addPath", "contents":"addPath"},
{"trigger": "subtractPath", "contents":"subtractPath"},
{"trigger": "minusBack", "contents":"minusBack"},
{"trigger": "excludeOverlapPath", "contents":"excludeOverlapPath"},
{"trigger": "checkOut", "contents":"checkOut"},
{"trigger": "exportForWeb", "contents":"exportForWeb"},
{"trigger": "scaleMatrix", "contents":"scaleMatrix"},
{"trigger": "shearMatrix", "contents":"shearMatrix"},
{"trigger": "rotateMatrix", "contents":"rotateMatrix"},
{"trigger": "translateMatrix", "contents":"translateMatrix"},
{"trigger": "catenateMatrix", "contents":"catenateMatrix"},
{"trigger": "invertMatrix", "contents":"invertMatrix"},
{"trigger": "changeCoordinates", "contents":"changeCoordinates"},
{"trigger": "reverse", "contents":"reverse"},
{"trigger": "join", "contents":"join"},
{"trigger": "addDocumentContent", "contents":"addDocumentContent"},
{"trigger": "placeAsset", "contents":"placeAsset"},
{"trigger": "relink", "contents":"relink"},
{"trigger": "unembed", "contents":"unembed"},
{"trigger": "editOriginal", "contents":"editOriginal"},
{"trigger": "show", "contents":"show"},
{"trigger": "revealInSystem", "contents":"revealInSystem"},
{"trigger": "revealInBridge", "contents":"revealInBridge"},
{"trigger": "copyLink", "contents":"copyLink"},
{"trigger": "goToSource", "contents":"goToSource"},
{"trigger": "getProperty", "contents":"getProperty"},
{"trigger": "countContainer", "contents":"countContainer"},
{"trigger": "convertToFrame", "contents":"convertToFrame"},
{"trigger": "altText", "contents":"altText"},
{"trigger": "actualText", "contents":"actualText"},
{"trigger": "insertAnchoredObject", "contents":"insertAnchoredObject"},
{"trigger": "releaseAnchoredObject", "contents":"releaseAnchoredObject"},
{"trigger": "append", "contents":"append"},
{"trigger": "setProperty", "contents":"setProperty"},
{"trigger": "createContainerItem", "contents":"createContainerItem"},
{"trigger": "alertMissingImages", "contents":"alertMissingImages"},
{"trigger": "selectDataSource", "contents":"selectDataSource"},
{"trigger": "updateDataSource", "contents":"updateDataSource"},
{"trigger": "removeDataSource", "contents":"removeDataSource"},
{"trigger": "mergeRecords", "contents":"mergeRecords"},
{"trigger": "addApplication", "contents":"addApplication"},
{"trigger": "removeApplication", "contents":"removeApplication"},
{"trigger": "getApplicationAtIndex", "contents":"getApplicationAtIndex"},
{"trigger": "getApplicationCount", "contents":"getApplicationCount"},
{"trigger": "waitForProcess", "contents":"waitForProcess"},
{"trigger": "saveReport", "contents":"saveReport"},
{"trigger": "unmerge", "contents":"unmerge"},
{"trigger": "split", "contents":"split"},
{"trigger": "clearCellStyleOverrides", "contents":"clearCellStyleOverrides"},
{"trigger": "convertBulletsAndNumberingToText", "contents":"convertBulletsAndNumberingToText"},
{"trigger": "createOutlines", "contents":"createOutlines"},
{"trigger": "convertToText", "contents":"convertToText"},
{"trigger": "clearTableStyleOverrides", "contents":"clearTableStyleOverrides"},
{"trigger": "redistribute", "contents":"redistribute"},
{"trigger": "convertToTable", "contents":"convertToTable"},
{"trigger": "changecase", "contents":"changecase"},
{"trigger": "clearOverrides", "contents":"clearOverrides"},
{"trigger": "showText", "contents":"showText"},
{"trigger": "applyParagraphStyle", "contents":"applyParagraphStyle"},
{"trigger": "applyCharacterStyle", "contents":"applyCharacterStyle"},
{"trigger": "convertToNote", "contents":"convertToNote"},
{"trigger": "findHyperlinks", "contents":"findHyperlinks"},
{"trigger": "applyConditions", "contents":"applyConditions"},
{"trigger": "storyEdit", "contents":"storyEdit"},
{"trigger": "addDictionaryPath", "contents":"addDictionaryPath"},
{"trigger": "removeDictionaryPath", "contents":"removeDictionaryPath"},
{"trigger": "checkOpenTypeFeature", "contents":"checkOpenTypeFeature"},
{"trigger": "createSubsetFont", "contents":"createSubsetFont"},
{"trigger": "addException", "contents":"addException"},
{"trigger": "removeException", "contents":"removeException"},
{"trigger": "addWord", "contents":"addWord"},
{"trigger": "removeWord", "contents":"removeWord"},
{"trigger": "accept", "contents":"accept"},
{"trigger": "reject", "contents":"reject"},
{"trigger": "redefine", "contents":"redefine"},
{"trigger": "showAll", "contents":"showAll"},
{"trigger": "invoke", "contents":"invoke"},
{"trigger": "destroy", "contents":"destroy"},
{"trigger": "untag", "contents":"untag"},
{"trigger": "validate", "contents":"validate"},
{"trigger": "convertToAttribute", "contents":"convertToAttribute"},
{"trigger": "convertElementToTable", "contents":"convertElementToTable"},
{"trigger": "placeIntoInlineFrame", "contents":"placeIntoInlineFrame"},
{"trigger": "placeIntoInlineCopy", "contents":"placeIntoInlineCopy"},
{"trigger": "insertTextAsContent", "contents":"insertTextAsContent"},
{"trigger": "applyTableStyle", "contents":"applyTableStyle"},
{"trigger": "applyCellStyle", "contents":"applyCellStyle"},
{"trigger": "placeIntoFrame", "contents":"placeIntoFrame"},
{"trigger": "placeIntoCopy", "contents":"placeIntoCopy"},
{"trigger": "evaluateXPathExpression", "contents":"evaluateXPathExpression"},
{"trigger": "convertToElement", "contents":"convertToElement"},
{"trigger": "startProcessingRuleSet", "contents":"startProcessingRuleSet"},
{"trigger": "findNextMatch", "contents":"findNextMatch"},
{"trigger": "startProcessingSubtree", "contents":"startProcessingSubtree"},
{"trigger": "skipChildren", "contents":"skipChildren"},
{"trigger": "endProcessingRuleSet", "contents":"endProcessingRuleSet"},
{"trigger": "halt", "contents":"halt"},
{"trigger": "Assignment", "contents":"Assignment"},
{"trigger": "assignments", "contents":"assignments"},
{"trigger": "AssignedStory", "contents":"AssignedStory"},
{"trigger": "assignedStories", "contents":"assignedStories"},
{"trigger": "PrintEvent", "contents":"PrintEvent"},
{"trigger": "placeGun", "contents":"placeGun"},
{"trigger": "EventListener", "contents":"EventListener"},
{"trigger": "eventListeners", "contents":"eventListeners"},
{"trigger": "Event", "contents":"Event"},
{"trigger": "events", "contents":"events"},
{"trigger": "IdleEvent", "contents":"IdleEvent"},
{"trigger": "MutationEvent", "contents":"MutationEvent"},
{"trigger": "IdleTask", "contents":"IdleTask"},
{"trigger": "idleTasks", "contents":"idleTasks"},
{"trigger": "ScriptArg", "contents":"ScriptArg"},
{"trigger": "Application", "contents":"Application"},
{"trigger": "BackgroundTask", "contents":"BackgroundTask"},
{"trigger": "backgroundTasks", "contents":"backgroundTasks"},
{"trigger": "Document", "contents":"Document"},
{"trigger": "documents", "contents":"documents"},
{"trigger": "Window", "contents":"Window"},
{"trigger": "windows", "contents":"windows"},
{"trigger": "LayoutWindow", "contents":"LayoutWindow"},
{"trigger": "layoutWindows", "contents":"layoutWindows"},
{"trigger": "StoryWindow", "contents":"StoryWindow"},
{"trigger": "storyWindows", "contents":"storyWindows"},
{"trigger": "DocumentEvent", "contents":"DocumentEvent"},
{"trigger": "ImportExportEvent", "contents":"ImportExportEvent"},
{"trigger": "ContentPlacerObject", "contents":"ContentPlacerObject"},
{"trigger": "Book", "contents":"Book"},
{"trigger": "books", "contents":"books"},
{"trigger": "BookContent", "contents":"BookContent"},
{"trigger": "bookContents", "contents":"bookContents"},
{"trigger": "Ink", "contents":"Ink"},
{"trigger": "inks", "contents":"inks"},
{"trigger": "TrapPreset", "contents":"TrapPreset"},
{"trigger": "trapPresets", "contents":"trapPresets"},
{"trigger": "MixedInk", "contents":"MixedInk"},
{"trigger": "mixedInks", "contents":"mixedInks"},
{"trigger": "MixedInkGroup", "contents":"MixedInkGroup"},
{"trigger": "mixedInkGroups", "contents":"mixedInkGroups"},
{"trigger": "Gradient", "contents":"Gradient"},
{"trigger": "gradients", "contents":"gradients"},
{"trigger": "GradientStop", "contents":"GradientStop"},
{"trigger": "gradientStops", "contents":"gradientStops"},
{"trigger": "Swatch", "contents":"Swatch"},
{"trigger": "swatches", "contents":"swatches"},
{"trigger": "Color", "contents":"Color"},
{"trigger": "colors", "contents":"colors"},
{"trigger": "Tint", "contents":"Tint"},
{"trigger": "tints", "contents":"tints"},
{"trigger": "ColorGroup", "contents":"ColorGroup"},
{"trigger": "colorGroups", "contents":"colorGroups"},
{"trigger": "ColorGroupSwatch", "contents":"ColorGroupSwatch"},
{"trigger": "colorGroupSwatches", "contents":"colorGroupSwatches"},
{"trigger": "OpacityGradientStop", "contents":"OpacityGradientStop"},
{"trigger": "opacityGradientStops", "contents":"opacityGradientStops"},
{"trigger": "DataMergeTextPlaceholder", "contents":"DataMergeTextPlaceholder"},
{"trigger": "dataMergeTextPlaceholders", "contents":"dataMergeTextPlaceholders"},
{"trigger": "DataMergeImagePlaceholder", "contents":"DataMergeImagePlaceholder"},
{"trigger": "dataMergeImagePlaceholders", "contents":"dataMergeImagePlaceholders"},
{"trigger": "DataMergeField", "contents":"DataMergeField"},
{"trigger": "dataMergeFields", "contents":"dataMergeFields"},
{"trigger": "DataMergeQrcodePlaceholder", "contents":"DataMergeQrcodePlaceholder"},
{"trigger": "dataMergeQrcodePlaceholders", "contents":"dataMergeQrcodePlaceholders"},
{"trigger": "StoryTypes", "contents":"StoryTypes"},
{"trigger": "storyDirectionOptions", "contents":"storyDirectionOptions"},
{"trigger": "ImportFormat", "contents":"ImportFormat"},
{"trigger": "nestedStyleDelimiters", "contents":"nestedStyleDelimiters"},
{"trigger": "RuleWidth", "contents":"RuleWidth"},
{"trigger": "Justification", "contents":"Justification"},
{"trigger": "SingleWordJustification", "contents":"SingleWordJustification"},
{"trigger": "StartParagraph", "contents":"StartParagraph"},
{"trigger": "HorizontalOrVertical", "contents":"HorizontalOrVertical"},
{"trigger": "TabStopAlignment", "contents":"TabStopAlignment"},
{"trigger": "FirstBaseline", "contents":"FirstBaseline"},
{"trigger": "VerticalJustification", "contents":"VerticalJustification"},
{"trigger": "Leading", "contents":"Leading"},
{"trigger": "OTFFigureStyle", "contents":"OTFFigureStyle"},
{"trigger": "Capitalization", "contents":"Capitalization"},
{"trigger": "Position", "contents":"Position"},
{"trigger": "textFrameContents", "contents":"textFrameContents"},
{"trigger": "SpecialCharacters", "contents":"SpecialCharacters"},
{"trigger": "ChangecaseMode", "contents":"ChangecaseMode"},
{"trigger": "bindingOptions", "contents":"bindingOptions"},
{"trigger": "PageOrientation", "contents":"PageOrientation"},
{"trigger": "RulerOrigin", "contents":"RulerOrigin"},
{"trigger": "measurementUnits", "contents":"measurementUnits"},
{"trigger": "PageBindingOptions", "contents":"PageBindingOptions"},
{"trigger": "BaselineGridRelativeOption", "contents":"BaselineGridRelativeOption"},
{"trigger": "pageSideOptions", "contents":"pageSideOptions"},
{"trigger": "WhenScalingOptions", "contents":"WhenScalingOptions"},
{"trigger": "pageColorOptions", "contents":"pageColorOptions"},
{"trigger": "DocumentIntentOptions", "contents":"DocumentIntentOptions"},
{"trigger": "layoutRuleOptions", "contents":"layoutRuleOptions"},
{"trigger": "SnapshotBlendingModes", "contents":"SnapshotBlendingModes"},
{"trigger": "EPSColorSpace", "contents":"EPSColorSpace"},
{"trigger": "previewTypes", "contents":"previewTypes"},
{"trigger": "FontEmbedding", "contents":"FontEmbedding"},
{"trigger": "scaleModes", "contents":"scaleModes"},
{"trigger": "PrintLayerOptions", "contents":"PrintLayerOptions"},
{"trigger": "uITools", "contents":"uITools"},
{"trigger": "GlobalClashResolutionStrategyForMasterPage", "contents":"GlobalClashResolutionStrategyForMasterPage"},
{"trigger": "ClippingPathType", "contents":"ClippingPathType"},
{"trigger": "updateLinkOptions", "contents":"updateLinkOptions"},
{"trigger": "IconSizes", "contents":"IconSizes"},
{"trigger": "PanelLayoutResize", "contents":"PanelLayoutResize"},
{"trigger": "pageViewOptions", "contents":"pageViewOptions"},
{"trigger": "PDFColorSpace", "contents":"PDFColorSpace"},
{"trigger": "AcrobatCompatibility", "contents":"AcrobatCompatibility"},
{"trigger": "iCCProfiles", "contents":"iCCProfiles"},
{"trigger": "BitmapCompression", "contents":"BitmapCompression"},
{"trigger": "CompressionQuality", "contents":"CompressionQuality"},
{"trigger": "MonoBitmapCompression", "contents":"MonoBitmapCompression"},
{"trigger": "PDFMarkWeight", "contents":"PDFMarkWeight"},
{"trigger": "Sampling", "contents":"Sampling"},
{"trigger": "ExportPresetFormat", "contents":"ExportPresetFormat"},
{"trigger": "PDFCrop", "contents":"PDFCrop"},
{"trigger": "PDFCompressionType", "contents":"PDFCompressionType"},
{"trigger": "PDFProfileSelector", "contents":"PDFProfileSelector"},
{"trigger": "pDFXStandards", "contents":"pDFXStandards"},
{"trigger": "ExportLayerOptions", "contents":"ExportLayerOptions"},
{"trigger": "pdfMagnificationOptions", "contents":"pdfMagnificationOptions"},
{"trigger": "PageLayoutOptions", "contents":"PageLayoutOptions"},
{"trigger": "rasterResolutionOptions", "contents":"rasterResolutionOptions"},
{"trigger": "PDFRasterCompressionOptions", "contents":"PDFRasterCompressionOptions"},
{"trigger": "pDFJPEGQualityOptions", "contents":"pDFJPEGQualityOptions"},
{"trigger": "InteractiveElementsOptions", "contents":"InteractiveElementsOptions"},
{"trigger": "interactivePDFInteractiveElementsOptions", "contents":"interactivePDFInteractiveElementsOptions"},
{"trigger": "PageTransitionOverrideOptions", "contents":"PageTransitionOverrideOptions"},
{"trigger": "taggedPDFStructureOrderOptions", "contents":"taggedPDFStructureOrderOptions"},
{"trigger": "ConvertShapeOptions", "contents":"ConvertShapeOptions"},
{"trigger": "coordinateSpaces", "contents":"coordinateSpaces"},
{"trigger": "MatrixContent", "contents":"MatrixContent"},
{"trigger": "boundingBoxLimits", "contents":"boundingBoxLimits"},
{"trigger": "ResizeConstraints", "contents":"ResizeConstraints"},
{"trigger": "resizeMethods", "contents":"resizeMethods"},
{"trigger": "EmptyFrameFittingOptions", "contents":"EmptyFrameFittingOptions"},
{"trigger": "cornerOptions", "contents":"cornerOptions"},
{"trigger": "DimensionsConstraints", "contents":"DimensionsConstraints"},
{"trigger": "ContentType", "contents":"ContentType"},
{"trigger": "EndCap", "contents":"EndCap"},
{"trigger": "EndJoin", "contents":"EndJoin"},
{"trigger": "StrokeCornerAdjustment", "contents":"StrokeCornerAdjustment"},
{"trigger": "ArrowHead", "contents":"ArrowHead"},
{"trigger": "displaySettingOptions", "contents":"displaySettingOptions"},
{"trigger": "FitOptions", "contents":"FitOptions"},
{"trigger": "StrokeAlignment", "contents":"StrokeAlignment"},
{"trigger": "guideTypeOptions", "contents":"guideTypeOptions"},
{"trigger": "ContourOptionsTypes", "contents":"ContourOptionsTypes"},
{"trigger": "textWrapSideOptions", "contents":"textWrapSideOptions"},
{"trigger": "TextWrapModes", "contents":"TextWrapModes"},
{"trigger": "fontStatus", "contents":"fontStatus"},
{"trigger": "FontTypes", "contents":"FontTypes"},
{"trigger": "OpenTypeFeature", "contents":"OpenTypeFeature"},
{"trigger": "CharacterAlignment", "contents":"CharacterAlignment"},
{"trigger": "alternateGlyphForms", "contents":"alternateGlyphForms"},
{"trigger": "AdornmentOverprint", "contents":"AdornmentOverprint"},
{"trigger": "KentenCharacter", "contents":"KentenCharacter"},
{"trigger": "RubyKentenPosition", "contents":"RubyKentenPosition"},
{"trigger": "KentenCharacterSet", "contents":"KentenCharacterSet"},
{"trigger": "rubyTypes", "contents":"rubyTypes"},
{"trigger": "RubyAlignments", "contents":"RubyAlignments"},
{"trigger": "RubyParentSpacing", "contents":"RubyParentSpacing"},
{"trigger": "RubyOverhang", "contents":"RubyOverhang"},
{"trigger": "WarichuAlignment", "contents":"WarichuAlignment"},
{"trigger": "KinsokuType", "contents":"KinsokuType"},
{"trigger": "kinsokuHangTypes", "contents":"kinsokuHangTypes"},
{"trigger": "LeadingModel", "contents":"LeadingModel"},
{"trigger": "KinsokuSet", "contents":"KinsokuSet"},
{"trigger": "mojikumiTableDefaults", "contents":"mojikumiTableDefaults"},
{"trigger": "GridAlignment", "contents":"GridAlignment"},
{"trigger": "KentenAlignment", "contents":"KentenAlignment"},
{"trigger": "ComposeUsing", "contents":"ComposeUsing"},
{"trigger": "PageNumberStyle", "contents":"PageNumberStyle"},
{"trigger": "GradientType", "contents":"GradientType"},
{"trigger": "joinOptions", "contents":"joinOptions"},
{"trigger": "PathType", "contents":"PathType"},
{"trigger": "PointType", "contents":"PointType"},
{"trigger": "CreateProxy", "contents":"CreateProxy"},
{"trigger": "importedPageCropOptions", "contents":"importedPageCropOptions"},
{"trigger": "StrokeFillProxyOptions", "contents":"StrokeFillProxyOptions"},
{"trigger": "strokeFillTargetOptions", "contents":"strokeFillTargetOptions"},
{"trigger": "RotationDirection", "contents":"RotationDirection"},
{"trigger": "locationOptions", "contents":"locationOptions"},
{"trigger": "UIColors", "contents":"UIColors"},
{"trigger": "NothingEnum", "contents":"NothingEnum"},
{"trigger": "AutoEnum", "contents":"AutoEnum"},
{"trigger": "eventPhases", "contents":"eventPhases"},
{"trigger": "ExportFormat", "contents":"ExportFormat"},
{"trigger": "PlacedVectorProfilePolicy", "contents":"PlacedVectorProfilePolicy"},
{"trigger": "ColorSettingsPolicy", "contents":"ColorSettingsPolicy"},
{"trigger": "DefaultRenderingIntent", "contents":"DefaultRenderingIntent"},
{"trigger": "ProofingType", "contents":"ProofingType"},
{"trigger": "changeConditionsModes", "contents":"changeConditionsModes"},
{"trigger": "SearchModes", "contents":"SearchModes"},
{"trigger": "objectTypes", "contents":"objectTypes"},
{"trigger": "FindChangeTransliterateCharacterTypes", "contents":"FindChangeTransliterateCharacterTypes"},
{"trigger": "libraryPanelViews", "contents":"libraryPanelViews"},
{"trigger": "SortAssets", "contents":"SortAssets"},
{"trigger": "linkStatus", "contents":"linkStatus"},
{"trigger": "AssetType", "contents":"AssetType"},
{"trigger": "changeTypes", "contents":"changeTypes"},
{"trigger": "TextPathEffects", "contents":"TextPathEffects"},
{"trigger": "textTypeAlignments", "contents":"textTypeAlignments"},
{"trigger": "PathTypeAlignments", "contents":"PathTypeAlignments"},
{"trigger": "flipValues", "contents":"flipValues"},
{"trigger": "XMLElementLocation", "contents":"XMLElementLocation"},
{"trigger": "XMLElementPosition", "contents":"XMLElementPosition"},
{"trigger": "XMLImportStyles", "contents":"XMLImportStyles"},
{"trigger": "XMLFileEncoding", "contents":"XMLFileEncoding"},
{"trigger": "ImageConversion", "contents":"ImageConversion"},
{"trigger": "GIFOptionsPalette", "contents":"GIFOptionsPalette"},
{"trigger": "JPEGOptionsQuality", "contents":"JPEGOptionsQuality"},
{"trigger": "JPEGOptionsFormat", "contents":"JPEGOptionsFormat"},
{"trigger": "XMLExportUntaggedTablesFormat", "contents":"XMLExportUntaggedTablesFormat"},
{"trigger": "XMLTransformFile", "contents":"XMLTransformFile"},
{"trigger": "AnchorPosition", "contents":"AnchorPosition"},
{"trigger": "HorizontalAlignment", "contents":"HorizontalAlignment"},
{"trigger": "VerticalAlignment", "contents":"VerticalAlignment"},
{"trigger": "AnchoredRelativeTo", "contents":"AnchoredRelativeTo"},
{"trigger": "BalanceLinesStyle", "contents":"BalanceLinesStyle"},
{"trigger": "VerticallyRelativeTo", "contents":"VerticallyRelativeTo"},
{"trigger": "positionalForms", "contents":"positionalForms"},
{"trigger": "TextStrokeAlign", "contents":"TextStrokeAlign"},
{"trigger": "OutlineJoin", "contents":"OutlineJoin"},
{"trigger": "BaselineFrameGridRelativeOption", "contents":"BaselineFrameGridRelativeOption"},
{"trigger": "FootnoteFirstBaseline", "contents":"FootnoteFirstBaseline"},
{"trigger": "FootnoteRestarting", "contents":"FootnoteRestarting"},
{"trigger": "FootnotePrefixSuffix", "contents":"FootnotePrefixSuffix"},
{"trigger": "FootnoteNumberingStyle", "contents":"FootnoteNumberingStyle"},
{"trigger": "FootnoteMarkerPositioning", "contents":"FootnoteMarkerPositioning"},
{"trigger": "OverrideType", "contents":"OverrideType"},
{"trigger": "GlobalClashResolutionStrategy", "contents":"GlobalClashResolutionStrategy"},
{"trigger": "StoryHorizontalOrVertical", "contents":"StoryHorizontalOrVertical"},
{"trigger": "addPageOptions", "contents":"addPageOptions"},
{"trigger": "VariableTypes", "contents":"VariableTypes"},
{"trigger": "variableScopes", "contents":"variableScopes"},
{"trigger": "VariableNumberingStyles", "contents":"VariableNumberingStyles"},
{"trigger": "searchStrategies", "contents":"searchStrategies"},
{"trigger": "ChangeCaseOptions", "contents":"ChangeCaseOptions"},
{"trigger": "AutoSizingTypeEnum", "contents":"AutoSizingTypeEnum"},
{"trigger": "AutoSizingReferenceEnum", "contents":"AutoSizingReferenceEnum"},
{"trigger": "spanColumnTypeOptions", "contents":"spanColumnTypeOptions"},
{"trigger": "SpanColumnCountOptions", "contents":"SpanColumnCountOptions"},
{"trigger": "LineAlignment", "contents":"LineAlignment"},
{"trigger": "gridViewSettings", "contents":"gridViewSettings"},
{"trigger": "CharacterCountLocation", "contents":"CharacterCountLocation"},
{"trigger": "inCopyUIColors", "contents":"inCopyUIColors"},
{"trigger": "CursorTypes", "contents":"CursorTypes"},
{"trigger": "AntiAliasType", "contents":"AntiAliasType"},
{"trigger": "LineSpacingType", "contents":"LineSpacingType"},
{"trigger": "RepaginateOption", "contents":"RepaginateOption"},
{"trigger": "bookContentStatus", "contents":"bookContentStatus"},
{"trigger": "SmartMatchOptions", "contents":"SmartMatchOptions"},
{"trigger": "rowTypes", "contents":"rowTypes"},
{"trigger": "HeaderFooterBreakTypes", "contents":"HeaderFooterBreakTypes"},
{"trigger": "alternatingFillsTypes", "contents":"alternatingFillsTypes"},
{"trigger": "StrokeOrderTypes", "contents":"StrokeOrderTypes"},
{"trigger": "displayOrderOptions", "contents":"displayOrderOptions"},
{"trigger": "FlattenerLevel", "contents":"FlattenerLevel"},
{"trigger": "BlendingSpace", "contents":"BlendingSpace"},
{"trigger": "BlendMode", "contents":"BlendMode"},
{"trigger": "ShadowMode", "contents":"ShadowMode"},
{"trigger": "FeatherMode", "contents":"FeatherMode"},
{"trigger": "FeatherCornerType", "contents":"FeatherCornerType"},
{"trigger": "SpreadFlattenerLevel", "contents":"SpreadFlattenerLevel"},
{"trigger": "GlowTechnique", "contents":"GlowTechnique"},
{"trigger": "InnerGlowSource", "contents":"InnerGlowSource"},
{"trigger": "BevelAndEmbossStyle", "contents":"BevelAndEmbossStyle"},
{"trigger": "BevelAndEmbossTechnique", "contents":"BevelAndEmbossTechnique"},
{"trigger": "BevelAndEmbossDirection", "contents":"BevelAndEmbossDirection"},
{"trigger": "followShapeModeOptions", "contents":"followShapeModeOptions"},
{"trigger": "PageNumberPosition", "contents":"PageNumberPosition"},
{"trigger": "numberedParagraphsOptions", "contents":"numberedParagraphsOptions"},
{"trigger": "TextImportCharacterSet", "contents":"TextImportCharacterSet"},
{"trigger": "ImportPlatform", "contents":"ImportPlatform"},
{"trigger": "convertPageBreaks", "contents":"convertPageBreaks"},
{"trigger": "TagTextExportCharacterSet", "contents":"TagTextExportCharacterSet"},
{"trigger": "TagTextForm", "contents":"TagTextForm"},
{"trigger": "StyleConflict", "contents":"StyleConflict"},
{"trigger": "TextExportCharacterSet", "contents":"TextExportCharacterSet"},
{"trigger": "convertTablesOptions", "contents":"convertTablesOptions"},
{"trigger": "TableFormattingOptions", "contents":"TableFormattingOptions"},
{"trigger": "alignmentStyleOptions", "contents":"alignmentStyleOptions"},
{"trigger": "ResolveStyleClash", "contents":"ResolveStyleClash"},
{"trigger": "ContainerType", "contents":"ContainerType"},
{"trigger": "copyrightStatus", "contents":"copyrightStatus"},
{"trigger": "IndexCapitalizationOptions", "contents":"IndexCapitalizationOptions"},
{"trigger": "IndexFormat", "contents":"IndexFormat"},
{"trigger": "CrossReferenceType", "contents":"CrossReferenceType"},
{"trigger": "PageReferenceType", "contents":"PageReferenceType"},
{"trigger": "headerTypes", "contents":"headerTypes"},
{"trigger": "TagTransparency", "contents":"TagTransparency"},
{"trigger": "TagVector", "contents":"TagVector"},
{"trigger": "TagRaster", "contents":"TagRaster"},
{"trigger": "HyperlinkAppearanceHighlight", "contents":"HyperlinkAppearanceHighlight"},
{"trigger": "HyperlinkAppearanceWidth", "contents":"HyperlinkAppearanceWidth"},
{"trigger": "HyperlinkAppearanceStyle", "contents":"HyperlinkAppearanceStyle"},
{"trigger": "HyperlinkDestinationPageSetting", "contents":"HyperlinkDestinationPageSetting"},
{"trigger": "buildingBlockTypes", "contents":"buildingBlockTypes"},
{"trigger": "RangeSortOrder", "contents":"RangeSortOrder"},
{"trigger": "PreflightRuleFlag", "contents":"PreflightRuleFlag"},
{"trigger": "RuleDataType", "contents":"RuleDataType"},
{"trigger": "preflightScopeOptions", "contents":"preflightScopeOptions"},
{"trigger": "PreflightLayerOptions", "contents":"PreflightLayerOptions"},
{"trigger": "preflightProfileOptions", "contents":"preflightProfileOptions"},
{"trigger": "PNGExportRangeEnum", "contents":"PNGExportRangeEnum"},
{"trigger": "PNGQualityEnum", "contents":"PNGQualityEnum"},
{"trigger": "PNGColorSpaceEnum", "contents":"PNGColorSpaceEnum"},
{"trigger": "stateTypes", "contents":"stateTypes"},
{"trigger": "FloatingWindowPosition", "contents":"FloatingWindowPosition"},
{"trigger": "FloatingWindowSize", "contents":"FloatingWindowSize"},
{"trigger": "moviePosterTypes", "contents":"moviePosterTypes"},
{"trigger": "MoviePlayOperations", "contents":"MoviePlayOperations"},
{"trigger": "soundPosterTypes", "contents":"soundPosterTypes"},
{"trigger": "BehaviorEvents", "contents":"BehaviorEvents"},
{"trigger": "goToZoomOptions", "contents":"goToZoomOptions"},
{"trigger": "PlayOperations", "contents":"PlayOperations"},
{"trigger": "animationPlayOperations", "contents":"animationPlayOperations"},
{"trigger": "ViewZoomStyle", "contents":"ViewZoomStyle"},
{"trigger": "VersionState", "contents":"VersionState"},
{"trigger": "EditingState", "contents":"EditingState"},
{"trigger": "versionCueSyncStatus", "contents":"versionCueSyncStatus"},
{"trigger": "SyncConflictResolution", "contents":"SyncConflictResolution"},
{"trigger": "LanguageAndRegion", "contents":"LanguageAndRegion"},
{"trigger": "userInteractionLevels", "contents":"userInteractionLevels"},
{"trigger": "Locale", "contents":"Locale"},
{"trigger": "ScriptLanguage", "contents":"ScriptLanguage"},
{"trigger": "featureSetOptions", "contents":"featureSetOptions"},
{"trigger": "UndoModes", "contents":"UndoModes"},
{"trigger": "openOptions", "contents":"openOptions"},
{"trigger": "TaskState", "contents":"TaskState"},
{"trigger": "TaskAlertType", "contents":"TaskAlertType"},
{"trigger": "saveOptions", "contents":"saveOptions"},
{"trigger": "ZoomOptions", "contents":"ZoomOptions"},
{"trigger": "viewDisplaySettings", "contents":"viewDisplaySettings"},
{"trigger": "AnchorPoint", "contents":"AnchorPoint"},
{"trigger": "ColorModel", "contents":"ColorModel"},
{"trigger": "ColorSpace", "contents":"ColorSpace"},
{"trigger": "screenModeOptions", "contents":"screenModeOptions"},
{"trigger": "WatermarkVerticalPositionEnum", "contents":"WatermarkVerticalPositionEnum"},
{"trigger": "WatermarkHorizontalPositionEnum", "contents":"WatermarkHorizontalPositionEnum"},
{"trigger": "pageNumberingOptions", "contents":"pageNumberingOptions"},
{"trigger": "ToolTipOptions", "contents":"ToolTipOptions"},
{"trigger": "selectionOptions", "contents":"selectionOptions"},
{"trigger": "SelectAll", "contents":"SelectAll"},
{"trigger": "previewSizeOptions", "contents":"previewSizeOptions"},
{"trigger": "ToolsPanelOptions", "contents":"ToolsPanelOptions"},
{"trigger": "liveDrawingOptions", "contents":"liveDrawingOptions"},
{"trigger": "PreviewPagesOptions", "contents":"PreviewPagesOptions"},
{"trigger": "staticAlignmentOptions", "contents":"staticAlignmentOptions"},
{"trigger": "RenderingIntent", "contents":"RenderingIntent"},
{"trigger": "MarkLineWeight", "contents":"MarkLineWeight"},
{"trigger": "markTypes", "contents":"markTypes"},
{"trigger": "ColorOutputModes", "contents":"ColorOutputModes"},
{"trigger": "DataFormat", "contents":"DataFormat"},
{"trigger": "Flip", "contents":"Flip"},
{"trigger": "FontDownloading", "contents":"FontDownloading"},
{"trigger": "pagePositions", "contents":"pagePositions"},
{"trigger": "PostScriptLevels", "contents":"PostScriptLevels"},
{"trigger": "PrintPageOrientation", "contents":"PrintPageOrientation"},
{"trigger": "imageDataTypes", "contents":"imageDataTypes"},
{"trigger": "Sequences", "contents":"Sequences"},
{"trigger": "sourceSpaces", "contents":"sourceSpaces"},
{"trigger": "ThumbsPerPage", "contents":"ThumbsPerPage"},
{"trigger": "tilingTypes", "contents":"tilingTypes"},
{"trigger": "Trapping", "contents":"Trapping"},
{"trigger": "inkTypes", "contents":"inkTypes"},
{"trigger": "PrinterPresetTypes", "contents":"PrinterPresetTypes"},
{"trigger": "ColorRenderingDictionary", "contents":"ColorRenderingDictionary"},
{"trigger": "PageRange", "contents":"PageRange"},
{"trigger": "PaperSize", "contents":"PaperSize"},
{"trigger": "pPDValues", "contents":"pPDValues"},
{"trigger": "Profile", "contents":"Profile"},
{"trigger": "Screeening", "contents":"Screeening"},
{"trigger": "paperSizes", "contents":"paperSizes"},
{"trigger": "Printer", "contents":"Printer"},
{"trigger": "trapImagePlacementTypes", "contents":"trapImagePlacementTypes"},
{"trigger": "TrapEndTypes", "contents":"TrapEndTypes"},
{"trigger": "EPSImageData", "contents":"EPSImageData"},
{"trigger": "bookletTypeOptions", "contents":"bookletTypeOptions"},
{"trigger": "SignatureSizeOptions", "contents":"SignatureSizeOptions"},
{"trigger": "documentPrintUiOptions", "contents":"documentPrintUiOptions"},
{"trigger": "NoteBackgrounds", "contents":"NoteBackgrounds"},
{"trigger": "noteColorChoices", "contents":"noteColorChoices"},
{"trigger": "ChangeMarkings", "contents":"ChangeMarkings"},
{"trigger": "changebarLocations", "contents":"changebarLocations"},
{"trigger": "ChangeTextColorChoices", "contents":"ChangeTextColorChoices"},
{"trigger": "changeBackgroundColorChoices", "contents":"changeBackgroundColorChoices"},
{"trigger": "LockStateValues", "contents":"LockStateValues"},
{"trigger": "JpegColorSpaceEnum", "contents":"JpegColorSpaceEnum"},
{"trigger": "exportRangeOrAllPages", "contents":"exportRangeOrAllPages"},
{"trigger": "RecordSelection", "contents":"RecordSelection"},
{"trigger": "ArrangeBy", "contents":"ArrangeBy"},
{"trigger": "RecordsPerPage", "contents":"RecordsPerPage"},
{"trigger": "Fitting", "contents":"Fitting"},
{"trigger": "SourceFieldType", "contents":"SourceFieldType"},
{"trigger": "ListType", "contents":"ListType"},
{"trigger": "BulletCharacterType", "contents":"BulletCharacterType"},
{"trigger": "NumberingStyle", "contents":"NumberingStyle"},
{"trigger": "RestartPolicy", "contents":"RestartPolicy"},
{"trigger": "ListAlignment", "contents":"ListAlignment"},
{"trigger": "chapterNumberSources", "contents":"chapterNumberSources"},
{"trigger": "CustomLayoutTypeEnum", "contents":"CustomLayoutTypeEnum"},
{"trigger": "assignmentExportOptions", "contents":"assignmentExportOptions"},
{"trigger": "AssignmentStatus", "contents":"AssignmentStatus"},
{"trigger": "panningTypes", "contents":"panningTypes"},
{"trigger": "AlignDistributeBounds", "contents":"AlignDistributeBounds"},
{"trigger": "alignOptions", "contents":"alignOptions"},
{"trigger": "DistributeOptions", "contents":"DistributeOptions"},
{"trigger": "SourceType", "contents":"SourceType"},
{"trigger": "TagType", "contents":"TagType"},
{"trigger": "ImageFormat", "contents":"ImageFormat"},
{"trigger": "ImageSizeOption", "contents":"ImageSizeOption"},
{"trigger": "ImageResolution", "contents":"ImageResolution"},
{"trigger": "ImageAlignmentType", "contents":"ImageAlignmentType"},
{"trigger": "ImagePageBreakType", "contents":"ImagePageBreakType"},
{"trigger": "CustomWidthTypeEnum", "contents":"CustomWidthTypeEnum"},
{"trigger": "CustomHeightTypeEnum", "contents":"CustomHeightTypeEnum"},
{"trigger": "performanceMetricOptions", "contents":"performanceMetricOptions"},
{"trigger": "SWFBackgroundOptions", "contents":"SWFBackgroundOptions"},
{"trigger": "xFLRasterizeFormatOptions", "contents":"xFLRasterizeFormatOptions"},
{"trigger": "AnimationEaseOptions", "contents":"AnimationEaseOptions"},
{"trigger": "dynamicTriggerEvents", "contents":"dynamicTriggerEvents"},
{"trigger": "PageTransitionTypeOptions", "contents":"PageTransitionTypeOptions"},
{"trigger": "pageTransitionDirectionOptions", "contents":"pageTransitionDirectionOptions"},
{"trigger": "RasterCompressionOptions", "contents":"RasterCompressionOptions"},
{"trigger": "dynamicDocumentsJPEGQualityOptions", "contents":"dynamicDocumentsJPEGQualityOptions"},
{"trigger": "DynamicDocumentsTextExportPolicy", "contents":"DynamicDocumentsTextExportPolicy"},
{"trigger": "fitMethodSettings", "contents":"fitMethodSettings"},
{"trigger": "FitDimension", "contents":"FitDimension"},
{"trigger": "pageTransitionDurationOptions", "contents":"pageTransitionDurationOptions"},
{"trigger": "SWFCurveQualityValue", "contents":"SWFCurveQualityValue"},
{"trigger": "dynamicMediaHandlingOptions", "contents":"dynamicMediaHandlingOptions"},
{"trigger": "DesignOptions", "contents":"DesignOptions"},
{"trigger": "ConditionIndicatorMethod", "contents":"ConditionIndicatorMethod"},
{"trigger": "ConditionUnderlineIndicatorAppearance", "contents":"ConditionUnderlineIndicatorAppearance"},
{"trigger": "ConditionIndicatorMode", "contents":"ConditionIndicatorMode"},
{"trigger": "smoothScrollingOptions", "contents":"smoothScrollingOptions"},
{"trigger": "FolioOrientationOptions", "contents":"FolioOrientationOptions"},
{"trigger": "folioBindingDirectionOptions", "contents":"folioBindingDirectionOptions"},
{"trigger": "DigpubVersion", "contents":"DigpubVersion"},
{"trigger": "attachedDevices", "contents":"attachedDevices"},
{"trigger": "ExportOrder", "contents":"ExportOrder"},
{"trigger": "EpubCover", "contents":"EpubCover"},
{"trigger": "BulletListExportOption", "contents":"BulletListExportOption"},
{"trigger": "NumberedListExportOption", "contents":"NumberedListExportOption"},
{"trigger": "EpubVersion", "contents":"EpubVersion"},
{"trigger": "ImageExportOption", "contents":"ImageExportOption"},
{"trigger": "EPubFootnotePlacement", "contents":"EPubFootnotePlacement"},
{"trigger": "PageRangeFormat", "contents":"PageRangeFormat"},
{"trigger": "EpubNavigationStyle", "contents":"EpubNavigationStyle"},
{"trigger": "EpubFixedLayoutSpreadControl", "contents":"EpubFixedLayoutSpreadControl"},
{"trigger": "MapType", "contents":"MapType"},
{"trigger": "ConflictResolutionChoiceEnum", "contents":"ConflictResolutionChoiceEnum"},
{"trigger": "paragraphDirectionOptions", "contents":"paragraphDirectionOptions"},
{"trigger": "ParagraphJustificationOptions", "contents":"ParagraphJustificationOptions"},
{"trigger": "characterDirectionOptions", "contents":"characterDirectionOptions"},
{"trigger": "DigitsTypeOptions", "contents":"DigitsTypeOptions"},
{"trigger": "kashidasOptions", "contents":"kashidasOptions"},
{"trigger": "DiacriticPositionOptions", "contents":"DiacriticPositionOptions"},
{"trigger": "tableDirectionOptions", "contents":"tableDirectionOptions"},
{"trigger": "Hyperlink", "contents":"Hyperlink"},
{"trigger": "hyperlinks", "contents":"hyperlinks"},
{"trigger": "Bookmark", "contents":"Bookmark"},
{"trigger": "bookmarks", "contents":"bookmarks"},
{"trigger": "HyperlinkPageItemSource", "contents":"HyperlinkPageItemSource"},
{"trigger": "hyperlinkPageItemSources", "contents":"hyperlinkPageItemSources"},
{"trigger": "HyperlinkTextSource", "contents":"HyperlinkTextSource"},
{"trigger": "hyperlinkTextSources", "contents":"hyperlinkTextSources"},
{"trigger": "HyperlinkTextDestination", "contents":"HyperlinkTextDestination"},
{"trigger": "hyperlinkTextDestinations", "contents":"hyperlinkTextDestinations"},
{"trigger": "HyperlinkPageDestination", "contents":"HyperlinkPageDestination"},
{"trigger": "hyperlinkPageDestinations", "contents":"hyperlinkPageDestinations"},
{"trigger": "HyperlinkExternalPageDestination", "contents":"HyperlinkExternalPageDestination"},
{"trigger": "hyperlinkExternalPageDestinations", "contents":"hyperlinkExternalPageDestinations"},
{"trigger": "HyperlinkURLDestination", "contents":"HyperlinkURLDestination"},
{"trigger": "hyperlinkURLDestinations", "contents":"hyperlinkURLDestinations"},
{"trigger": "CrossReferenceFormat", "contents":"CrossReferenceFormat"},
{"trigger": "crossReferenceFormats", "contents":"crossReferenceFormats"},
{"trigger": "CrossReferenceSource", "contents":"CrossReferenceSource"},
{"trigger": "crossReferenceSources", "contents":"crossReferenceSources"},
{"trigger": "BuildingBlock", "contents":"BuildingBlock"},
{"trigger": "buildingBlocks", "contents":"buildingBlocks"},
{"trigger": "ParagraphDestination", "contents":"ParagraphDestination"},
{"trigger": "paragraphDestinations", "contents":"paragraphDestinations"},
{"trigger": "Index", "contents":"Index"},
{"trigger": "indexes", "contents":"indexes"},
{"trigger": "IndexOptions", "contents":"IndexOptions"},
{"trigger": "Topic", "contents":"Topic"},
{"trigger": "topics", "contents":"topics"},
{"trigger": "CrossReference", "contents":"CrossReference"},
{"trigger": "crossReferences", "contents":"crossReferences"},
{"trigger": "PageReference", "contents":"PageReference"},
{"trigger": "pageReferences", "contents":"pageReferences"},
{"trigger": "IndexSection", "contents":"IndexSection"},
{"trigger": "indexSections", "contents":"indexSections"},
{"trigger": "FormField", "contents":"FormField"},
{"trigger": "formFields", "contents":"formFields"},
{"trigger": "Button", "contents":"Button"},
{"trigger": "buttons", "contents":"buttons"},
{"trigger": "State", "contents":"State"},
{"trigger": "states", "contents":"states"},
{"trigger": "MultiStateObject", "contents":"MultiStateObject"},
{"trigger": "multiStateObjects", "contents":"multiStateObjects"},
{"trigger": "CheckBox", "contents":"CheckBox"},
{"trigger": "checkBoxes", "contents":"checkBoxes"},
{"trigger": "ComboBox", "contents":"ComboBox"},
{"trigger": "comboBoxes", "contents":"comboBoxes"},
{"trigger": "ListBox", "contents":"ListBox"},
{"trigger": "listBoxes", "contents":"listBoxes"},
{"trigger": "RadioButton", "contents":"RadioButton"},
{"trigger": "radioButtons", "contents":"radioButtons"},
{"trigger": "TextBox", "contents":"TextBox"},
{"trigger": "textBoxes", "contents":"textBoxes"},
{"trigger": "SignatureField", "contents":"SignatureField"},
{"trigger": "signatureFields", "contents":"signatureFields"},
{"trigger": "Movie", "contents":"Movie"},
{"trigger": "movies", "contents":"movies"},
{"trigger": "NavigationPoint", "contents":"NavigationPoint"},
{"trigger": "navigationPoints", "contents":"navigationPoints"},
{"trigger": "Sound", "contents":"Sound"},
{"trigger": "sounds", "contents":"sounds"},
{"trigger": "Behavior", "contents":"Behavior"},
{"trigger": "behaviors", "contents":"behaviors"},
{"trigger": "GotoFirstPageBehavior", "contents":"GotoFirstPageBehavior"},
{"trigger": "gotoFirstPageBehaviors", "contents":"gotoFirstPageBehaviors"},
{"trigger": "GotoLastPageBehavior", "contents":"GotoLastPageBehavior"},
{"trigger": "gotoLastPageBehaviors", "contents":"gotoLastPageBehaviors"},
{"trigger": "GotoNextPageBehavior", "contents":"GotoNextPageBehavior"},
{"trigger": "gotoNextPageBehaviors", "contents":"gotoNextPageBehaviors"},
{"trigger": "GotoPreviousPageBehavior", "contents":"GotoPreviousPageBehavior"},
{"trigger": "gotoPreviousPageBehaviors", "contents":"gotoPreviousPageBehaviors"},
{"trigger": "GotoNextViewBehavior", "contents":"GotoNextViewBehavior"},
{"trigger": "gotoNextViewBehaviors", "contents":"gotoNextViewBehaviors"},
{"trigger": "GotoPreviousViewBehavior", "contents":"GotoPreviousViewBehavior"},
{"trigger": "gotoPreviousViewBehaviors", "contents":"gotoPreviousViewBehaviors"},
{"trigger": "GotoURLBehavior", "contents":"GotoURLBehavior"},
{"trigger": "gotoURLBehaviors", "contents":"gotoURLBehaviors"},
{"trigger": "MovieBehavior", "contents":"MovieBehavior"},
{"trigger": "movieBehaviors", "contents":"movieBehaviors"},
{"trigger": "ShowHideFieldsBehavior", "contents":"ShowHideFieldsBehavior"},
{"trigger": "showHideFieldsBehaviors", "contents":"showHideFieldsBehaviors"},
{"trigger": "AnimationBehavior", "contents":"AnimationBehavior"},
{"trigger": "animationBehaviors", "contents":"animationBehaviors"},
{"trigger": "OpenFileBehavior", "contents":"OpenFileBehavior"},
{"trigger": "openFileBehaviors", "contents":"openFileBehaviors"},
{"trigger": "GotoNextStateBehavior", "contents":"GotoNextStateBehavior"},
{"trigger": "gotoNextStateBehaviors", "contents":"gotoNextStateBehaviors"},
{"trigger": "GotoPreviousStateBehavior", "contents":"GotoPreviousStateBehavior"},
{"trigger": "gotoPreviousStateBehaviors", "contents":"gotoPreviousStateBehaviors"},
{"trigger": "GotoStateBehavior", "contents":"GotoStateBehavior"},
{"trigger": "gotoStateBehaviors", "contents":"gotoStateBehaviors"},
{"trigger": "ViewZoomBehavior", "contents":"ViewZoomBehavior"},
{"trigger": "viewZoomBehaviors", "contents":"viewZoomBehaviors"},
{"trigger": "SoundBehavior", "contents":"SoundBehavior"},
{"trigger": "soundBehaviors", "contents":"soundBehaviors"},
{"trigger": "GotoAnchorBehavior", "contents":"GotoAnchorBehavior"},
{"trigger": "gotoAnchorBehaviors", "contents":"gotoAnchorBehaviors"},
{"trigger": "GotoPageBehavior", "contents":"GotoPageBehavior"},
{"trigger": "gotoPageBehaviors", "contents":"gotoPageBehaviors"},
{"trigger": "ClearFormBehavior", "contents":"ClearFormBehavior"},
{"trigger": "clearFormBehaviors", "contents":"clearFormBehaviors"},
{"trigger": "PrintFormBehavior", "contents":"PrintFormBehavior"},
{"trigger": "printFormBehaviors", "contents":"printFormBehaviors"},
{"trigger": "SubmitFormBehavior", "contents":"SubmitFormBehavior"},
{"trigger": "submitFormBehaviors", "contents":"submitFormBehaviors"},
{"trigger": "TimingSetting", "contents":"TimingSetting"},
{"trigger": "TimingList", "contents":"TimingList"},
{"trigger": "timingLists", "contents":"timingLists"},
{"trigger": "TimingGroup", "contents":"TimingGroup"},
{"trigger": "timingGroups", "contents":"timingGroups"},
{"trigger": "TimingTarget", "contents":"TimingTarget"},
{"trigger": "timingTargets", "contents":"timingTargets"},
{"trigger": "Layer", "contents":"Layer"},
{"trigger": "layers", "contents":"layers"},
{"trigger": "Spread", "contents":"Spread"},
{"trigger": "spreads", "contents":"spreads"},
{"trigger": "Page", "contents":"Page"},
{"trigger": "pages", "contents":"pages"},
{"trigger": "MasterSpread", "contents":"MasterSpread"},
{"trigger": "masterSpreads", "contents":"masterSpreads"},
{"trigger": "PDFAttribute", "contents":"PDFAttribute"},
{"trigger": "PageItem", "contents":"PageItem"},
{"trigger": "pageItems", "contents":"pageItems"},
{"trigger": "Oval", "contents":"Oval"},
{"trigger": "ovals", "contents":"ovals"},
{"trigger": "Rectangle", "contents":"Rectangle"},
{"trigger": "rectangles", "contents":"rectangles"},
{"trigger": "GraphicLine", "contents":"GraphicLine"},
{"trigger": "graphicLines", "contents":"graphicLines"},
{"trigger": "Polygon", "contents":"Polygon"},
{"trigger": "polygons", "contents":"polygons"},
{"trigger": "Group", "contents":"Group"},
{"trigger": "groups", "contents":"groups"},
{"trigger": "Image", "contents":"Image"},
{"trigger": "images", "contents":"images"},
{"trigger": "EPS", "contents":"EPS"},
{"trigger": "ePSs", "contents":"ePSs"},
{"trigger": "PDF", "contents":"PDF"},
{"trigger": "pDFs", "contents":"pDFs"},
{"trigger": "WMF", "contents":"WMF"},
{"trigger": "wMFs", "contents":"wMFs"},
{"trigger": "PICT", "contents":"PICT"},
{"trigger": "pICTs", "contents":"pICTs"},
{"trigger": "Graphic", "contents":"Graphic"},
{"trigger": "graphics", "contents":"graphics"},
{"trigger": "TransformationMatrix", "contents":"TransformationMatrix"},
{"trigger": "transformationMatrices", "contents":"transformationMatrices"},
{"trigger": "FrameFittingOption", "contents":"FrameFittingOption"},
{"trigger": "Guide", "contents":"Guide"},
{"trigger": "guides", "contents":"guides"},
{"trigger": "TextWrapPreference", "contents":"TextWrapPreference"},
{"trigger": "ContourOption", "contents":"ContourOption"},
{"trigger": "Section", "contents":"Section"},
{"trigger": "sections", "contents":"sections"},
{"trigger": "Path", "contents":"Path"},
{"trigger": "paths", "contents":"paths"},
{"trigger": "PathPoint", "contents":"PathPoint"},
{"trigger": "pathPoints", "contents":"pathPoints"},
{"trigger": "SplineItem", "contents":"SplineItem"},
{"trigger": "splineItems", "contents":"splineItems"},
{"trigger": "EPSText", "contents":"EPSText"},
{"trigger": "ePSTexts", "contents":"ePSTexts"},
{"trigger": "ImportedPage", "contents":"ImportedPage"},
{"trigger": "importedPages", "contents":"importedPages"},
{"trigger": "MediaItem", "contents":"MediaItem"},
{"trigger": "mediaItems", "contents":"mediaItems"},
{"trigger": "Snippet", "contents":"Snippet"},
{"trigger": "snippets", "contents":"snippets"},
{"trigger": "MotionPreset", "contents":"MotionPreset"},
{"trigger": "motionPresets", "contents":"motionPresets"},
{"trigger": "Article", "contents":"Article"},
{"trigger": "articles", "contents":"articles"},
{"trigger": "ArticleMember", "contents":"ArticleMember"},
{"trigger": "articleMembers", "contents":"articleMembers"},
{"trigger": "ArticleChild", "contents":"ArticleChild"},
{"trigger": "ArticleChildren", "contents":"ArticleChildren"},
{"trigger": "HtmlItem", "contents":"HtmlItem"},
{"trigger": "htmlItems", "contents":"htmlItems"},
{"trigger": "Library", "contents":"Library"},
{"trigger": "libraries", "contents":"libraries"},
{"trigger": "Asset", "contents":"Asset"},
{"trigger": "assets", "contents":"assets"},
{"trigger": "Link", "contents":"Link"},
{"trigger": "links", "contents":"links"},
{"trigger": "LinkMetadata", "contents":"LinkMetadata"},
{"trigger": "ObjectStyle", "contents":"ObjectStyle"},
{"trigger": "objectStyles", "contents":"objectStyles"},
{"trigger": "ObjectStyleExportTagMap", "contents":"ObjectStyleExportTagMap"},
{"trigger": "objectStyleExportTagMaps", "contents":"objectStyleExportTagMaps"},
{"trigger": "StoryPreference", "contents":"StoryPreference"},
{"trigger": "TextFramePreference", "contents":"TextFramePreference"},
{"trigger": "TextPreference", "contents":"TextPreference"},
{"trigger": "TextDefault", "contents":"TextDefault"},
{"trigger": "DocumentPreference", "contents":"DocumentPreference"},
{"trigger": "GridPreference", "contents":"GridPreference"},
{"trigger": "GuidePreference", "contents":"GuidePreference"},
{"trigger": "MarginPreference", "contents":"MarginPreference"},
{"trigger": "PasteboardPreference", "contents":"PasteboardPreference"},
{"trigger": "ViewPreference", "contents":"ViewPreference"},
{"trigger": "DocumentPreset", "contents":"DocumentPreset"},
{"trigger": "documentPresets", "contents":"documentPresets"},
{"trigger": "PrintPreference", "contents":"PrintPreference"},
{"trigger": "PrintBookletOption", "contents":"PrintBookletOption"},
{"trigger": "PrintBookletPrintPreference", "contents":"PrintBookletPrintPreference"},
{"trigger": "EPSExportPreference", "contents":"EPSExportPreference"},
{"trigger": "ToolBox", "contents":"ToolBox"},
{"trigger": "ImagePreference", "contents":"ImagePreference"},
{"trigger": "ImageIOPreference", "contents":"ImageIOPreference"},
{"trigger": "clippingPathSettings", "contents":"clippingPathSettings"},
{"trigger": "GraphicLayerOption", "contents":"GraphicLayerOption"},
{"trigger": "GraphicLayer", "contents":"GraphicLayer"},
{"trigger": "graphicLayers", "contents":"graphicLayers"},
{"trigger": "IMEPreference", "contents":"IMEPreference"},
{"trigger": "PDFExportPreference", "contents":"PDFExportPreference"},
{"trigger": "PDFExportPreset", "contents":"PDFExportPreset"},
{"trigger": "pDFExportPresets", "contents":"pDFExportPresets"},
{"trigger": "PDFPlacePreference", "contents":"PDFPlacePreference"},
{"trigger": "InteractivePDFExportPreference", "contents":"InteractivePDFExportPreference"},
{"trigger": "TaggedPDFPreference", "contents":"TaggedPDFPreference"},
{"trigger": "PageItemDefault", "contents":"PageItemDefault"},
{"trigger": "ObjectExportOption", "contents":"ObjectExportOption"},