Copy link to clipboard
Copied
Been trying (coming on 20 hours now) to code a convertToButton function in UXP.
I thought I was don,e but then realized if the object I want to convert is double nested inside a group... and and/or inline in a text frame... it gets real messy real fast.
Hoping someone has already solved this in UXP. If not hopefully what i have will help someone else... i wouldn't have gotten as far as i did without the below post.
i've referred to this page:
https://community.adobe.com/t5/indesign-discussions/how-to-convert-textframe-to-button/td-p/2668958
@sreekarthikeyank and @Marc Autret both have replies that were helpful but I'm still struggling with this function. The functionality of convertToButton is exactly what i need as it doesn't pull the button out of the group its in. (which i tried to get clever and put it back but when its nested a bunch of different ways I get hosed.
Here is my UXP script so far. You'll find a few workarounds in there... some likely not needed due to ignorance on my part.
function GC_ConvertItemtoButton(itemYouLikeToConvert, buttonName) {
const originalParent = itemYouLikeToConvert.parent; // Capture the original parent group
let invisibleTextFrame;
// Check if selected item is a Rectangle
if (itemYouLikeToConvert.constructor.name === "Rectangle") {
invisibleTextFrame = doc.textFrames.add({geometricBounds: itemYouLikeToConvert.geometricBounds, contents: ""});
itemYouLikeToConvert = doc.groups.add([itemYouLikeToConvert, invisibleTextFrame]);
}
const myButton = doc.buttons.add();
myButton.name = buttonName;
const firstState = myButton.states.firstItem();
firstState.addItemsToState(itemYouLikeToConvert);
// Retrieve and remove the original (now duplicated) item from the button's state
const myoldItem = firstState.pageItems.firstItem();
const newitem = myoldItem.pageItems.firstItem();
newitem.remove();
// Remove invisible text frame if it was created
if (invisibleTextFrame) {
itemYouLikeToConvert.ungroup();
invisibleTextFrame.remove();
}
// Add the button back into the original parent group
// WARNING currently this doesn't work if the itemYouLIkeToConvert is nested more than once.
// I worked forever to get it working at one level but i need multiple levels
// AND ability for the object to be inline in a text field
if (originalParent.constructor.name === "Group") {
console.log('was enclosed in a group', originalParent.name);
GC_AddToGroup([myButton], originalParent);
// originalParent.groups.add(myButton);
} else {
console.log('not enclosed in a group', originalParent.name);
// Handle cases where the original parent is not a group
// For instance, add to the same page/spread
}
};
Here is how you call a menu using UXP!
var myMenuItem = app.menuActions.itemByName("Convert to Button")
myMenuItem.invoke()
Copy link to clipboard
Copied
I may have figured something out.....
app.scriptMenuActionshowever whatever that is only contains 2 items ....
they are
"Convert URLs to Hyperlinks..."
"Convert Footnotes and Endnotes..."
I'll continue digging around... it could be a clue
Copy link to clipboard
Copied
Ah! even closer!
app.menuActions.everyItem()MenuAction {}
area: (...)
checked: (...)
constructorName: (...)
enabled: (...)
eventListeners: (...)
events: (...)
id: (...)
index: (...)
isValid: (...)
label: (...)
name: Array(2348)
[0 … 99]
0: "Document..."
1: "New Window for Untitled-1"
2: "Open..."
3: "Save"
4: "Save As..."
5: "Save a Copy..."
6: "Close"
7: "Revert"
8: "Undo Set Page Item Name"
9: "Redo Set Page Item Name"
10: "Exit"
11: "About InDesign..."
12: "Cut"
13: "Copy"
14: "Paste"
15: "Clear"
16: "Paste in Place"
17: "Paste Into"
18: "Duplicate"
19: "Select All"
20: "Deselect All"
21: "Nudge up"
22: "Nudge down"
23: "Nudge left"
24: "Nudge right"
25: "Cascade"
26: "Tile"
27: "Minimize"
28: "Browse in Bridge..."
29: "Browse in New Window..."
30: "Paste without Formatting"
31: "Search Adobe Stock..."
32: "Force redraw"
33: "New default document"
34: "Activate last-used field in panel"
35: "Close all"
36: "Save all"
37: "Close document"
38: "Open context menu"
39: "Next window"
40: "Previous window"
41: "1 newissue.indd"
42: "2 GCTransferPlanTemplate_Oct11.indd"
43: "3 MSOStart.indd"
44: "4 CantRunMoveSelection.indd"
45: "5 ButtonsWorks3.indd"
46: "6 ButtonsWorks2.indd"
47: "7 ButtonsWorks.indd"
48: "8 test.indd"
49: "9 MSO.indd"
50: "0 UHCL Environmental Science with Biology Concentration.indd"
51: "1 forscript.indd"
52: "Nudge up 1/10"
53: "Nudge down 1/10"
54: "Nudge left 1/10"
55: "Nudge right 1/10"
56: "Nudge up x10"
57: "Nudge down x10"
58: "Nudge left x10"
59: "Nudge right x10"
60: "Nudge up duplicate"
61: "Nudge down duplicate"
62: "Nudge left duplicate"
63: "Nudge right duplicate"
64: "Nudge up 1/10 duplicate"
65: "Nudge down 1/10 duplicate"
66: "Nudge left 1/10 duplicate"
67: "Nudge right 1/10 duplicate"
68: "Nudge up x10 duplicate"
69: "Nudge down x10 duplicate"
70: "Nudge left x10 duplicate"
71: "Nudge right x10 duplicate"
72: "Points"
73: "Picas"
74: "Inches"
75: "Inches Decimal"
76: "Millimeters"
77: "Centimeters"
78: "Ciceros"
79: "Agates"
80: "Pixels"
81: "Rectangle Tool"
82: "Rectangle Frame Tool"
83: "Print..."
84: "Ink Manager..."
85: "Line Tool"
86: "Tools"
87: "Pages"
88: "Margins and Columns..."
89: "Insert Pages..."
90: "New Parent..."
91: "Duplicate Spread"
92: "Delete Spread"
93: "Select Unused Parents"
94: "Parent Options..."
95: "Apply Parent to Pages..."
96: "Remove All Local Overrides"
97: "Save as Parent"
98: "Allow Selected Spread to Shuffle"
99: "Allow Document Pages to Shuffle"
[100 … 199]
100: "Panel Options..."
101: "Detach All Objects from Parent"
102: "Override All Parent Page Items"
103: "Move Pages..."
104: "Load Parent Pages..."
105: "Primary Text Frame"
106: "Show Parent Items"
107: "Insert Pages..."
108: "Move Pages..."
109: "New Parent..."
110: "Delete Pages..."
111: "Allow Parent Item Overrides on Selection"
112: "Allow Parent Item Overrides"
113: "To 90° CW"
114: "To 90° CCW"
115: "To 180°"
116: "Clear Rotation"
117: "90° CW"
118: "90° CCW"
119: "180°"
120: "Choose..."
121: "Edit"
122: "Clear All"
123: "Choose..."
124: "Edit"
125: "Clear Page Transition"
126: "None"
127: "Use Parent Color"
128: "Create Alternate Layout..."
129: "Horizontally"
130: "Vertically"
131: "By Alternate Layout"
132: "Split Window to Compare Layouts"
133: "Delete Alternate Layout..."
134: "Print Pages..."
135: "Print Pages..."
136: "Delete Pages..."
137: "Duplicate Spread"
138: "Zoom Tool"
139: "Character Styles"
140: "Paragraph Styles"
141: "Delete Style..."
142: "Duplicate Style..."
143: "Style Options..."
144: "Select All Unused"
145: "Load Paragraph Styles..."
146: "Load Character Styles..."
147: "Load All Text Styles..."
148: "Redefine Style"
149: "Redefine Style"
150: "Small Panel Rows"
151: "Small Panel Rows"
152: "New Character Style..."
153: "New Paragraph Style..."
154: "Select All Unused"
155: "Delete Style"
156: "Convert \"SmallerSTyle\" Bullets and Numbering to Text"
157: "Convert \"^1\" Bullets and Numbering to Text"
158: "Load All Text Styles..."
159: "Style Options..."
160: "Duplicate Style..."
161: "Edit \"^1\"..."
162: "Duplicate Style..."
163: "Delete Style..."
164: "Redefine Style"
165: "Apply \"^1\" "
166: "Apply \"^1\", Clear Overrides"
167: "Apply \"^1\", Clear Character Styles"
168: "Apply \"^1\", Clear All"
169: "Apply \"^1\" then Next Style"
170: "Apply \"^1\" then Next Style, Clear Overrides"
171: "Apply \"^1\" then Next Style, Clear Character Styles"
172: "Apply \"^1\" then Next Style, Clear All"
173: "Clear Overrides"
174: "Break Link to Style"
175: "Break Link to Style"
176: "New Style Group..."
177: "Open All Style Groups"
178: "Close All Style Groups"
179: "Sort by Name"
180: "New Style Group..."
181: "Open All Style Groups"
182: "Close All Style Groups"
183: "Sort by Name"
184: "Style Group Options..."
185: "Duplicate Group"
186: "Delete Group..."
187: "Copy to Group..."
188: "Copy to Group..."
189: "Copy to Group..."
190: "New Group from Styles..."
191: "New Group from Styles..."
192: "New Group from Styles..."
193: "New Paragraph Style..."
194: "Edit All Export Tags..."
195: "Edit All Export Tags..."
196: "Toggle Style Override Highlighter"
197: "Toggle Style Override Highlighter"
198: "Duplicate Style..."
199: "Delete Styles"
[200 … 299]
200: "Convert Style's Bullets and Numbering to Text"
201: "Style Options..."
202: "Break Link to Style"
203: "Load Paragraph Styles..."
204: "Load All Text Styles..."
205: "Duplicate Style..."
206: "Delete Styles"
207: "Style Options..."
208: "Break Link to Style"
209: "Load Character Styles..."
210: "Load All Text Styles..."
211: "Apply Style pack"
212: "New Style Pack..."
213: "Auto Style"
214: "Ellipse Tool"
215: "Ellipse Frame Tool"
216: "Define..."
217: "Page Number"
218: "Page Size"
219: "Incremental Numbers"
220: "Show Options"
221: "Stroke"
222: "Attributes"
223: "Corner Options..."
224: "Swap fill and stroke activation"
225: "Swap fill and stroke colors"
226: "Apply default fill and stroke colors"
227: "Apply Color"
228: "Apply Gradient"
229: "Apply None"
230: "Toggle Text and Object Control"
231: "Object Export Options..."
232: "cover"
233: "frontmatter"
234: "bodymatter"
235: "backmatter"
236: "volume"
237: "part"
238: "chapter"
239: "subchapter"
240: "division"
241: "foreword"
242: "preface"
243: "prologue"
244: "introduction"
245: "preamble"
246: "conclusion"
247: "epilogue"
248: "afterword"
249: "epigraph"
250: "notice"
251: "toc"
252: "loi"
253: "lot"
254: "appendix"
255: "index"
256: "colophon"
257: "landmarks"
258: "glossary"
259: "glossterm"
260: "glossdef"
261: "bibliography"
262: "biblioentry"
263: "titlepage"
264: "halftitlepage"
265: "copyright-page"
266: "acknowledgments"
267: "imprint"
268: "imprimatur"
269: "contributors"
270: "other-credits"
271: "errata"
272: "dedication"
273: "revision-history"
274: "help"
275: "halftitle"
276: "fulltitle"
277: "covertitle"
278: "title"
279: "subtitle"
280: "footnote"
281: "rearnote"
282: "footnotes"
283: "rearnotes"
284: "0 pt"
285: "0.25 pt"
286: "0.5 pt"
287: "0.75 pt"
288: "1 pt"
289: "2 pt"
290: "3 pt"
291: "4 pt"
292: "5 pt"
293: "6 pt"
294: "7 pt"
295: "8 pt"
296: "9 pt"
297: "10 pt"
298: "Bring to Front"
299: "Bring Forward"
[300 … 399]
300: "Send Backward"
301: "Send to Back"
302: "Next Object Above"
303: "Next Object Below"
304: "First Object Above"
305: "Last Object Below"
306: "Fit Frame to Content"
307: "Fit Content to Frame"
308: "Fit Content Proportionally"
309: "Center Content"
310: "Graphic"
311: "Text"
312: "Unassigned"
313: "Increase scale by 1%"
314: "Decrease scale by 1%"
315: "Increase scale by 5%"
316: "Decrease scale by 5%"
317: "Lock"
318: "Unlock"
319: "Horizontal Align Left"
320: "Horizontal Align Center"
321: "Horizontal Align Right"
322: "Vertical Align Top"
323: "Vertical Align Center"
324: "Vertical Align Bottom"
325: "Horizontal Distribute Left"
326: "Horizontal Distribute Center"
327: "Horizontal Distribute Right"
328: "Vertical Distribute Top"
329: "Vertical Distribute Center"
330: "Vertical Distribute Bottom"
331: "Vertical Distribute Space"
332: "Horizontal Distribute Space"
333: "Fill Frame Proportionally"
334: "Frame Fitting Options..."
335: "Container"
336: "Content"
337: "Previous Object"
338: "Next Object"
339: "Horizontal Page Align Left"
340: "Horizontal Page Align Center"
341: "Horizontal Page Align Right"
342: "Vertical Page Align Top"
343: "Vertical Page Align Center"
344: "Vertical Page Align Bottom"
345: "Horizontal Spread Align Left"
346: "Horizontal Spread Align Center"
347: "Horizontal Spread Align Right"
348: "Vertical Spread Align Top"
349: "Vertical Spread Align Center"
350: "Vertical Spread Align Bottom"
351: "Horizontal Margin Align Left"
352: "Horizontal Margin Align Center"
353: "Horizontal Margin Align Right"
354: "Vertical Margin Align Top"
355: "Vertical Margin Align Center"
356: "Vertical Margin Align Bottom"
357: "Increase size by 1%"
358: "Decrease size by 1%"
359: "Increase size by 5%"
360: "Decrease size by 5%"
361: "Toggle Auto-Fit"
362: "Unlock All on Spread"
363: "Unlock All"
364: "Clear Frame Fitting Options"
365: "Content-Aware Fit"
366: "Find Similar Images"
367: "Type"
368: "Color Themes"
369: "Shapes"
370: "Type..."
371: "Composition..."
372: "Toggle Typographer's Quotes Preference"
373: "Advanced Type..."
374: "Toggle Drag and Drop Text Preference"
375: "Document Footnote Options..."
376: "Tab"
377: "Em Space"
378: "En Space"
379: "["
380: "("
381: "Hair Space"
382: "Thin Space"
383: ")"
384: "]"
385: "Toggle Adjust Spacing Automatically When Cutting and Pasting"
386: "Hair Space"
387: "Thin Space"
388: "Document Endnote Options..."
389: "Tab"
390: "Em Space"
391: "En Space"
392: "["
393: "("
394: "Hair Space"
395: "Thin Space"
396: ")"
397: "]"
398: "Hair Space"
399: "Thin Space"
[400 … 499]
400: "Hide Rulers"
401: "Points"
402: "Picas"
403: "Inches"
404: "Inches Decimal"
405: "Millimeters"
406: "Centimeters"
407: "Ciceros"
408: "Agates"
409: "Pixels"
410: "Points"
411: "Picas"
412: "Inches"
413: "Inches Decimal"
414: "Millimeters"
415: "Centimeters"
416: "Ciceros"
417: "Agates"
418: "Pixels"
419: "Custom..."
420: "Custom..."
421: "Ruler Per Page"
422: "Ruler Per Spread"
423: "Ruler On Spine"
424: "Toggle Measurement System"
425: "Text Wrap"
426: "Show Options"
427: "Options..."
428: "Insert..."
429: "Apply to Parent Page Only"
430: "Release"
431: "Swatches"
432: "New Color Swatch..."
433: "New Tint Swatch..."
434: "New Gradient Swatch..."
435: "Duplicate Swatch"
436: "Delete Swatch..."
437: "Swatch Options..."
438: "Select All Unused"
439: "Large List"
440: "Large Thumbnail"
441: "Small Thumbnail"
442: "Small List"
443: "Add Unnamed Colors"
444: "Merge Swatches"
445: "Hide Options"
446: "New Mixed Ink Swatch..."
447: "New Mixed Ink Group..."
448: "Load Swatches..."
449: "Save Swatches..."
450: "New Color Group..."
451: "Color Group Options..."
452: "Ungroup Color Group"
453: "Show All Swatches"
454: "Show Color Swatches"
455: "Show Gradient Swatches"
456: "Show Color Groups"
457: "All Swatches By Name"
458: "Selected Swatches By Name"
459: "All Swatches By Color Values"
460: "Selected Swatches By Color Values"
461: "Find this Color..."
462: "New Color Swatch..."
463: "User Dictionary..."
464: "Dictionary..."
465: "Layers"
466: "New Layer"
467: "Delete Layer"
468: "Layer Options..."
469: "Show All Layers"
470: "Unlock All Layers"
471: "Paste Remembers Layers"
472: "Merge Layers"
473: "Delete Unused Layers"
474: "Small Panel Rows"
475: "Duplicate Layer"
476: "Select Item(s) on Layer"
477: "New Layer"
478: "Delete Layer"
479: "Layer Options..."
480: "Merge Layers"
481: "Duplicate Layer"
482: "Select Item(s)"
483: "Select and Fit Item"
484: "Ungroup Remembers Layers"
485: "Load Find with selected text"
486: "Load Find and Find Next instance"
487: "Replace with Change To text and Find Next"
488: "Replace with Change To text"
489: "Load Replace with selected text"
490: "Find/Change..."
491: "Find Next"
492: "Any Page Number"
493: "Current Page Number"
494: "Next Page Number"
495: "Previous Page Number"
496: "Section Marker"
497: "Standard Carriage Return"
498: "Column Break"
499: "Frame Break"
[500 … 599]
500: "Page Break"
501: "Find Next"
502: "Even Page Break"
503: "Forced Line Break"
504: "End of Paragraph"
505: "Anchored Object Marker"
506: "Footnote Reference Marker"
507: "Index Marker"
508: "Any Variable"
509: "Last Page Number"
510: "Chapter Number"
511: "Output Date"
512: "Modification Date"
513: "File Name"
514: "Creation Date"
515: "Running Header (Paragraph Style)"
516: "Custom Text"
517: "Bullet Character"
518: "Caret Character"
519: "Copyright Symbol"
520: "Ellipsis"
521: "Paragraph Symbol"
522: "Registered Trademark Symbol"
523: "Section Symbol"
524: "Trademark Symbol"
525: "Em Dash"
526: "En Dash"
527: "Discretionary Hyphen"
528: "Nonbreaking Hyphen"
529: "Em Space"
530: "En Space"
531: "Flush Space"
532: "Hair Space"
533: "Nonbreaking Space"
534: "Thin Space"
535: "Figure Space"
536: "Punctuation Space"
537: "Any Double Quotation Marks"
538: "Any Single Quotation Mark (Apostrophe)"
539: "Straight Double Quotation Marks"
540: "Double Left Quotation Marks"
541: "Double Right Quotation Marks"
542: "Straight Single Quotation Mark (Apostrophe)"
543: "Single Left Quotation Mark"
544: "Single Right Quotation Mark"
545: "Tab"
546: "Right Indent Tab"
547: "Indent to Here"
548: "End Nested Style Here"
549: "Any Digit"
550: "Any Letter"
551: "Any Character"
552: "Any White Space"
553: "Straight Double Quotation Marks"
554: "Quick Apply..."
555: "Odd Page Break"
556: "Current Page Number"
557: "Next Page Number"
558: "Previous Page Number"
559: "Section Marker"
560: "Standard Carriage Return"
561: "Column Break"
562: "Frame Break"
563: "Page Break"
564: "Odd Page Break"
565: "Even Page Break"
566: "Forced Line Break"
567: "End of Paragraph"
568: "Clipboard Contents, Formatted"
569: "Clipboard Contents, Unformatted"
570: "Metadata Caption"
571: "Bullet Character"
572: "Caret Character"
573: "Copyright Symbol"
574: "Ellipsis"
575: "Paragraph Symbol"
576: "Registered Trademark Symbol"
577: "Section Symbol"
578: "Trademark Symbol"
579: "Em Dash"
580: "En Dash"
581: "Discretionary Hyphen"
582: "Nonbreaking Hyphen"
583: "Em Space"
584: "En Space"
585: "Flush Space"
586: "Hair Space"
587: "Nonbreaking Space"
588: "Thin Space"
589: "Figure Space"
590: "Punctuation Space"
591: "Any Page Number"
592: "Any Double Quotation Marks"
593: "Any Single Quotation Mark (Apostrophe)"
594: "Section Marker"
595: "End of Paragraph"
596: "Forced Line Break"
597: "Anchored Object Marker"
598: "Footnote Reference Marker"
599: "Bullet Character"
[600 … 699]
600: "Caret Character"
601: "Copyright Symbol"
602: "Ellipsis"
603: "Paragraph Symbol"
604: "Registered Trademark Symbol"
605: "Section Symbol"
606: "Trademark Symbol"
607: "Em Dash"
608: "En Dash"
609: "Discretionary Hyphen"
610: "Nonbreaking Hyphen"
611: "Em Space"
612: "En Space"
613: "Flush Space"
614: "Hair Space"
615: "Nonbreaking Space"
616: "Thin Space"
617: "Figure Space"
618: "Punctuation Space"
619: "Double Left Quotation Mark"
620: "Double Right Quotation Mark"
621: "Single Left Quotation Mark"
622: "Single Right Quotation Mark"
623: "Tab"
624: "Right Indent Tab"
625: "Indent to Here"
626: "Any Digit"
627: "Any Letter"
628: "Any Character"
629: "Any White Space"
630: "Tab Character"
631: "End of Paragraph"
632: "Forced Line Break"
633: "Found Text"
634: "Found 1"
635: "Found 2"
636: "Found 3"
637: "Found 4"
638: "Found 5"
639: "Found 6"
640: "Found 7"
641: "Found 8"
642: "Found 9"
643: "Zero or More Times"
644: "One or More Times"
645: "Zero or One Time"
646: "Zero or More Times (Shortest Match)"
647: "One or More Times (Shortest Match)"
648: "Zero or One Time (Shortest Match)"
649: "Beginning of Word"
650: "End of Word"
651: "Beginning of Paragraph"
652: "End of Paragraph"
653: "Straight Double Quotation Marks"
654: "Straight Single Quotation Mark (Apostrophe)"
655: "End Nested Style Here"
656: "Any Uppercase Letter"
657: "Any Lowercase Letter"
658: "Or"
659: "Marking Subexpression"
660: "Non-marking Subexpression"
661: "Character Set"
662: "Double Left Quotation Marks"
663: "Double Right Quotation Marks"
664: "Straight Single Quotation Mark (Apostrophe)"
665: "Single Left Quotation Mark"
666: "Single Right Quotation Mark"
667: "Tab"
668: "Right Indent Tab"
669: "Indent to Here"
670: "End Nested Style Here"
671: "Polygon Tool"
672: "Polygon Frame Tool"
673: "Story"
674: "Create Guides..."
675: "Go Back"
676: "Go Forward"
677: "Stroke Styles..."
678: "Numbering & Section Options..."
679: "Delete Section"
680: "Numbering & Section Options..."
681: "Show Options"
682: "Gradient"
683: "Grids..."
684: "Guides & Pasteboard..."
685: "Units & Increments..."
686: "Show Guides"
687: "Lock Guides"
688: "Show Baseline Grid"
689: "Snap to Guides"
690: "Show Document Grid"
691: "Snap to Document Grid"
692: "Show Frame Edges"
693: "Show Text Threads"
694: "First Page"
695: "Last Page"
696: "Next Page"
697: "Previous Page"
698: "Guides in Back"
699: "Grids in Back"
[700 … 799]
700: "Add Page"
701: "Lock Column Guides"
702: "Smart Guides"
703: "Page Tool"
704: "Controlled by Parent"
705: "Re-center"
706: "Object-based"
707: "Scale"
708: "Guide-based"
709: "Off"
710: "Pin Left Edge"
711: "Pin Right Edge"
712: "Pin Top Edge"
713: "Pin Bottom Edge"
714: "Resize Horizontally"
715: "Resize Vertically"
716: "Document Setup..."
717: "Define..."
718: "Document Presets: Default"
719: "Document Presets: Document Preset 1"
720: "Document Presets: Document Preset 2"
721: "Adjust Layout..."
722: "Align"
723: "Show Options"
724: "Align to Selection"
725: "Align to Margins"
726: "Align to Page"
727: "Align to Spread"
728: "Align to Key Object"
729: "Cancel Key Object"
730: "Clear All"
731: "Repeat Tab"
732: "Reset Indents"
733: "Tabs"
734: "Delete Tab"
735: "Left-Justified Tab"
736: "Center-Justified Tab"
737: "Right-Justified Tab"
738: "Decimal Tab"
739: "Show Options"
740: "Reset kerning and tracking"
741: "Character"
742: "Underline Options...."
743: "Strikethrough Options..."
744: "Set 1"
745: "Set 2"
746: "Set 3"
747: "Set 4"
748: "Set 5"
749: "Set 6"
750: "Set 7"
751: "Set 8"
752: "Set 9"
753: "Set 10"
754: "Set 11"
755: "Set 12"
756: "Set 13"
757: "Set 14"
758: "Set 15"
759: "Set 16"
760: "Set 17"
761: "Set 18"
762: "Set 19"
763: "Set 20"
764: "Show Options"
765: "Hyphenation..."
766: "Keep Options..."
767: "Paragraph Rules..."
768: "Justification..."
769: "Paragraph"
770: "Auto-hyphenate on/off"
771: "Switch composer"
772: "Span Columns..."
773: "Adobe World-Ready Single-line Composer"
774: "Adobe World-Ready Paragraph Composer"
775: "Adobe Paragraph Composer"
776: "Adobe Single-line Composer"
777: "Drop Caps and Nested Styles..."
778: "GREP Styles..."
779: "Paragraph Borders and Shading..."
780: "Show Options"
781: "Color"
782: "HSB"
783: "Lab"
784: "CMYK"
785: "RGB"
786: "Add to Swatches"
787: "HSB"
788: "Lab"
789: "CMYK"
790: "RGB"
791: "Transformations are Totals"
792: "Dimensions Include Stroke Weight"
793: "Transform"
794: "Show Content Offset"
795: "Adjust Stroke Weight when Scaling"
796: "Adjust Effects when Scaling"
797: "Image Color Settings..."
798: "Color Settings..."
799: "Convert to Profile..."
[800 … 899]
800: "Assign Profiles..."
801: "Proof Colors"
802: "Custom..."
803: "Document CMYK"
804: "Working CMYK"
805: "Macintosh RGB"
806: "Windows RGB"
807: "Monitor RGB"
808: "Appearance of Black..."
809: "Library..."
810: "Add Items on Page"
811: "Item Information..."
812: "Delete Item(s)"
813: "Place Item(s)"
814: "Show All"
815: "Show Subset..."
816: "Thumbnail View"
817: "List View"
818: "by Name"
819: "by Newest"
820: "by Oldest"
821: "by Type"
822: "Close Library"
823: "Add Item"
824: "Sample Buttons And Forms"
825: "Add Items on Page as Separate Objects"
826: "Update Library Item"
827: "Large Thumbnail View"
828: "Migrate Item(s) to CC Libraries"
829: "Options..."
830: "Convert Clipping Path to Frame"
831: "Generate QR Code..."
832: "Object Layer Options..."
833: "InDesign Help..."
834: "InDesign Tutorials..."
835: "Submit Bug/Feature Request..."
836: "InDesign Forum..."
837: "General..."
838: "File Handling..."
839: "Clipboard Handling..."
840: "Package..."
841: "Preflight Book..."
842: "Package Book For Print..."
843: "Gradient Swatch Tool"
844: "Gradient Feather Tool"
845: "Accept Change"
846: "Reject Change"
847: "Previous Change"
848: "Next Change"
849: "Track Changes"
850: "In This Story"
851: "In This Story"
852: "Track Changes in Current Story"
853: "Show Changes"
854: "Enable Tracking in All Stories"
855: "Disable Tracking in All Stories"
856: "In This Document"
857: "In This Document"
858: "Accept Change, Find Next"
859: "Reject Change, Find Next"
860: "In This Story"
861: "In This Story"
862: "In This Document"
863: "In This Document"
864: "Step and Repeat..."
865: "Text Frame Options..."
866: "Baseline Options"
867: "Search Adobe Stock..."
868: "Find/Replace Font..."
869: "Free Transform Tool"
870: "Set 1"
871: "Set 2"
872: "Set 3"
873: "Set 4"
874: "Set 5"
875: "Set 6"
876: "Set 7"
877: "Set 8"
878: "Set 9"
879: "Set 10"
880: "Set 11"
881: "Set 12"
882: "Set 13"
883: "Set 14"
884: "Set 15"
885: "Set 16"
886: "Set 17"
887: "Set 18"
888: "Set 19"
889: "Set 20"
890: "Align towards spine"
891: "Align away from spine"
892: "Go to Footnote Text"
893: "Clear All Overrides"
894: "Clear Character Overrides"
895: "Clear Paragraph Overrides"
896: "Third Space"
897: "Quarter Space"
898: "Sixth Space"
899: "Insert Footnote"
[900 … 999]
900: "Nonbreaking Space (Fixed Width)"
901: "General Form"
902: "Automatic Form"
903: "Initial Form"
904: "Medial Form"
905: "Final Form"
906: "Isolated Form"
907: "Convert Variable to Text"
908: "Define..."
909: "Increase vertical scale"
910: "Decrease vertical scale"
911: "Increase vertical scale x 5"
912: "Decrease vertical scale x 5"
913: "Discretionary Line Break"
914: "Non-joiner"
915: "Bullet Character"
916: "Copyright Symbol"
917: "Ellipsis"
918: "Paragraph Symbol"
919: "Registered Trademark Symbol"
920: "Section Symbol"
921: "Trademark Symbol"
922: "Em Dash"
923: "En Dash"
924: "Em Space"
925: "En Space"
926: "Flush Space"
927: "Hair Space"
928: "Thin Space"
929: "Figure Space"
930: "Punctuation Space"
931: "Double Left Quotation Marks"
932: "Double Right Quotation Marks"
933: "Single Left Quotation Mark"
934: "Single Right Quotation Mark"
935: "Time Zone"
936: "Third Space"
937: "Quarter Space"
938: "Sixth Space"
939: "Straight Double Quotation Marks"
940: "Straight Single Quotation Mark (Apostrophe)"
941: "Hour (1-12)"
942: "Hour (01-12)"
943: "Hour (0-23)"
944: "Hour (00-23)"
945: "Minute"
946: "Minute (00)"
947: "Second"
948: "Second (00)"
949: "AM / PM"
950: "Number"
951: "Number (01)"
952: "Name"
953: "Name (Short)"
954: "Number"
955: "Number (01)"
956: "Name"
957: "Name (Short)"
958: "Number"
959: "Number (Short)"
960: "Time Zone (Short)"
961: "Era"
962: "Include Text Variables (v:)"
963: "Insert Endnote"
964: "Insert Endnote"
965: "Go to Endnote Text"
966: "Edit in Copy Editor (Beta)"
967: "Feedback - Copy Editor (Beta)..."
968: "Eyedropper Tool"
969: "Color Theme Tool"
970: "New Note"
971: "Open Note"
972: "Delete Note"
973: "Note Tool"
974: "Copy Text to Note"
975: "Convert to Note"
976: "Convert to Text"
977: "Next Note"
978: "Previous Note"
979: "Notes Mode"
980: "Expand/Collapse Notes in Story"
981: "Remove All Notes"
982: "Hide Notes"
983: "Convert Word to Note"
984: "Convert Line to Note"
985: "Convert Paragraph to Note"
986: "Convert Story to Note"
987: "Notes"
988: "Show Note Information"
989: "Go To Note Anchor"
990: "Split Note"
991: "Remove Notes from Story"
992: "Scripts"
993: "Run Script"
994: "Edit Script"
995: "Reveal in Explorer"
996: "Delete Script File"
997: "Enable Redraw"
998: "Display Unsupported Files"
999: "Glyphs"
[1000 … 1099]
1000: "Show Options"
1001: "New Glyph Set..."
1002: "Delete Glyph from Set"
1003: "Insert Most Recent Glyph"
1004: "Insert 2nd Most Recent Glyph"
1005: "Insert 3rd Most Recent Glyph"
1006: "Insert 4th Most Recent Glyph"
1007: "Insert 5th Most Recent Glyph"
1008: "By CID / GID"
1009: "By Unicode"
1010: "Delete Glyph from Recently Used"
1011: "Clear All Recently Used"
1012: "Other..."
1013: "Create Outlines"
1014: "Create outlines without deleting text"
1015: "Story Editor Display..."
1016: "Book..."
1017: "Add Document..."
1018: "Remove Document"
1019: "Save Book"
1020: "Save Book As..."
1021: "Close Book"
1022: "Print Book..."
1023: "Synchronize Book"
1024: "Document Information..."
1025: "Book Page Numbering Options..."
1026: "Small Panel Rows"
1027: "Update Page & Section Numbers"
1028: "Replace Document..."
1029: "Export Book to PDF..."
1030: "Synchronize Options..."
1031: "Document Numbering Options..."
1032: "Automatic Document Conversion"
1033: "Merge Identically Named Layers on Export"
1034: "Reveal in Explorer"
1035: "Export Book to EPUB..."
1036: "Update All Numbers"
1037: "Update Chapter & Paragraph Numbers"
1038: "Alternating Fills..."
1039: "Alternating Row Strokes..."
1040: "Strokes and Fills..."
1041: "Text..."
1042: "Rows and Columns..."
1043: "Create Table..."
1044: "Row..."
1045: "Column..."
1046: "Row"
1047: "Column"
1048: "Table"
1049: "Row"
1050: "Column"
1051: "Table"
1052: "Diagonal Lines..."
1053: "Convert Text to Table..."
1054: "Merge Cells"
1055: "Unmerge Cells"
1056: "Distribute Rows Evenly"
1057: "Distribute Columns Evenly"
1058: "Toggle Autogrow"
1059: "Cell"
1060: "Insert Row"
1061: "Insert Column"
1062: "Move to First Cell in Column"
1063: "Move to Last Cell in Column"
1064: "Move to First Cell in Row"
1065: "Move to Last Cell in Row"
1066: "Move to First Row in Frame"
1067: "Move to Last Row in Frame"
1068: "Edit Header"
1069: "Edit Footer"
1070: "Toggle Cell/Text Selection"
1071: "Move to Next Cell"
1072: "Move to Previous Cell"
1073: "Move Down"
1074: "Move Up"
1075: "Move Left"
1076: "Move Right"
1077: "Select Cells Below"
1078: "Select Cells Above"
1079: "Select Cells to the Left"
1080: "Select Cells to the Right"
1081: "Convert Cell to Text Cell"
1082: "Convert Cell to Graphic Cell"
1083: "Split Cell Horizontally"
1084: "Split Cell Vertically"
1085: "Keep with Next Row"
1086: "Start Row on Next Column"
1087: "Start Row on Next Frame"
1088: "Table Setup..."
1089: "Convert Table to Text..."
1090: "Table"
1091: "0°"
1092: "90°"
1093: "180°"
1094: "270°"
1095: "Go to Row..."
1096: "Alternating Column Strokes..."
1097: "Clear"
1098: "Delete"
1099: "To Header"
[1100 … 1199]
1100: "To Footer"
1101: "To Body"
1102: "Headers and Footers..."
1103: "Body Rows"
1104: "Header Rows"
1105: "Footer Rows"
1106: "Convert to Header Rows"
1107: "Convert to Footer Rows"
1108: "Convert to Body Rows"
1109: "Horizontal"
1110: "Vertical"
1111: "Select Border"
1112: "Select Inner"
1113: "Select All"
1114: "Clear Border"
1115: "Clear Inner"
1116: "Clear All"
1117: "Paste After"
1118: "Paste Before"
1119: "Object Right"
1120: "Object Left"
1121: "Object Up"
1122: "Object Down"
1123: "Object Escape"
1124: "Object Move to Next Cell"
1125: "Object Move to Prev Cell"
1126: "Graphic..."
1127: "Increase Cell Width"
1128: "Decrease Cell Width"
1129: "Increase Cell Height"
1130: "Decrease Cell Height"
1131: "Show/Hide all panels"
1132: "Show/Hide all panels except toolbox"
1133: "1 *newissue.indd @ 49%"
1134: "Browse Plugins"
1135: "Manage Plugins"
1136: "Effects"
1137: "Default"
1138: "None (Ignore Transparency)"
1139: "Object"
1140: "Stroke"
1141: "Fill"
1142: "Text"
1143: "Transparency Flattener Presets..."
1144: "Document RGB"
1145: "Document CMYK"
1146: "Show Options"
1147: "Custom..."
1148: "Drop Shadow..."
1149: "Inner Shadow..."
1150: "Outer Glow..."
1151: "Inner Glow..."
1152: "Bevel and Emboss..."
1153: "Satin..."
1154: "Basic Feather..."
1155: "Gradient Feather..."
1156: "Directional Feather..."
1157: "Clear Effects"
1158: "Global Light..."
1159: "Clear Effects"
1160: "Drop Shadow..."
1161: "Inner Shadow..."
1162: "Outer Glow..."
1163: "Inner Glow..."
1164: "Bevel and Emboss..."
1165: "Satin..."
1166: "Basic Feather..."
1167: "Gradient Feather..."
1168: "Directional Feather..."
1169: "Transparency..."
1170: "Transparency..."
1171: "Clear All Transparency"
1172: "Trap Presets"
1173: "New Preset..."
1174: "Duplicate Preset..."
1175: "Delete Presets"
1176: "Preset Options..."
1177: "Load Trap Presets..."
1178: "Select All Unused"
1179: "Small Panel Rows"
1180: "Assign Trap Preset..."
1181: "Keyboard Shortcuts..."
1182: "Control"
1183: "Toggle Keyboard Focus in Control Panel"
1184: "Toggle Character and Paragraph Modes in Control Panel"
1185: "Dock at Top"
1186: "Dock at Bottom"
1187: "Float"
1188: "Customize..."
1189: "Properties"
1190: "Table of Contents Styles..."
1191: "Table of Contents..."
1192: "Bullet Character"
1193: "Tab Character"
1194: "Right Indent Tab"
1195: "Em Dash"
1196: "Em Space"
1197: "En Dash"
1198: "En Space"
1199: "Flush Space"
[1200 … 1299]
1200: "Hair Space"
1201: "Nonbreaking Space"
1202: "Thin Space"
1203: "Forced Line Break"
1204: "Nonbreaking Hyphen"
1205: "Update Table of Contents"
1206: "Nonbreaking Space (Fixed Width)"
1207: "End Nested Style"
1208: "Sixth Space"
1209: "Quarter Space"
1210: "Third Space"
1211: "Figure Space"
1212: "Punctuation Space"
1213: "Measure Tool"
1214: "Separations Preview"
1215: "Overprint Preview"
1216: "Desaturate Black"
1217: "Ink Manager..."
1218: "Show Single Plates in Black"
1219: "Flattener Preview"
1220: "Transparency Flattener Presets..."
1221: "Show all plates"
1222: "Show Cyan plate"
1223: "Show Magenta plate"
1224: "Show Yellow plate"
1225: "Show Black plate"
1226: "Show 1st spot plate"
1227: "Show 2nd spot plate"
1228: "Show 3rd spot plate"
1229: "Show 4th spot plate"
1230: "Show 5th spot plate"
1231: "File Info..."
1232: "Index"
1233: "New..."
1234: "Delete"
1235: "Generate Index..."
1236: "Update Preview"
1237: "Import Topics..."
1238: "Remove Unused Topics"
1239: "Capitalize..."
1240: "Go to Selected Marker"
1241: "Options..."
1242: "Add new index entry"
1243: "Add new index entry (reversed)"
1244: "Duplicate..."
1245: "Show Find Field"
1246: "Bullet Character"
1247: "End of Paragraph"
1248: "Forced Line Break"
1249: "Tab Character"
1250: "Em Dash"
1251: "Em Space"
1252: "En Dash"
1253: "En Space"
1254: "Flush Space"
1255: "Hair Space"
1256: "Nonbreaking Space"
1257: "Thin Space"
1258: "Discretionary Hyphen"
1259: "Nonbreaking Hyphen"
1260: "Show Unused Topics"
1261: "Add new topic"
1262: "Sort Options..."
1263: "End Nested Style"
1264: "Nonbreaking Space (Fixed Width)"
1265: "Sixth Space"
1266: "Quarter Space"
1267: "Third Space"
1268: "Figure Space"
1269: "Punctuation Space"
1270: "Display Performance..."
1271: "High Quality Display"
1272: "Typical Display"
1273: "Fast Display"
1274: "Use View Setting"
1275: "High Quality Display"
1276: "Typical Display"
1277: "Fast Display"
1278: "Clear Object-Level Display Settings"
1279: "High Quality Display"
1280: "Typical Display"
1281: "Fast Display"
1282: "Clear Object-Level Display Settings"
1283: "Allow Object-Level Display Settings"
1284: "Suppress overrides (view optimized)"
1285: "Tags"
1286: "New Tag..."
1287: "Delete Tag..."
1288: "Tag Options..."
1289: "Load Tags..."
1290: "Save Tags..."
1291: "Select All Unused Tags"
1292: "Small Panel Rows"
1293: "Untag Frame"
1294: "New Element..."
1295: "New Attribute..."
1296: "Go to Item"
1297: "Show Attributes"
1298: "Show Text Snippets"
1299: "Add Untagged Items"
[1300 … 1399]
1300: "Map Tags to Styles..."
1301: "Show Tag Markers"
1302: "Map Styles to Tags..."
1303: "Select in Structure"
1304: "Untag Element"
1305: "Show Tagged Frames"
1306: "Tag Element..."
1307: "New Comment..."
1308: "New Processing Instruction..."
1309: "View List of Errors..."
1310: "View DTD..."
1311: "Import XML..."
1312: "Show Structure"
1313: "Move XML selection down"
1314: "Move XML selection up"
1315: "Extend XML selection down"
1316: "Extend XML selection up"
1317: "Select first XML node"
1318: "Select last XML node"
1319: "Scroll structure pane up one screen"
1320: "Scroll structure pane down one screen"
1321: "Expand element"
1322: "Collapse element"
1323: "Expand element and child elements"
1324: "Collapse element and child elements"
1325: "Validate from Selected Element"
1326: "Select through first XML node"
1327: "Select through last XML node"
1328: "DTD Options..."
1329: "View previous validation error"
1330: "View next validation error"
1331: "XML..."
1332: "Root"
1333: "Delete"
1334: "Edit"
1335: "Load DTD..."
1336: "Delete DTD"
1337: "Show Comments"
1338: "Show Processing Instructions"
1339: "Validate from Root Element"
1340: "Tag Element..."
1341: "Export XML..."
1342: "Tagging Preset Options..."
1343: "Import XML..."
1344: "Autotag"
1345: "New Parent Element..."
1346: "New Parent Element..."
1347: "Tag Frame..."
1348: "Tag Text..."
1349: "New Element..."
1350: "Script Label"
1351: "Hyperlinks"
1352: "New Hyperlink..."
1353: "Delete Hyperlink"
1354: "Reset Hyperlink"
1355: "Hyperlink Destination Options..."
1356: "New Hyperlink Destination..."
1357: "Go To Destination"
1358: "Go To Source"
1359: "Small Panel Rows"
1360: "Edit Hyperlink..."
1361: "New Hyperlink From URL"
1362: "Show Hyperlinks"
1363: "Update Hyperlink"
1364: "Manually"
1365: "By Name"
1366: "By Type"
1367: "Insert Cross-Reference..."
1368: "Cross-Reference Options..."
1369: "Define Cross-Reference Formats..."
1370: "Cross-References"
1371: "Update Cross-Reference"
1372: "Relink Cross-Reference..."
1373: "Load Cross-Reference Formats..."
1374: "Page Number"
1375: "Paragraph Number"
1376: "Paragraph Text"
1377: "Full Paragraph"
1378: "Partial Paragraph"
1379: "Text Anchor Name"
1380: "Chapter Number"
1381: "File Name"
1382: "Character Style"
1383: "Em Dash"
1384: "En Dash"
1385: "Em Space"
1386: "En Space"
1387: "Hair Space"
1388: "Sixth Space"
1389: "Thin Space"
1390: "Quarter Space"
1391: "Third Space"
1392: "Punctuation Space"
1393: "Figure Space"
1394: "Flush Space"
1395: "Nonbreaking Space"
1396: "Nonbreaking Space (Fixed Width)"
1397: "Nonbreaking Hyphen"
1398: "Double Left Quotation Mark"
1399: "Double Right Quotation Mark"
[1400 … 1499]
1400: "Single Left Quotation Mark"
1401: "Single Right Quotation Mark"
1402: "Bullet Character"
1403: "Paragraph Symbol"
1404: "Section Symbol"
1405: "Update All Cross-References"
1406: "Tab"
1407: "Forced Line Break"
1408: "End Nested Style"
1409: "Non-joiner"
1410: "Rename Hyperlink..."
1411: "Delete Cross-Reference"
1412: "Auto Update URL Status"
1413: "Delete Unused Destinations"
1414: "Go To Destination"
1415: "Go To Source"
1416: "DeleteHyperlinkFromPropsPanel"
1417: "Convert to Button"
1418: "Convert to Check Box"
1419: "Convert to Radio Button"
1420: "Convert to Text Field"
1421: "Convert to List Box"
1422: "Convert to Combo Box"
1423: "Convert to Signature Field"
1424: "Set Tab Order..."
1425: "Buttons and Forms"
1426: "Panel Options..."
1427: " Go To First Page"
1428: " Go To Destination"
1429: " Go To Last Page"
1430: " Go To Next Page"
1431: " Go To Next View"
1432: " Go To Previous Page"
1433: " Go To Previous View"
1434: " Go To URL"
1435: " Video"
1436: " Open File"
1437: " Show/Hide Buttons and Forms"
1438: " Sound"
1439: " View Zoom"
1440: " Go To Page"
1441: " Animation"
1442: "Sample Buttons And Forms"
1443: "Object States"
1444: "New State"
1445: "Reset All Multi-state Objects to First State"
1446: "Delete State"
1447: "Paste Into State"
1448: "Release State to Objects"
1449: "Release All States to Objects"
1450: "Panel Options..."
1451: "Release State to Objects"
1452: "Delete State"
1453: " Go To State"
1454: " Go To Next State"
1455: " Go To Previous State"
1456: "EPUB/Publish Online Only"
1457: "PDF Only"
1458: "Reset All Buttons to Normal State"
1459: "Paste Into State"
1460: "Hidden Until Triggered"
1461: "Add Objects to State"
1462: " Clear Form"
1463: " Submit Form"
1464: " Print Form"
1465: "Convert to Object"
1466: "Edit HTML..."
1467: "Insert HTML..."
1468: "Check In..."
1469: "Versions..."
1470: "Versions..."
1471: "Check In Link..."
1472: "Versions..."
1473: "Info"
1474: "Show Options"
1475: "File Info..."
1476: "Swatch Name"
1477: "Color Space"
1478: "Swatch Name"
1479: "Color Space"
1480: "New Workspace..."
1481: "Delete Workspace..."
1482: "Find Extensions on Exchange..."
1483: "Reset Interactive for PDF"
1484: "Float in Window"
1485: "Float All in Windows"
1486: "Consolidate All Windows"
1487: "Open/Close all panels in side tabs"
1488: "Open/Close panels in left side tabs"
1489: "Open/Close panels in right side tabs"
1490: "Menus..."
1491: "Show Full Menus"
1492: "Interface..."
1493: "Hide Content Grabber"
1494: "Hide Live Corners"
1495: "Background Tasks"
1496: "Manage Extensions..."
1497: "Layer..."
1498: "All Stories..."
1499: "All Graphics..."
[1500 … 1599]
1500: "All Graphics and Stories..."
1501: "Bookmarks"
1502: "New Bookmark"
1503: "Delete Bookmark..."
1504: "Rename Bookmark"
1505: "Go to Selected Bookmark"
1506: "Sort Bookmarks"
1507: "Notes..."
1508: "Track Changes..."
1509: "User..."
1510: "Make Compound Path"
1511: "Release Compound Path"
1512: "Reverse Path"
1513: "Pen Tool"
1514: "Add Anchor Point Tool"
1515: "Delete Anchor Point Tool"
1516: "Pencil Tool"
1517: "Erase Tool"
1518: "Convert Direction Point Tool"
1519: "Scissors Tool"
1520: "Smooth Tool"
1521: "Intersect"
1522: "Add"
1523: "Subtract"
1524: "Minus Back"
1525: "Exclude Overlap"
1526: "Rectangle"
1527: "Rounded Rectangle"
1528: "Beveled Rectangle"
1529: "Inverse Rounded Rectangle"
1530: "Fancy Rectangle"
1531: "Ellipse"
1532: "Triangle"
1533: "Polygon"
1534: "Line"
1535: "Orthogonal Line"
1536: "Open Path"
1537: "Close Path"
1538: "Plain"
1539: "Corner"
1540: "Smooth"
1541: "Symmetrical"
1542: "Join"
1543: "End Path Drawing"
1544: "Pathfinder"
1545: "Delete Points"
1546: "Open..."
1547: "Open..."
1548: "Open..."
1549: "Open..."
1550: "Check Out"
1551: "Cancel Check Out"
1552: "Check In"
1553: "Check Out"
1554: "Cancel Check Out"
1555: "Check In"
1556: "Export Selection..."
1557: "Save Content"
1558: "Update Content"
1559: "Check In All"
1560: "Check Out"
1561: "Cancel Check Out"
1562: "Check In"
1563: "Check In All"
1564: "Update Content"
1565: "Selection..."
1566: "Assignments"
1567: "New Assignment..."
1568: "Unlink Content"
1569: "Assignment Options..."
1570: "Go to Content"
1571: "Change Assignment Location..."
1572: "Update Selected Assignments"
1573: "Update All Assignments"
1574: "Hide Assigned Frames"
1575: "Delete Assignment"
1576: "New..."
1577: "New..."
1578: "New..."
1579: "New..."
1580: "New..."
1581: "New..."
1582: "New..."
1583: "New..."
1584: "Package for InCopy..."
1585: "Reveal in Explorer"
1586: "Reveal in Bridge"
1587: "Package for InCopy and Email"
1588: "Open Package..."
1589: "Cancel Package"
1590: "Update Out-of-Date Assignments"
1591: "Data Merge"
1592: "Select Data Source..."
1593: "Preview"
1594: "Create Merged Document..."
1595: "Update Data Source"
1596: "Remove Data Source"
1597: "Content Placement Options..."
1598: "Update Content in Data Fields"
1599: "Show Log of Update Results"
[1600 … 1699]
1600: "Export To PDF"
1601: "Bullets and Numbering..."
1602: "Apply/Remove Bullets"
1603: "Apply/Remove Numbers"
1604: "Convert Bullets and Numbering to Text"
1605: "Define Lists..."
1606: "Restart/Continue Numbering"
1607: "Ellipsis"
1608: "Em Dash"
1609: "En Dash"
1610: "Em Space"
1611: "En Space"
1612: "Tab"
1613: "Level 1"
1614: "Level 2"
1615: "Level 3"
1616: "Level 4"
1617: "Level 5"
1618: "Level 6"
1619: "Level 7"
1620: "Level 8"
1621: "Level 9"
1622: "Chapter Number"
1623: "Current Level"
1624: "Paragraph Symbol"
1625: "Section Symbol"
1626: "Bullet Character"
1627: "Hair Space"
1628: "Thin Space"
1629: "Figure Space"
1630: "Punctuation Space"
1631: "Ellipsis"
1632: "Em Dash"
1633: "En Dash"
1634: "Em Space"
1635: "En Space"
1636: "Tab"
1637: "Paragraph Symbol"
1638: "Section Symbol"
1639: "Bullet Character"
1640: "Hair Space"
1641: "Thin Space"
1642: "Figure Space"
1643: "Punctuation Space"
1644: "Object Styles"
1645: "New Object Style..."
1646: "Duplicate Object Style..."
1647: "Delete Styles..."
1648: "Redefine Style"
1649: "Style Options..."
1650: "Small Panel Rows"
1651: "Break Link to Style"
1652: "Select All Unused"
1653: "Sort by Name"
1654: "Load Object Styles..."
1655: "Clear Overrides"
1656: "Edit Style..."
1657: "Duplicate Style..."
1658: "Delete Style..."
1659: "Redefine Style"
1660: "Apply Style"
1661: "Apply Style, Clear Overrides"
1662: "Clear Overrides"
1663: "Clear Attributes Not Defined by Style"
1664: "Default Text Frame Style"
1665: "Default Graphic Frame Style"
1666: "Apply Style, Clear Attributes Not Defined by Style"
1667: "Apply Style, Clear All"
1668: "New Style Group..."
1669: "Open All Groups"
1670: "Close All Groups"
1671: "Copy to Group..."
1672: "New Group from Styles..."
1673: "Place..."
1674: "Export..."
1675: "Place from CC Libraries..."
1676: "Publish Online..."
1677: "Publish Online Dashboard..."
1678: "Import PDF Comments..."
1679: "Share for Review..."
1680: "Zoom In"
1681: "Zoom Out"
1682: "Fit Spread in Window"
1683: "Fit Page in Window"
1684: "Entire Pasteboard"
1685: "Fit Selection in Window"
1686: "Actual Size"
1687: "200% size"
1688: "400% size"
1689: "50% size"
1690: "Toggle view setting between default and preview"
1691: "Move..."
1692: "Scale..."
1693: "Rotate..."
1694: "Shear..."
1695: "Lock Zero Point"
1696: "Transform Again"
1697: "Toggle between current and previous views"
1698: "Go to Page..."
1699: "Access zoom percentage box"
[1700 … 1799]
1700: "Access page number box"
1701: "Rotate 180°"
1702: "Rotate 90° CW"
1703: "Rotate 90° CCW"
1704: "Flip Horizontal"
1705: "Scroll down one screen"
1706: "Scroll up one screen"
1707: "Previous Spread"
1708: "Next Spread"
1709: "First Spread"
1710: "Last Spread"
1711: "Selection Tool"
1712: "Direct Selection Tool"
1713: "Rotate Tool"
1714: "Scale Tool"
1715: "Hand Tool"
1716: "Shear Tool"
1717: "Normal"
1718: "Preview"
1719: "Move Guides..."
1720: "Ruler Guides..."
1721: "Select all Guides"
1722: "Transform Sequence Again"
1723: "Bleed"
1724: "Slug"
1725: "Transform Again Individually"
1726: "Transform Sequence Again Individually"
1727: "Group"
1728: "Ungroup"
1729: "Flip Vertical"
1730: "Delete All Guides on Spread"
1731: "Clear Transformations"
1732: "Redefine Scaling as 100%"
1733: "Reveal in Explorer"
1734: "Reveal in Bridge"
1735: "Hide"
1736: "Show All on Spread"
1737: "Toggle Live Edit Mode"
1738: "Left Spread"
1739: "Right Spread"
1740: "Set Presentation Background to Black"
1741: "Set Presentation Background to Gray"
1742: "Set Presentation Background to White"
1743: "Presentation"
1744: "Ruler Guide"
1745: "Liquid Guide"
1746: "Magnetic Guide"
1747: "Zone Guide"
1748: "Match Pasteboard to Theme Color"
1749: "Split Window"
1750: "Options..."
1751: "Delete Type from Path"
1752: "Type on a Path Tool"
1753: "Define..."
1754: "Print Booklet..."
1755: "Show Hidden Characters"
1756: "Move to the right one character"
1757: "Move to the left one character"
1758: "Move up one line"
1759: "Move down one line"
1760: "Move to the right one word"
1761: "Move to the left one word"
1762: "Move to the start of the line"
1763: "Move to the end of the line"
1764: "Move to the previous paragraph"
1765: "Move to the next paragraph"
1766: "Move to end of story"
1767: "Move to beginning of story"
1768: "Select one character to the right"
1769: "Select one character to the left"
1770: "Select one word to the right"
1771: "Select one word to the left"
1772: "Select to the start of the line"
1773: "Select to the end of the line"
1774: "Select one line above"
1775: "Select one line below"
1776: "Select one paragraph before"
1777: "Select one paragraph forward"
1778: "Select to end of story"
1779: "Select to beginning of story"
1780: "Delete one character to the right"
1781: "Delete one character to the left"
1782: "Discretionary Hyphen"
1783: "Forced Line Break"
1784: "Current Page Number"
1785: "Section Marker"
1786: "Nonbreaking Hyphen"
1787: "Flush Space"
1788: "Thin Space"
1789: "Figure Space"
1790: "Em Space"
1791: "En Space"
1792: "Hair Space"
1793: "Nonbreaking Space"
1794: "Bullet Character"
1795: "Copyright Symbol"
1796: "Registered Trademark Symbol"
1797: "Paragraph Symbol"
1798: "Section Symbol"
1799: "Double Left Quotation Marks"
[1800 … 1899]
1800: "Double Right Quotation Marks"
1801: "Single Left Quotation Mark"
1802: "Single Right Quotation Mark"
1803: "Ellipsis"
1804: "En Dash"
1805: "Em Dash"
1806: "Punctuation Space"
1807: "Trademark Symbol"
1808: "Apply normal"
1809: "Apply bold"
1810: "Apply italic"
1811: "Underline"
1812: "Small Caps"
1813: "All Caps"
1814: "Superscript"
1815: "Subscript"
1816: "Strikethrough"
1817: "No Break"
1818: "Ligatures"
1819: "Proportional Oldstyle"
1820: "Align left"
1821: "Align center"
1822: "Align right"
1823: "Align justify"
1824: "Align force justify"
1825: "Align to baseline grid"
1826: "Go to next frame in thread"
1827: "Go to previous frame in thread"
1828: "Go to first frame in thread"
1829: "Go to last frame in thread"
1830: "Increase point size"
1831: "Decrease point size"
1832: "Increase leading"
1833: "Decrease leading"
1834: "Increase kerning/tracking"
1835: "Decrease kerning/tracking"
1836: "Increase kerning/tracking x 5"
1837: "Decrease kerning/tracking x 5"
1838: "Increase baseline shift"
1839: "Decrease baseline shift"
1840: "Increase baseline shift x 5"
1841: "Decrease baseline shift x 5"
1842: "Increase point size x 5"
1843: "Decrease point size x 5"
1844: "Increase leading x 5"
1845: "Decrease leading x 5"
1846: "Normal horizontal text scale"
1847: "Normal vertical text scale"
1848: "Auto leading"
1849: "Recompose all stories immediately"
1850: "Update missing font list"
1851: "Insert Anchored Object/Go to Anchor Marker"
1852: "Column Break"
1853: "Frame Break"
1854: "Page Break"
1855: "Odd Page Break"
1856: "Even Page Break"
1857: "Select line"
1858: "Increase word space"
1859: "Increase word space x 5"
1860: "Decrease word space"
1861: "Decrease word space x 5"
1862: "Right Indent Tab"
1863: "Indent to Here"
1864: "Previous Page Number"
1865: "Next Page Number"
1866: "UPPERCASE"
1867: "lowercase"
1868: "Title Case"
1869: "Sentence case"
1870: "Fill with Placeholder Text"
1871: "Type Tool"
1872: "Recompose all stories"
1873: "Superscript/Superior"
1874: "Subscript/Inferior"
1875: "Ordinal"
1876: "Swash"
1877: "Fractions"
1878: "Discretionary Ligatures"
1879: "Titling Alternates"
1880: "Numerator"
1881: "Denominator"
1882: "Tabular Oldstyle"
1883: "Proportional Lining"
1884: "Tabular Lining"
1885: "Tab"
1886: "Insert Footnote"
1887: "Contextual Alternates"
1888: "All Small Caps"
1889: "Only Align First Line to Grid"
1890: "Paragraph Return"
1891: "Default Figure Style"
1892: "Balance Ragged Lines"
1893: "End Nested Style Here"
1894: "Footnote Number"
1895: "Ignore All"
1896: "Edit in Story Editor"
1897: "Ignore Optical Margin"
1898: "Increase horizontal scale"
1899: "Decrease horizontal scale"
[1900 … 1999]
1900: "Increase horizontal scale x 5"
1901: "Decrease horizontal scale x 5"
1902: "Slashed Zero"
1903: "Historical Alternates"
1904: "Delete one word to the right"
1905: "Delete one word to the left"
1906: "Check Spelling..."
1907: "Dynamic Spelling"
1908: "Spelling..."
1909: "Autocorrect"
1910: "Autocorrect..."
1911: "Bullet Character"
1912: "Caret Character"
1913: "Copyright Symbol"
1914: "Ellipsis"
1915: "Paragraph Symbol"
1916: "Registered Trademark Symbol"
1917: "Section Symbol"
1918: "Trademark Symbol"
1919: "Section Marker"
1920: "Current Page Number"
1921: "Next Page Number"
1922: "Previous Page Number"
1923: "[[=a=]]"
1924: "Open Parenthesis Character"
1925: "Close Parenthesis Character"
1926: "Open Brace Character"
1927: "Close Brace Character"
1928: "Open Bracket Character"
1929: "Close Bracket Character"
1930: "Any Word Character"
1931: "Index Marker"
1932: "Nonbreaking Space (Fixed Width)"
1933: "Nonbreaking Space (Fixed Width)"
1934: "Running Header (Character Style)"
1935: "Non-joiner"
1936: "Non-joiner"
1937: "Discretionary Line Break"
1938: "Discretionary Line Break"
1939: "Nonbreaking Space (Fixed Width)"
1940: "Nonbreaking Space (Fixed Width)"
1941: "Non-joiner"
1942: "Non-joiner"
1943: "Current Page Number"
1944: "Next Page Number"
1945: "Previous Page Number"
1946: "Standard Carriage Return"
1947: "Column Break"
1948: "Frame Break"
1949: "Page Break"
1950: "Odd Page Break"
1951: "Even Page Break"
1952: "Last Page Number"
1953: "Chapter Number"
1954: "Creation Date"
1955: "Modification Date"
1956: "Output Date"
1957: "File Name"
1958: "Running Header (Paragraph Style)"
1959: "Running Header (Character Style)"
1960: "Custom Text"
1961: "Backslash Character"
1962: "Word Boundary"
1963: "Standard Carriage Return"
1964: "Column Break"
1965: "Frame Break"
1966: "Page Break"
1967: "Odd Page Break"
1968: "Even Page Break"
1969: "Positive Lookbehind"
1970: "Negative Lookbehind"
1971: "Positive Lookahead"
1972: "Negative Lookahead"
1973: "Case-insensitive On"
1974: "Case-insensitive Off"
1975: "Multiline On"
1976: "Multiline Off"
1977: "Single-line On"
1978: "Single-line Off"
1979: "[[:alnum:]]"
1980: "[[:alpha:]]"
1981: "[[:digit:]]"
1982: "[[:lower:]]"
1983: "[[:punct:]]"
1984: "[[:space:]]"
1985: "[[:upper:]]"
1986: "[[:word:]]"
1987: "[[:xdigit:]]"
1988: "Metadata Caption"
1989: "Em Dash"
1990: "En Dash"
1991: "Discretionary Hyphen"
1992: "Nonbreaking Hyphen"
1993: "Em Space"
1994: "En Space"
1995: "Flush Space"
1996: "Hair Space"
1997: "Nonbreaking Space"
1998: "Thin Space"
1999: "Figure Space"
[2000 … 2099]
2000: "Punctuation Space"
2001: "Double Left Quotation Mark"
2002: "Double Right Quotation Mark"
2003: "Single Left Quotation Mark"
2004: "Single Right Quotation Mark"
2005: "Right Indent Tab"
2006: "Indent to Here"
2007: "Third Space"
2008: "Third Space"
2009: "Third Space"
2010: "Third Space"
2011: "Quarter Space"
2012: "Quarter Space"
2013: "Quarter Space"
2014: "Quarter Space"
2015: "Sixth Space"
2016: "Sixth Space"
2017: "Sixth Space"
2018: "Sixth Space"
2019: "End Nested Style Here"
2020: "Clipboard Contents, Formatted"
2021: "Clipboard Contents, Unformatted"
2022: "Any Variable"
2023: "Straight Double Quotation Marks"
2024: "Straight Single Quotation Mark (Apostrophe)"
2025: "Discretionary Line Break"
2026: "Discretionary Line Break"
2027: "Include Character Styles (c:)"
2028: "Include Paragraph Styles (p:)"
2029: "Include Object Styles (o:)"
2030: "Include Menu Commands (m:)"
2031: "Show Hidden Menu Commands"
2032: "Include Scripts (s:)"
2033: "Load Glyph in Find"
2034: "Load Glyph in Change"
2035: "Load Selected Glyph in Find"
2036: "Load Selected Glyph in Change"
2037: "GREP Load Find with selected text"
2038: "GREP Find Next"
2039: "GREP Load Find and Find Next instance"
2040: "GREP Replace with Change To text and Find Next"
2041: "GREP Replace with Change To text"
2042: "GREP Load Replace with selected text"
2043: "Toggle search direction"
2044: "Endnote Reference Marker"
2045: "Endnote Reference Marker"
2046: "Style Group Options..."
2047: "Duplicate Group..."
2048: "Delete Group..."
2049: "Copy to Group..."
2050: "New Group from Styles..."
2051: "New Object Style..."
2052: "Clear Overrides When Applying Style"
2053: "Edit All Export Tags..."
2054: "New Table Style..."
2055: "Table Styles"
2056: "Duplicate Style..."
2057: "Delete Style"
2058: "Cell Styles"
2059: "Redefine Style"
2060: "Style Options..."
2061: "Clear Overrides"
2062: "Break Link to Style"
2063: "Load Table Styles..."
2064: "Select All Unused"
2065: "Sort by Name"
2066: "Small Panel Rows"
2067: "Edit Style..."
2068: "Duplicate Style..."
2069: "Delete Style..."
2070: "New Group from Styles..."
2071: "Apply Style"
2072: "Apply Style, Clear Overrides"
2073: "New Cell Style..."
2074: "Delete Style"
2075: "Redefine Style"
2076: "Style Options..."
2077: "Clear Overrides"
2078: "Break Link to Style"
2079: "Load Cell Styles..."
2080: "Select All Unused"
2081: "Apply Style, Clear All"
2082: "Sort by Name"
2083: "Small Panel Rows"
2084: "Edit Style..."
2085: "Duplicate Style..."
2086: "Delete Style..."
2087: "New Group from Styles..."
2088: "Apply Style"
2089: "Duplicate Style..."
2090: "New Style Group..."
2091: "New Style Group..."
2092: "Open All Style Groups"
2093: "Open All Style Groups"
2094: "Close All Style Groups"
2095: "Close All Style Groups"
2096: "Copy to Group..."
2097: "Copy to Group..."
2098: "Redefine Style"
2099: "Redefine Style"
[2100 … 2199]
2100: "Include Table Styles (t:)"
2101: "Include Cell Styles (e:)"
2102: "Style Group Options..."
2103: "Style Group Options..."
2104: "Duplicate Style Group"
2105: "Duplicate Style Group"
2106: "Delete Style Group"
2107: "Delete Style Group"
2108: "Apply Style, Clear Cell Styles"
2109: "Apply Style, Clear All"
2110: "Load Table and Cell Styles..."
2111: "Load Table and Cell Styles..."
2112: "New Table Style..."
2113: "New Cell Style..."
2114: "New Group from Styles..."
2115: "New Group from Styles..."
2116: "Copy to Group..."
2117: "Copy to Group..."
2118: "Apply Style, Clear Attributes Not Defined by Style"
2119: "Clear Attributes Not Defined by Style"
2120: "Links"
2121: "Update Link"
2122: "Embed Link"
2123: "Copy Platform Style Path"
2124: "Edit Original"
2125: "Panel Options..."
2126: "Copy Link(s) To..."
2127: "Auto-Size Link Information"
2128: "Show Link Information Pane"
2129: "Copy All Link Information"
2130: "Copy Info for Selected Links"
2131: "Reveal in Explorer"
2132: "XMP File Info..."
2133: "Copy Full Path"
2134: "Other..."
2135: "Go To Link"
2136: "Reveal in Explorer"
2137: "Reveal in Bridge"
2138: "Hide this Column"
2139: "Update All Links"
2140: "Search for Missing Links"
2141: "Hide Info Thumbnail"
2142: "Hide Thumbnail"
2143: "Relink..."
2144: "Caption Setup..."
2145: "Generate Live Captions"
2146: "Generate Live Caption"
2147: "Reveal in Bridge"
2148: "Edit Original"
2149: "Relink to Folder..."
2150: "Copy Info Field"
2151: "Relink File Extension..."
2152: "Generate Static Caption"
2153: "Generate Static Captions"
2154: "Convert to Static Caption"
2155: "Go To Source"
2156: "Go To Source"
2157: "Reveal in CC Libraries"
2158: "Reveal in CC Libraries"
2159: "Relink from CC Libraries..."
2160: "License Image..."
2161: "Relink Image from Props Panel"
2162: "Embed Image from Props Panel"
2163: "Update Image from Props Panel"
2164: "Unlink File from Props Panel"
2165: "Relink from Adobe Asset Link..."
2166: "Replace FPO With Original..."
2167: "Replace all FPOs With Originals..."
2168: "Download Original"
2169: "Download all Originals"
2170: "Relink..."
2171: "Conditional Text"
2172: "New Condition..."
2173: "Delete \"^1\""
2174: "Edit \"^1\"..."
2175: "Unapply \"^1\""
2176: "Load Conditions..."
2177: "Load Conditions and Sets..."
2178: "Include Conditions (ct:)"
2179: "Delete Condition..."
2180: "Condition Options..."
2181: "Show Indicators on Conditional Text"
2182: "Show All"
2183: "Hide All"
2184: "Show and Print Indicators on Conditional Text"
2185: "Hide Indicators on Conditional Text"
2186: "Show Options"
2187: "Select All Unused"
2188: "Preflight"
2189: "Preflight Options..."
2190: "Define Profiles..."
2191: "Save Report..."
2192: "Enable Preflight for All Documents"
2193: "Load Profile..."
2194: "Embed/Unembed Profile"
2195: "Export Profile..."
2196: "Preflight Document"
2197: "Enable Preflight for All Documents"
2198: "25"
2199: "50"
[2200 … 2299]
2200: "100"
2201: "No Limit"
2202: "Page Transitions"
2203: "Choose..."
2204: "Apply to All Spreads"
2205: "Clear All"
2206: "Animation"
2207: "Save"
2208: "Timing"
2209: "Reassign to On Page Load"
2210: "Reassign to On Page Click"
2211: "Remove Item"
2212: "Liquid Layout"
2213: "Liquid Layout"
2214: "On Page Load"
2215: "On Page Click"
2216: "On Click (Self)"
2217: "On Roll Over (Self)"
2218: "On Button Event"
2219: "Manage Presets..."
2220: "Convert to Motion Path"
2221: "Preview Spread: EPUB"
2222: "Media"
2223: "EPUB Interactivity Preview"
2224: "PDF Comments"
2225: "Learn"
2226: "Tool Hints"
2227: "CC Libraries"
2228: "Gap Tool"
2229: "Show Style Name Column"
2230: "Show Paragraph Break Marks"
2231: "Show Depth Ruler"
2232: "Collapse All Footnotes"
2233: "Arrange by rows"
2234: "Arrange by columns"
2235: "Load 1st Default Workspace"
2236: "Load 2nd Default Workspace"
2237: "Load 3rd Default Workspace"
2238: "Load 4th Default Workspace"
2239: "Load 5th Default Workspace"
2240: "Load 6th Default Workspace"
2241: "Load 7th Default Workspace"
2242: "Load 8th Default Workspace"
2243: "Load 9th Default Workspace"
2244: "Load 1st User Workspace"
2245: "Load 2nd User Workspace"
2246: "Load 3rd User Workspace"
2247: "Load 4th User Workspace"
2248: "Load 5th User Workspace"
2249: "Load 6th User Workspace"
2250: "Load 7th User Workspace"
2251: "Load 8th User Workspace"
2252: "Load 9th User Workspace"
2253: "Hide Anchored Object Control"
2254: "Hide Conveyor"
2255: "Migrate previous Local Settings..."
2256: "Touch Workspace..."
2257: "Hide Stock Purchase Badge"
2258: "InDesign Online..."
2259: "Tile All Vertically"
2260: "Tile All Horizontally"
2261: "2-up Vertical"
2262: "2-up Horizontal"
2263: "3-up Stacked"
2264: "3-up Vertical"
2265: "3-up Horizontal"
2266: "4-up"
2267: "4-up Stacked"
2268: "4-up Vertical"
2269: "4-up Horizontal"
2270: "5-up Stacked"
2271: "6-up"
2272: "6-up Stacked"
2273: "User Interface Scaling..."
2274: "Style Packs"
2275: "Plugins Panel"
2276: "Review"
2277: "Articles"
2278: "New Article..."
2279: "Add Selection to Selected Articles"
2280: "Delete"
2281: "Go to Item"
2282: "Add Document Content to Selected Articles"
2283: "Use for Tagging Order in Tagged PDF"
2284: "Article Options..."
2285: "Place and Link"
2286: "Show Link Badge"
2287: "Link Options..."
2288: "Toggle Content Collector and Content Placer"
2289: "Overlays"
2290: "Application"
2291: "Community"
2292: "User"
2293: "acrobatjavascripttest.jsx"
2294: "Indic Preferences.js"
2295: "Samples"
2296: "JavaScript"
2297: "UXPScript"
2298: "VBScript"
2299: "AddGuides.idjs"
[2300 … 2347]
2300: "AddPoints.idjs"
2301: "AddQRCode.idjs"
2302: "AdjustPageItems.idjs"
2303: "AlignToPage.idjs"
2304: "AnimationEncyclopedia.idjs"
2305: "BreakFrame.idjs"
2306: "CornerEffects.idjs"
2307: "CreateCharacterStyle.idjs"
2308: "CropMarks.idjs"
2309: "ExportAllStories.idjs"
2310: "ImageCatalog.idjs"
2311: "MakeGrid.idjs"
2312: "Neon.idjs"
2313: "PathEffects.idjs"
2314: "SelectObjects.idjs"
2315: "SortParagraphs.idjs"
2316: "SplitStory.idjs"
2317: "TabUtilities.idjs"
2318: "AddGuides.vbs"
2319: "AddPoints.vbs"
2320: "AdjustPageItems.vbs"
2321: "AlignToPage.vbs"
2322: "AnimationEncyclopedia.vbs"
2323: "BreakFrame.vbs"
2324: "CornerEffects.vbs"
2325: "CreateCharacterStyle.vbs"
2326: "CropMarks.vbs"
2327: "ExportAllStories.vbs"
2328: "FindChangeByList.vbs"
2329: "FindChangeSupport"
2330: "ImageCatalog.vbs"
2331: "MakeGrid.vbs"
2332: "Neon.vbs"
2333: "PathEffects.vbs"
2334: "PlaceMultipagePDF.vbs"
2335: "SelectObjects.vbs"
2336: "SortParagraphs.vbs"
2337: "SplitStory.vbs"
2338: "TabUtilities.vbs"
2339: "BreakTextThread.jsx"
2340: "ClearStyleOverrides.jsx"
2341: "InsertTypographerQuote"
2342: "SnapMarginsToTextFrame.jsx"
2343: "UnicodeInjector.jsx"
2344: "Convert URLs to Hyperlinks..."
2345: "Convert Footnotes and Endnotes..."
2346: "PDF Options..."
2347: "Video from URL..."
length: 2348
parent: (...)
properties: (...)
title: (...)
Copy link to clipboard
Copied
Here is how you call a menu using UXP!
var myMenuItem = app.menuActions.itemByName("Convert to Button")
myMenuItem.invoke()
Find more inspiration, events, and resources on the new Adobe Community
Explore Now