├── .eslintrc ├── .gitattributes ├── .gitignore ├── .img ├── alignto.png ├── fit.png ├── labelpage.png ├── mg5hw0.png ├── mg5hw10.png ├── paragraphalign-C.png ├── paragraphalign-L.png ├── paragraphalign-R.png ├── proxy.png ├── qr-ondoc.png ├── qr-onfile.png ├── script-labelpage.png ├── script-qr.png ├── script-quickexport-batch.png ├── script-quickexport-legend.svg ├── script-quickexport.png ├── script-showhideoptions.png ├── textautosize-BC.png ├── textautosize-BL.png ├── textautosize-BR.png ├── textautosize-C.png ├── textautosize-CL.png ├── textautosize-CR.png ├── textautosize-TC.png ├── textautosize-TL.png ├── textautosize-TR.png ├── tsv.png ├── verticaljustification-B.png ├── verticaljustification-C.png └── verticaljustification-T.png ├── CHANGELOG.md ├── Document ├── Assets │ ├── AddLayers.jsx │ ├── AddSwatches.jsx │ ├── DumpLayers.jsx │ ├── DumpLinks.jsx │ ├── DumpSwatches.jsx │ ├── ReplaceFonts.jsx │ ├── ReplaceLinks.jsx │ ├── ReplaceTextSnippets.jsx │ └── ResetLayers.jsx ├── Export │ ├── DNPLayersHide.jsx │ ├── DNPLayersShow.jsx │ ├── PrepareForExport.jsx │ └── QuickExport.jsx ├── Housekeeping │ ├── DocCleanup.jsx │ ├── OverrideMasterItems.jsx │ ├── RemoveScriptLabels.jsx │ ├── RemoveStyles.jsx │ ├── SetDefaultPrefs.jsx │ └── SwatchesCleanup.jsx ├── Information │ ├── LabelPage.jsx │ ├── LabelPageRatios.jsx │ ├── ShowFonts.jsx │ ├── ShowProfiles.jsx │ └── ShowProperties.jsx ├── Layout │ ├── GuidesAdd.jsx │ ├── GuidesCollect.jsx │ ├── GuidesDelete.jsx │ ├── MarkSafetyArea.jsx │ ├── MarkVisibleArea.jsx │ ├── PageMarginsFromScriptName.jsx │ ├── PageMarginsFromSelection.jsx │ ├── PageSizeFromFilename.jsx │ ├── PageSizeFromMargins.jsx │ └── PageSizeFromSelection.jsx ├── Pagination │ ├── JoinDocs.jsx │ ├── LayersToSpreads.jsx │ ├── ShowOrHideOptions.jsx │ ├── SplitDocBySpreads.jsx │ └── SplitSpreadsByOptions.jsx └── Zoom │ ├── TileAll.jsx │ ├── ZoomTo300Percent.jsx │ ├── ZoomToSelection.jsx │ └── ZoomToSpreads.jsx ├── FILES.md ├── LICENSE.txt ├── NEWS.md ├── Objects ├── Align │ ├── AlignToB.jsx │ ├── AlignToBL.jsx │ ├── AlignToBR.jsx │ ├── AlignToC.jsx │ ├── AlignToL.jsx │ ├── AlignToR.jsx │ ├── AlignToT.jsx │ ├── AlignToTL.jsx │ ├── AlignToTR.jsx │ ├── ResetAlignTo.jsx │ └── ToggleAlignTo.jsx ├── Clip │ ├── Clip.jsx │ └── ClipRelease.jsx ├── Fit │ ├── FitToPage.jsx │ ├── FitToPageBleed.jsx │ ├── FitToPageBleedForced.jsx │ ├── FitToPageForced.jsx │ ├── FitToPageMargins.jsx │ ├── FitToPageMarginsForced.jsx │ ├── FitToPageVisibleArea.jsx │ ├── FitToPageVisibleAreaForced.jsx │ ├── FitToSpread.jsx │ ├── FitToSpreadBleed.jsx │ ├── FitToSpreadBleedForced.jsx │ ├── FitToSpreadForced.jsx │ ├── FitToSpreadMargins.jsx │ ├── FitToSpreadMarginsForced.jsx │ ├── FitToSpreadVisibleArea.jsx │ ├── FitToSpreadVisibleAreaForced.jsx │ └── TextAutosize.jsx ├── Other │ └── OffsetPaths.jsx ├── Proxy │ ├── SetRefPointB.jsx │ ├── SetRefPointBL.jsx │ ├── SetRefPointBR.jsx │ ├── SetRefPointC.jsx │ ├── SetRefPointL.jsx │ ├── SetRefPointR.jsx │ ├── SetRefPointT.jsx │ ├── SetRefPointTL.jsx │ └── SetRefPointTR.jsx └── Scale │ ├── ScaleToPageMargins.jsx │ ├── ScaleToPageMarginsH.jsx │ ├── ScaleToPageMarginsW.jsx │ ├── ScaleToPageSize.jsx │ ├── ScaleToPageSizeH.jsx │ ├── ScaleToPageSizeW.jsx │ ├── ScaleToSpreadBleed.jsx │ ├── ScaleToSpreadBleedH.jsx │ └── ScaleToSpreadBleedW.jsx ├── Other ├── EAN.jsx ├── QR.jsx └── QRBatch.jsx ├── README.md ├── Samples ├── fonts.tsv ├── layers.tsv ├── links.tsv ├── qr.tsv ├── snippets.tsv └── swatches.tsv └── lib ├── .img ├── progress-bar-dual.png ├── progress-bar-mini.png ├── progress-bar.png ├── report-filter.png └── report.png ├── README.md ├── addGuide.jsxinc ├── alignTextToBottom.jsxinc ├── fitTo.jsxinc ├── getBounds.jsxinc ├── getFileNameExt.jsxinc ├── getFilesRecursively.jsxinc ├── getPageItems.jsxinc ├── getScriptsFolder.jsxinc ├── isInArray.jsxinc ├── log.jsxinc ├── moveToLayer.jsxinc ├── naturalSorter.jsxinc ├── overrideMasterItems.jsxinc ├── parseDataFile.jsxinc ├── progressBar.jsxinc ├── replaceLink.jsxinc ├── replaceSwatch.jsxinc ├── replaceText.jsxinc ├── report.jsxinc ├── saveLayersState.jsxinc ├── setDropShadow.jsxinc ├── stat.jsxinc ├── trim.jsxinc ├── truncateString.jsxinc └── unique.jsxinc /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.prefs 3 | .* 4 | !.img 5 | -------------------------------------------------------------------------------- /.img/alignto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/alignto.png -------------------------------------------------------------------------------- /.img/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/fit.png -------------------------------------------------------------------------------- /.img/labelpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/labelpage.png -------------------------------------------------------------------------------- /.img/mg5hw0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/mg5hw0.png -------------------------------------------------------------------------------- /.img/mg5hw10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/mg5hw10.png -------------------------------------------------------------------------------- /.img/paragraphalign-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/paragraphalign-C.png -------------------------------------------------------------------------------- /.img/paragraphalign-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/paragraphalign-L.png -------------------------------------------------------------------------------- /.img/paragraphalign-R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/paragraphalign-R.png -------------------------------------------------------------------------------- /.img/proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/proxy.png -------------------------------------------------------------------------------- /.img/qr-ondoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/qr-ondoc.png -------------------------------------------------------------------------------- /.img/qr-onfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/qr-onfile.png -------------------------------------------------------------------------------- /.img/script-labelpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/script-labelpage.png -------------------------------------------------------------------------------- /.img/script-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/script-qr.png -------------------------------------------------------------------------------- /.img/script-quickexport-batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/script-quickexport-batch.png -------------------------------------------------------------------------------- /.img/script-quickexport-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/script-quickexport-legend.svg -------------------------------------------------------------------------------- /.img/script-quickexport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/script-quickexport.png -------------------------------------------------------------------------------- /.img/script-showhideoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/script-showhideoptions.png -------------------------------------------------------------------------------- /.img/textautosize-BC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/textautosize-BC.png -------------------------------------------------------------------------------- /.img/textautosize-BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/textautosize-BL.png -------------------------------------------------------------------------------- /.img/textautosize-BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/textautosize-BR.png -------------------------------------------------------------------------------- /.img/textautosize-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/textautosize-C.png -------------------------------------------------------------------------------- /.img/textautosize-CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/textautosize-CL.png -------------------------------------------------------------------------------- /.img/textautosize-CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/textautosize-CR.png -------------------------------------------------------------------------------- /.img/textautosize-TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/textautosize-TC.png -------------------------------------------------------------------------------- /.img/textautosize-TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/textautosize-TL.png -------------------------------------------------------------------------------- /.img/textautosize-TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/textautosize-TR.png -------------------------------------------------------------------------------- /.img/tsv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/tsv.png -------------------------------------------------------------------------------- /.img/verticaljustification-B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/verticaljustification-B.png -------------------------------------------------------------------------------- /.img/verticaljustification-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/verticaljustification-C.png -------------------------------------------------------------------------------- /.img/verticaljustification-T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/.img/verticaljustification-T.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Document/Assets/AddLayers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Assets/AddLayers.jsx -------------------------------------------------------------------------------- /Document/Assets/AddSwatches.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Assets/AddSwatches.jsx -------------------------------------------------------------------------------- /Document/Assets/DumpLayers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Assets/DumpLayers.jsx -------------------------------------------------------------------------------- /Document/Assets/DumpLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Assets/DumpLinks.jsx -------------------------------------------------------------------------------- /Document/Assets/DumpSwatches.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Assets/DumpSwatches.jsx -------------------------------------------------------------------------------- /Document/Assets/ReplaceFonts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Assets/ReplaceFonts.jsx -------------------------------------------------------------------------------- /Document/Assets/ReplaceLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Assets/ReplaceLinks.jsx -------------------------------------------------------------------------------- /Document/Assets/ReplaceTextSnippets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Assets/ReplaceTextSnippets.jsx -------------------------------------------------------------------------------- /Document/Assets/ResetLayers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Assets/ResetLayers.jsx -------------------------------------------------------------------------------- /Document/Export/DNPLayersHide.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Export/DNPLayersHide.jsx -------------------------------------------------------------------------------- /Document/Export/DNPLayersShow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Export/DNPLayersShow.jsx -------------------------------------------------------------------------------- /Document/Export/PrepareForExport.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Export/PrepareForExport.jsx -------------------------------------------------------------------------------- /Document/Export/QuickExport.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Export/QuickExport.jsx -------------------------------------------------------------------------------- /Document/Housekeeping/DocCleanup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Housekeeping/DocCleanup.jsx -------------------------------------------------------------------------------- /Document/Housekeeping/OverrideMasterItems.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Housekeeping/OverrideMasterItems.jsx -------------------------------------------------------------------------------- /Document/Housekeeping/RemoveScriptLabels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Housekeeping/RemoveScriptLabels.jsx -------------------------------------------------------------------------------- /Document/Housekeeping/RemoveStyles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Housekeeping/RemoveStyles.jsx -------------------------------------------------------------------------------- /Document/Housekeeping/SetDefaultPrefs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Housekeeping/SetDefaultPrefs.jsx -------------------------------------------------------------------------------- /Document/Housekeeping/SwatchesCleanup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Housekeeping/SwatchesCleanup.jsx -------------------------------------------------------------------------------- /Document/Information/LabelPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Information/LabelPage.jsx -------------------------------------------------------------------------------- /Document/Information/LabelPageRatios.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Information/LabelPageRatios.jsx -------------------------------------------------------------------------------- /Document/Information/ShowFonts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Information/ShowFonts.jsx -------------------------------------------------------------------------------- /Document/Information/ShowProfiles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Information/ShowProfiles.jsx -------------------------------------------------------------------------------- /Document/Information/ShowProperties.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Information/ShowProperties.jsx -------------------------------------------------------------------------------- /Document/Layout/GuidesAdd.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/GuidesAdd.jsx -------------------------------------------------------------------------------- /Document/Layout/GuidesCollect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/GuidesCollect.jsx -------------------------------------------------------------------------------- /Document/Layout/GuidesDelete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/GuidesDelete.jsx -------------------------------------------------------------------------------- /Document/Layout/MarkSafetyArea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/MarkSafetyArea.jsx -------------------------------------------------------------------------------- /Document/Layout/MarkVisibleArea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/MarkVisibleArea.jsx -------------------------------------------------------------------------------- /Document/Layout/PageMarginsFromScriptName.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/PageMarginsFromScriptName.jsx -------------------------------------------------------------------------------- /Document/Layout/PageMarginsFromSelection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/PageMarginsFromSelection.jsx -------------------------------------------------------------------------------- /Document/Layout/PageSizeFromFilename.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/PageSizeFromFilename.jsx -------------------------------------------------------------------------------- /Document/Layout/PageSizeFromMargins.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/PageSizeFromMargins.jsx -------------------------------------------------------------------------------- /Document/Layout/PageSizeFromSelection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Layout/PageSizeFromSelection.jsx -------------------------------------------------------------------------------- /Document/Pagination/JoinDocs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Pagination/JoinDocs.jsx -------------------------------------------------------------------------------- /Document/Pagination/LayersToSpreads.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Pagination/LayersToSpreads.jsx -------------------------------------------------------------------------------- /Document/Pagination/ShowOrHideOptions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Pagination/ShowOrHideOptions.jsx -------------------------------------------------------------------------------- /Document/Pagination/SplitDocBySpreads.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Pagination/SplitDocBySpreads.jsx -------------------------------------------------------------------------------- /Document/Pagination/SplitSpreadsByOptions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Pagination/SplitSpreadsByOptions.jsx -------------------------------------------------------------------------------- /Document/Zoom/TileAll.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Zoom/TileAll.jsx -------------------------------------------------------------------------------- /Document/Zoom/ZoomTo300Percent.jsx: -------------------------------------------------------------------------------- 1 | try { app.layoutWindows[0].zoomPercentage = 300; } catch (e) {} 2 | -------------------------------------------------------------------------------- /Document/Zoom/ZoomToSelection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Zoom/ZoomToSelection.jsx -------------------------------------------------------------------------------- /Document/Zoom/ZoomToSpreads.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Document/Zoom/ZoomToSpreads.jsx -------------------------------------------------------------------------------- /FILES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/FILES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/NEWS.md -------------------------------------------------------------------------------- /Objects/Align/AlignToB.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/AlignToB.jsx -------------------------------------------------------------------------------- /Objects/Align/AlignToBL.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/AlignToBL.jsx -------------------------------------------------------------------------------- /Objects/Align/AlignToBR.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/AlignToBR.jsx -------------------------------------------------------------------------------- /Objects/Align/AlignToC.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/AlignToC.jsx -------------------------------------------------------------------------------- /Objects/Align/AlignToL.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/AlignToL.jsx -------------------------------------------------------------------------------- /Objects/Align/AlignToR.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/AlignToR.jsx -------------------------------------------------------------------------------- /Objects/Align/AlignToT.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/AlignToT.jsx -------------------------------------------------------------------------------- /Objects/Align/AlignToTL.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/AlignToTL.jsx -------------------------------------------------------------------------------- /Objects/Align/AlignToTR.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/AlignToTR.jsx -------------------------------------------------------------------------------- /Objects/Align/ResetAlignTo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/ResetAlignTo.jsx -------------------------------------------------------------------------------- /Objects/Align/ToggleAlignTo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Align/ToggleAlignTo.jsx -------------------------------------------------------------------------------- /Objects/Clip/Clip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Clip/Clip.jsx -------------------------------------------------------------------------------- /Objects/Clip/ClipRelease.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Clip/ClipRelease.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToPage.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToPageBleed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToPageBleed.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToPageBleedForced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToPageBleedForced.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToPageForced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToPageForced.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToPageMargins.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToPageMargins.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToPageMarginsForced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToPageMarginsForced.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToPageVisibleArea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToPageVisibleArea.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToPageVisibleAreaForced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToPageVisibleAreaForced.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToSpread.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToSpread.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToSpreadBleed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToSpreadBleed.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToSpreadBleedForced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToSpreadBleedForced.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToSpreadForced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToSpreadForced.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToSpreadMargins.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToSpreadMargins.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToSpreadMarginsForced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToSpreadMarginsForced.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToSpreadVisibleArea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToSpreadVisibleArea.jsx -------------------------------------------------------------------------------- /Objects/Fit/FitToSpreadVisibleAreaForced.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/FitToSpreadVisibleAreaForced.jsx -------------------------------------------------------------------------------- /Objects/Fit/TextAutosize.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Fit/TextAutosize.jsx -------------------------------------------------------------------------------- /Objects/Other/OffsetPaths.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Other/OffsetPaths.jsx -------------------------------------------------------------------------------- /Objects/Proxy/SetRefPointB.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Proxy/SetRefPointB.jsx -------------------------------------------------------------------------------- /Objects/Proxy/SetRefPointBL.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Proxy/SetRefPointBL.jsx -------------------------------------------------------------------------------- /Objects/Proxy/SetRefPointBR.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Proxy/SetRefPointBR.jsx -------------------------------------------------------------------------------- /Objects/Proxy/SetRefPointC.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Proxy/SetRefPointC.jsx -------------------------------------------------------------------------------- /Objects/Proxy/SetRefPointL.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Proxy/SetRefPointL.jsx -------------------------------------------------------------------------------- /Objects/Proxy/SetRefPointR.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Proxy/SetRefPointR.jsx -------------------------------------------------------------------------------- /Objects/Proxy/SetRefPointT.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Proxy/SetRefPointT.jsx -------------------------------------------------------------------------------- /Objects/Proxy/SetRefPointTL.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Proxy/SetRefPointTL.jsx -------------------------------------------------------------------------------- /Objects/Proxy/SetRefPointTR.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Proxy/SetRefPointTR.jsx -------------------------------------------------------------------------------- /Objects/Scale/ScaleToPageMargins.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Scale/ScaleToPageMargins.jsx -------------------------------------------------------------------------------- /Objects/Scale/ScaleToPageMarginsH.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Scale/ScaleToPageMarginsH.jsx -------------------------------------------------------------------------------- /Objects/Scale/ScaleToPageMarginsW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Scale/ScaleToPageMarginsW.jsx -------------------------------------------------------------------------------- /Objects/Scale/ScaleToPageSize.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Scale/ScaleToPageSize.jsx -------------------------------------------------------------------------------- /Objects/Scale/ScaleToPageSizeH.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Scale/ScaleToPageSizeH.jsx -------------------------------------------------------------------------------- /Objects/Scale/ScaleToPageSizeW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Scale/ScaleToPageSizeW.jsx -------------------------------------------------------------------------------- /Objects/Scale/ScaleToSpreadBleed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Scale/ScaleToSpreadBleed.jsx -------------------------------------------------------------------------------- /Objects/Scale/ScaleToSpreadBleedH.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Scale/ScaleToSpreadBleedH.jsx -------------------------------------------------------------------------------- /Objects/Scale/ScaleToSpreadBleedW.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Objects/Scale/ScaleToSpreadBleedW.jsx -------------------------------------------------------------------------------- /Other/EAN.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Other/EAN.jsx -------------------------------------------------------------------------------- /Other/QR.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Other/QR.jsx -------------------------------------------------------------------------------- /Other/QRBatch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Other/QRBatch.jsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/README.md -------------------------------------------------------------------------------- /Samples/fonts.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Samples/fonts.tsv -------------------------------------------------------------------------------- /Samples/layers.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Samples/layers.tsv -------------------------------------------------------------------------------- /Samples/links.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Samples/links.tsv -------------------------------------------------------------------------------- /Samples/qr.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Samples/qr.tsv -------------------------------------------------------------------------------- /Samples/snippets.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Samples/snippets.tsv -------------------------------------------------------------------------------- /Samples/swatches.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/Samples/swatches.tsv -------------------------------------------------------------------------------- /lib/.img/progress-bar-dual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/.img/progress-bar-dual.png -------------------------------------------------------------------------------- /lib/.img/progress-bar-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/.img/progress-bar-mini.png -------------------------------------------------------------------------------- /lib/.img/progress-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/.img/progress-bar.png -------------------------------------------------------------------------------- /lib/.img/report-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/.img/report-filter.png -------------------------------------------------------------------------------- /lib/.img/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/.img/report.png -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/addGuide.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/addGuide.jsxinc -------------------------------------------------------------------------------- /lib/alignTextToBottom.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/alignTextToBottom.jsxinc -------------------------------------------------------------------------------- /lib/fitTo.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/fitTo.jsxinc -------------------------------------------------------------------------------- /lib/getBounds.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/getBounds.jsxinc -------------------------------------------------------------------------------- /lib/getFileNameExt.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/getFileNameExt.jsxinc -------------------------------------------------------------------------------- /lib/getFilesRecursively.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/getFilesRecursively.jsxinc -------------------------------------------------------------------------------- /lib/getPageItems.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/getPageItems.jsxinc -------------------------------------------------------------------------------- /lib/getScriptsFolder.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/getScriptsFolder.jsxinc -------------------------------------------------------------------------------- /lib/isInArray.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/isInArray.jsxinc -------------------------------------------------------------------------------- /lib/log.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/log.jsxinc -------------------------------------------------------------------------------- /lib/moveToLayer.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/moveToLayer.jsxinc -------------------------------------------------------------------------------- /lib/naturalSorter.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/naturalSorter.jsxinc -------------------------------------------------------------------------------- /lib/overrideMasterItems.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/overrideMasterItems.jsxinc -------------------------------------------------------------------------------- /lib/parseDataFile.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/parseDataFile.jsxinc -------------------------------------------------------------------------------- /lib/progressBar.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/progressBar.jsxinc -------------------------------------------------------------------------------- /lib/replaceLink.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/replaceLink.jsxinc -------------------------------------------------------------------------------- /lib/replaceSwatch.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/replaceSwatch.jsxinc -------------------------------------------------------------------------------- /lib/replaceText.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/replaceText.jsxinc -------------------------------------------------------------------------------- /lib/report.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/report.jsxinc -------------------------------------------------------------------------------- /lib/saveLayersState.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/saveLayersState.jsxinc -------------------------------------------------------------------------------- /lib/setDropShadow.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/setDropShadow.jsxinc -------------------------------------------------------------------------------- /lib/stat.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/stat.jsxinc -------------------------------------------------------------------------------- /lib/trim.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/trim.jsxinc -------------------------------------------------------------------------------- /lib/truncateString.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/truncateString.jsxinc -------------------------------------------------------------------------------- /lib/unique.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pchiorean/Indentz/HEAD/lib/unique.jsxinc --------------------------------------------------------------------------------