├── .gitignore ├── LICENSE ├── README.md ├── jsx ├── ArtboardFloodFill.jsx ├── ArtboardRectGuides.jsx ├── ArtboardToAi.jsx ├── ArtboardToPDF.jsx ├── ArtboardsToAi.jsx ├── ArtboardsToPDF.jsx ├── ColorRandomly.jsx ├── EditPointsOnly.jsx ├── ExportPrintCutPDFs.jsx ├── FontVisualizer.jsx ├── MatchObjects.jsx ├── OffsetObjects.jsx ├── ReleaseAllContainers.jsx ├── RemoveBezierHandles.jsx ├── RenameLayers.jsx ├── RepeatAfterMe.jsx ├── ScreenSepMarks.jsx ├── SelectObjectsByName.jsx └── ShowHideLayers.jsx ├── snippets ├── AddGuideCrosshair.jsx ├── AddPointsToAPathExample.jsx ├── AiCopyToClipboardViaPhotoshop.jsx ├── AltCalcPoints.jsx ├── ButtonOnClickFromPalette.jsx ├── CollectAllLayers.jsx ├── ColorPickerDialogExample.jsx ├── ColorWithSpotIfExistsElseMake.jsx ├── CompareLayerToLayers.jsx ├── CompoundPathPlay.jsx ├── DiePathDimensions.jsx ├── DisableButtonUntilSelection.jsx ├── DrawCrossMarkAtHorizontalLineSegments.jsx ├── DrawScannableDatamatrixBarcode.jsx ├── DuplicateFile.jsx ├── ExampleProgressDialog.jsx ├── ExportArtboardJPEGSWithNameOnly.jsx ├── ExportArtboardRangeToPDF.jsx ├── ExportArtboardSetsToPDF.jsx ├── ExportArtboardWithNameOnly.jsx ├── ExportArtboardsToPDFandJPEG.jsx ├── FileModifiedDate.jsx ├── FileProperties.jsx ├── FolderProperties.jsx ├── GapOffset.jsx ├── GetVisibleItemsFromArtboards.jsx ├── GroupLayersOfSameName.jsx ├── GroupObjectsThenGapOffset.jsx ├── MakeDocsFromExcelCSV.jsx ├── MakeTheseDocs.csv ├── MarkCircleCentersWithCrosshair.jsx ├── MatchTopObjectToBottom.jsx ├── MoveItemsWithDimensionColorToNewLayer.jsx ├── PrintColorSeps.jsx ├── RGBSwatchGroupFromCSV.jsx ├── RecursivelyRenameLayers.jsx ├── RenameArtboards.jsx ├── ReplaceWordMatchStyle.jsx ├── SaveClipboardImageAsJPEG.jsx ├── SavePrefsFromDialog.jsx ├── ScriptUISwatches.jsx ├── ScriptUtils.jsx ├── SearchableDocumentSymbolsDialog.jsx ├── SettingsWin.jsx ├── StrokeTextRange.jsx ├── TestAiMenuAndToolCommands.jsx ├── ToggleExternalJSXWarning.jsx ├── UngroupUnclipUncompoundAlt.jsx ├── scale_apply.jsx └── scale_get.jsx └── utils ├── ConvertToPoints.jsx ├── DocumentAiVersion.jsx ├── DrawVisibleBounds.jsx ├── EditTextArrowAdjustmentsWeight.jsx ├── GetObjectPlacementInfo.jsx ├── GetSelectionBounds.jsx ├── GetVisibleBounds.jsx ├── GroupObjectsByRow.jsx ├── Logger.jsx ├── ObjectPropertiesToText.jsx ├── OpenURL.jsx ├── OverwriteFileProtection.jsx ├── ParseNumberInput.jsx ├── PathItemPlus.jsx ├── Prefs.jsx ├── ReadJSONData.jsx ├── ReleaseGroup.jsx ├── ResolveBaseScriptFromStack.jsx ├── SavePresetDialog.jsx ├── SetupFileObject.jsx ├── SetupFolderObject.jsx ├── WriteJSONData.jsx ├── WriteTextToDoc.jsx └── WriteTextToFile.jsx /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | _*.jsx* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/README.md -------------------------------------------------------------------------------- /jsx/ArtboardFloodFill.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ArtboardFloodFill.jsx -------------------------------------------------------------------------------- /jsx/ArtboardRectGuides.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ArtboardRectGuides.jsx -------------------------------------------------------------------------------- /jsx/ArtboardToAi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ArtboardToAi.jsx -------------------------------------------------------------------------------- /jsx/ArtboardToPDF.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ArtboardToPDF.jsx -------------------------------------------------------------------------------- /jsx/ArtboardsToAi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ArtboardsToAi.jsx -------------------------------------------------------------------------------- /jsx/ArtboardsToPDF.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ArtboardsToPDF.jsx -------------------------------------------------------------------------------- /jsx/ColorRandomly.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ColorRandomly.jsx -------------------------------------------------------------------------------- /jsx/EditPointsOnly.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/EditPointsOnly.jsx -------------------------------------------------------------------------------- /jsx/ExportPrintCutPDFs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ExportPrintCutPDFs.jsx -------------------------------------------------------------------------------- /jsx/FontVisualizer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/FontVisualizer.jsx -------------------------------------------------------------------------------- /jsx/MatchObjects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/MatchObjects.jsx -------------------------------------------------------------------------------- /jsx/OffsetObjects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/OffsetObjects.jsx -------------------------------------------------------------------------------- /jsx/ReleaseAllContainers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ReleaseAllContainers.jsx -------------------------------------------------------------------------------- /jsx/RemoveBezierHandles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/RemoveBezierHandles.jsx -------------------------------------------------------------------------------- /jsx/RenameLayers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/RenameLayers.jsx -------------------------------------------------------------------------------- /jsx/RepeatAfterMe.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/RepeatAfterMe.jsx -------------------------------------------------------------------------------- /jsx/ScreenSepMarks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ScreenSepMarks.jsx -------------------------------------------------------------------------------- /jsx/SelectObjectsByName.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/SelectObjectsByName.jsx -------------------------------------------------------------------------------- /jsx/ShowHideLayers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/jsx/ShowHideLayers.jsx -------------------------------------------------------------------------------- /snippets/AddGuideCrosshair.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/AddGuideCrosshair.jsx -------------------------------------------------------------------------------- /snippets/AddPointsToAPathExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/AddPointsToAPathExample.jsx -------------------------------------------------------------------------------- /snippets/AiCopyToClipboardViaPhotoshop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/AiCopyToClipboardViaPhotoshop.jsx -------------------------------------------------------------------------------- /snippets/AltCalcPoints.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/AltCalcPoints.jsx -------------------------------------------------------------------------------- /snippets/ButtonOnClickFromPalette.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ButtonOnClickFromPalette.jsx -------------------------------------------------------------------------------- /snippets/CollectAllLayers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/CollectAllLayers.jsx -------------------------------------------------------------------------------- /snippets/ColorPickerDialogExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ColorPickerDialogExample.jsx -------------------------------------------------------------------------------- /snippets/ColorWithSpotIfExistsElseMake.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ColorWithSpotIfExistsElseMake.jsx -------------------------------------------------------------------------------- /snippets/CompareLayerToLayers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/CompareLayerToLayers.jsx -------------------------------------------------------------------------------- /snippets/CompoundPathPlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/CompoundPathPlay.jsx -------------------------------------------------------------------------------- /snippets/DiePathDimensions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/DiePathDimensions.jsx -------------------------------------------------------------------------------- /snippets/DisableButtonUntilSelection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/DisableButtonUntilSelection.jsx -------------------------------------------------------------------------------- /snippets/DrawCrossMarkAtHorizontalLineSegments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/DrawCrossMarkAtHorizontalLineSegments.jsx -------------------------------------------------------------------------------- /snippets/DrawScannableDatamatrixBarcode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/DrawScannableDatamatrixBarcode.jsx -------------------------------------------------------------------------------- /snippets/DuplicateFile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/DuplicateFile.jsx -------------------------------------------------------------------------------- /snippets/ExampleProgressDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ExampleProgressDialog.jsx -------------------------------------------------------------------------------- /snippets/ExportArtboardJPEGSWithNameOnly.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ExportArtboardJPEGSWithNameOnly.jsx -------------------------------------------------------------------------------- /snippets/ExportArtboardRangeToPDF.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ExportArtboardRangeToPDF.jsx -------------------------------------------------------------------------------- /snippets/ExportArtboardSetsToPDF.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ExportArtboardSetsToPDF.jsx -------------------------------------------------------------------------------- /snippets/ExportArtboardWithNameOnly.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ExportArtboardWithNameOnly.jsx -------------------------------------------------------------------------------- /snippets/ExportArtboardsToPDFandJPEG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ExportArtboardsToPDFandJPEG.jsx -------------------------------------------------------------------------------- /snippets/FileModifiedDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/FileModifiedDate.jsx -------------------------------------------------------------------------------- /snippets/FileProperties.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/FileProperties.jsx -------------------------------------------------------------------------------- /snippets/FolderProperties.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/FolderProperties.jsx -------------------------------------------------------------------------------- /snippets/GapOffset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/GapOffset.jsx -------------------------------------------------------------------------------- /snippets/GetVisibleItemsFromArtboards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/GetVisibleItemsFromArtboards.jsx -------------------------------------------------------------------------------- /snippets/GroupLayersOfSameName.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/GroupLayersOfSameName.jsx -------------------------------------------------------------------------------- /snippets/GroupObjectsThenGapOffset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/GroupObjectsThenGapOffset.jsx -------------------------------------------------------------------------------- /snippets/MakeDocsFromExcelCSV.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/MakeDocsFromExcelCSV.jsx -------------------------------------------------------------------------------- /snippets/MakeTheseDocs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/MakeTheseDocs.csv -------------------------------------------------------------------------------- /snippets/MarkCircleCentersWithCrosshair.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/MarkCircleCentersWithCrosshair.jsx -------------------------------------------------------------------------------- /snippets/MatchTopObjectToBottom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/MatchTopObjectToBottom.jsx -------------------------------------------------------------------------------- /snippets/MoveItemsWithDimensionColorToNewLayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/MoveItemsWithDimensionColorToNewLayer.jsx -------------------------------------------------------------------------------- /snippets/PrintColorSeps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/PrintColorSeps.jsx -------------------------------------------------------------------------------- /snippets/RGBSwatchGroupFromCSV.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/RGBSwatchGroupFromCSV.jsx -------------------------------------------------------------------------------- /snippets/RecursivelyRenameLayers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/RecursivelyRenameLayers.jsx -------------------------------------------------------------------------------- /snippets/RenameArtboards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/RenameArtboards.jsx -------------------------------------------------------------------------------- /snippets/ReplaceWordMatchStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ReplaceWordMatchStyle.jsx -------------------------------------------------------------------------------- /snippets/SaveClipboardImageAsJPEG.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/SaveClipboardImageAsJPEG.jsx -------------------------------------------------------------------------------- /snippets/SavePrefsFromDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/SavePrefsFromDialog.jsx -------------------------------------------------------------------------------- /snippets/ScriptUISwatches.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ScriptUISwatches.jsx -------------------------------------------------------------------------------- /snippets/ScriptUtils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ScriptUtils.jsx -------------------------------------------------------------------------------- /snippets/SearchableDocumentSymbolsDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/SearchableDocumentSymbolsDialog.jsx -------------------------------------------------------------------------------- /snippets/SettingsWin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/SettingsWin.jsx -------------------------------------------------------------------------------- /snippets/StrokeTextRange.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/StrokeTextRange.jsx -------------------------------------------------------------------------------- /snippets/TestAiMenuAndToolCommands.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/TestAiMenuAndToolCommands.jsx -------------------------------------------------------------------------------- /snippets/ToggleExternalJSXWarning.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/ToggleExternalJSXWarning.jsx -------------------------------------------------------------------------------- /snippets/UngroupUnclipUncompoundAlt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/UngroupUnclipUncompoundAlt.jsx -------------------------------------------------------------------------------- /snippets/scale_apply.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/scale_apply.jsx -------------------------------------------------------------------------------- /snippets/scale_get.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/snippets/scale_get.jsx -------------------------------------------------------------------------------- /utils/ConvertToPoints.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/ConvertToPoints.jsx -------------------------------------------------------------------------------- /utils/DocumentAiVersion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/DocumentAiVersion.jsx -------------------------------------------------------------------------------- /utils/DrawVisibleBounds.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/DrawVisibleBounds.jsx -------------------------------------------------------------------------------- /utils/EditTextArrowAdjustmentsWeight.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/EditTextArrowAdjustmentsWeight.jsx -------------------------------------------------------------------------------- /utils/GetObjectPlacementInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/GetObjectPlacementInfo.jsx -------------------------------------------------------------------------------- /utils/GetSelectionBounds.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/GetSelectionBounds.jsx -------------------------------------------------------------------------------- /utils/GetVisibleBounds.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/GetVisibleBounds.jsx -------------------------------------------------------------------------------- /utils/GroupObjectsByRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/GroupObjectsByRow.jsx -------------------------------------------------------------------------------- /utils/Logger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/Logger.jsx -------------------------------------------------------------------------------- /utils/ObjectPropertiesToText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/ObjectPropertiesToText.jsx -------------------------------------------------------------------------------- /utils/OpenURL.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/OpenURL.jsx -------------------------------------------------------------------------------- /utils/OverwriteFileProtection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/OverwriteFileProtection.jsx -------------------------------------------------------------------------------- /utils/ParseNumberInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/ParseNumberInput.jsx -------------------------------------------------------------------------------- /utils/PathItemPlus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/PathItemPlus.jsx -------------------------------------------------------------------------------- /utils/Prefs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/Prefs.jsx -------------------------------------------------------------------------------- /utils/ReadJSONData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/ReadJSONData.jsx -------------------------------------------------------------------------------- /utils/ReleaseGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/ReleaseGroup.jsx -------------------------------------------------------------------------------- /utils/ResolveBaseScriptFromStack.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/ResolveBaseScriptFromStack.jsx -------------------------------------------------------------------------------- /utils/SavePresetDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/SavePresetDialog.jsx -------------------------------------------------------------------------------- /utils/SetupFileObject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/SetupFileObject.jsx -------------------------------------------------------------------------------- /utils/SetupFolderObject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/SetupFolderObject.jsx -------------------------------------------------------------------------------- /utils/WriteJSONData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/WriteJSONData.jsx -------------------------------------------------------------------------------- /utils/WriteTextToDoc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/WriteTextToDoc.jsx -------------------------------------------------------------------------------- /utils/WriteTextToFile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbduncan/illustrator-scripts/HEAD/utils/WriteTextToFile.jsx --------------------------------------------------------------------------------