├── .gitignore ├── ArcCorrection.jsx ├── ArcCorrectionFlip.jsx ├── ClosePts.js ├── CutAtSelectedAnchors.jsx ├── Find_Replace_Graphics.js ├── README.md ├── RoundAnyCorner.jsx ├── Save-All.jsx ├── ZoomAndCenterSelection.js ├── alignTextFieldCenter.jsx ├── alignTextFieldLeft.jsx ├── alignTextFieldRight.jsx ├── apply_Style_With_RegExp.jsx ├── batchTextEdit.jsx ├── docs ├── License │ ├── LICENSE-shspage.txt │ └── other-authors.txt ├── cheatsheet │ ├── ai-shortcut-cheatsheet-mac.ai │ └── ai-shortcut-cheatsheet-win.ai ├── shortcuts │ ├── Ai-CS6-CC2018-shortcuts.json │ └── illustrator-shortcuts-win.ahk └── test │ └── Ilustrator-script-tests.ai ├── findTextBySizeOrFontname.jsx ├── fixTextLeading.jsx ├── fontSizeIncrement.jsx ├── stroke_minus.js ├── stroke_plus.js ├── wr-reversepathdirection.js └── wr-saveandcloseall.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /ArcCorrection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/ArcCorrection.jsx -------------------------------------------------------------------------------- /ArcCorrectionFlip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/ArcCorrectionFlip.jsx -------------------------------------------------------------------------------- /ClosePts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/ClosePts.js -------------------------------------------------------------------------------- /CutAtSelectedAnchors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/CutAtSelectedAnchors.jsx -------------------------------------------------------------------------------- /Find_Replace_Graphics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/Find_Replace_Graphics.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/README.md -------------------------------------------------------------------------------- /RoundAnyCorner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/RoundAnyCorner.jsx -------------------------------------------------------------------------------- /Save-All.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/Save-All.jsx -------------------------------------------------------------------------------- /ZoomAndCenterSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/ZoomAndCenterSelection.js -------------------------------------------------------------------------------- /alignTextFieldCenter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/alignTextFieldCenter.jsx -------------------------------------------------------------------------------- /alignTextFieldLeft.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/alignTextFieldLeft.jsx -------------------------------------------------------------------------------- /alignTextFieldRight.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/alignTextFieldRight.jsx -------------------------------------------------------------------------------- /apply_Style_With_RegExp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/apply_Style_With_RegExp.jsx -------------------------------------------------------------------------------- /batchTextEdit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/batchTextEdit.jsx -------------------------------------------------------------------------------- /docs/License/LICENSE-shspage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/docs/License/LICENSE-shspage.txt -------------------------------------------------------------------------------- /docs/License/other-authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/docs/License/other-authors.txt -------------------------------------------------------------------------------- /docs/cheatsheet/ai-shortcut-cheatsheet-mac.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/docs/cheatsheet/ai-shortcut-cheatsheet-mac.ai -------------------------------------------------------------------------------- /docs/cheatsheet/ai-shortcut-cheatsheet-win.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/docs/cheatsheet/ai-shortcut-cheatsheet-win.ai -------------------------------------------------------------------------------- /docs/shortcuts/Ai-CS6-CC2018-shortcuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/docs/shortcuts/Ai-CS6-CC2018-shortcuts.json -------------------------------------------------------------------------------- /docs/shortcuts/illustrator-shortcuts-win.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/docs/shortcuts/illustrator-shortcuts-win.ahk -------------------------------------------------------------------------------- /docs/test/Ilustrator-script-tests.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/docs/test/Ilustrator-script-tests.ai -------------------------------------------------------------------------------- /findTextBySizeOrFontname.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/findTextBySizeOrFontname.jsx -------------------------------------------------------------------------------- /fixTextLeading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/fixTextLeading.jsx -------------------------------------------------------------------------------- /fontSizeIncrement.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/fontSizeIncrement.jsx -------------------------------------------------------------------------------- /stroke_minus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/stroke_minus.js -------------------------------------------------------------------------------- /stroke_plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/stroke_plus.js -------------------------------------------------------------------------------- /wr-reversepathdirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/wr-reversepathdirection.js -------------------------------------------------------------------------------- /wr-saveandcloseall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesw05/illustrator-shortcuts/HEAD/wr-saveandcloseall.js --------------------------------------------------------------------------------