├── .debug ├── .gitignore ├── README.md ├── SmartCore ├── ArtboardBundler.jsx ├── ArtboardPanel.jsx ├── Button.jsx ├── ColorPicker.jsx ├── Constants.jsx ├── DocCloser.jsx ├── DocUtils.jsx ├── Dropdown.jsx ├── ElementPanel.jsx ├── ExportBundle.jsx ├── ExportDialog.jsx ├── ExportItem.jsx ├── ExportPanel.jsx ├── ExportSettings.jsx ├── ExportToolBuilder.jsx ├── Exporter.jsx ├── FileFilter.jsx ├── FilePatternControl.jsx ├── FormatPanel.jsx ├── FormatSettings.jsx ├── Formats.jsx ├── ImportDialog.jsx ├── LayerBundler.jsx ├── LayerPanel.jsx ├── MainTabbedPanel.jsx ├── MarginControl.jsx ├── NumberControl.jsx ├── PresetPanel.jsx ├── PreviewFilesPanel.jsx ├── PropertiesPanel.jsx ├── Queue.jsx ├── RangeControl.jsx ├── SaveSettingsDialog.jsx ├── SettingsPanel.jsx ├── StringControl.jsx ├── SymbolBundler.jsx ├── SymbolPanel.jsx ├── TabbedPanel.jsx ├── Tokens.jsx ├── closure.jsx └── icons │ ├── checkbox_disabled.png │ ├── checkbox_selected.png │ ├── checkbox_unselected.png │ ├── cross.png │ ├── downArrow.png │ ├── dropdownArrow.png │ ├── export.png │ ├── eye.png │ ├── import.png │ ├── leftArrow.png │ ├── null.png │ ├── rightArrow.png │ ├── tick.png │ └── upArrow.png ├── Templates └── {AppTitle}.jsx ├── Version_Execad ├── AppID.txt ├── AppName.txt ├── AppTitle.txt ├── Presets │ └── ExecAd Standard Export.seprops ├── PresetsFolderName.txt └── SettingsLayerName.txt ├── Version_Standard ├── AppID.txt ├── AppName.txt ├── AppTitle.txt ├── Presets │ └── Android Icons - Launcher (From 512x512).seprops ├── PresetsFolderName.txt └── SettingsLayerName.txt ├── assets ├── ExtensionIcon.ai ├── FeaturedImage.ai ├── FeaturedImage.jpg ├── FeaturedImage.png ├── Layer-22x22.png ├── Layer-30x30.png ├── Layer-512x512.jpg ├── Layer-60x60.png ├── OutputStateIcons.ai ├── Symbol-22x22.png ├── Symbol-30x30.png └── Symbol-60x60.png ├── html ├── lib │ └── CSInterface-4.0.0.js ├── panel.html └── previous.html ├── manifest.mxi └── manifest.xml /.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/.debug -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/README.md -------------------------------------------------------------------------------- /SmartCore/ArtboardBundler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ArtboardBundler.jsx -------------------------------------------------------------------------------- /SmartCore/ArtboardPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ArtboardPanel.jsx -------------------------------------------------------------------------------- /SmartCore/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/Button.jsx -------------------------------------------------------------------------------- /SmartCore/ColorPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ColorPicker.jsx -------------------------------------------------------------------------------- /SmartCore/Constants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/Constants.jsx -------------------------------------------------------------------------------- /SmartCore/DocCloser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/DocCloser.jsx -------------------------------------------------------------------------------- /SmartCore/DocUtils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/DocUtils.jsx -------------------------------------------------------------------------------- /SmartCore/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/Dropdown.jsx -------------------------------------------------------------------------------- /SmartCore/ElementPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ElementPanel.jsx -------------------------------------------------------------------------------- /SmartCore/ExportBundle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ExportBundle.jsx -------------------------------------------------------------------------------- /SmartCore/ExportDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ExportDialog.jsx -------------------------------------------------------------------------------- /SmartCore/ExportItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ExportItem.jsx -------------------------------------------------------------------------------- /SmartCore/ExportPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ExportPanel.jsx -------------------------------------------------------------------------------- /SmartCore/ExportSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ExportSettings.jsx -------------------------------------------------------------------------------- /SmartCore/ExportToolBuilder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ExportToolBuilder.jsx -------------------------------------------------------------------------------- /SmartCore/Exporter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/Exporter.jsx -------------------------------------------------------------------------------- /SmartCore/FileFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/FileFilter.jsx -------------------------------------------------------------------------------- /SmartCore/FilePatternControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/FilePatternControl.jsx -------------------------------------------------------------------------------- /SmartCore/FormatPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/FormatPanel.jsx -------------------------------------------------------------------------------- /SmartCore/FormatSettings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/FormatSettings.jsx -------------------------------------------------------------------------------- /SmartCore/Formats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/Formats.jsx -------------------------------------------------------------------------------- /SmartCore/ImportDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/ImportDialog.jsx -------------------------------------------------------------------------------- /SmartCore/LayerBundler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/LayerBundler.jsx -------------------------------------------------------------------------------- /SmartCore/LayerPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/LayerPanel.jsx -------------------------------------------------------------------------------- /SmartCore/MainTabbedPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/MainTabbedPanel.jsx -------------------------------------------------------------------------------- /SmartCore/MarginControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/MarginControl.jsx -------------------------------------------------------------------------------- /SmartCore/NumberControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/NumberControl.jsx -------------------------------------------------------------------------------- /SmartCore/PresetPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/PresetPanel.jsx -------------------------------------------------------------------------------- /SmartCore/PreviewFilesPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/PreviewFilesPanel.jsx -------------------------------------------------------------------------------- /SmartCore/PropertiesPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/PropertiesPanel.jsx -------------------------------------------------------------------------------- /SmartCore/Queue.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/Queue.jsx -------------------------------------------------------------------------------- /SmartCore/RangeControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/RangeControl.jsx -------------------------------------------------------------------------------- /SmartCore/SaveSettingsDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/SaveSettingsDialog.jsx -------------------------------------------------------------------------------- /SmartCore/SettingsPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/SettingsPanel.jsx -------------------------------------------------------------------------------- /SmartCore/StringControl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/StringControl.jsx -------------------------------------------------------------------------------- /SmartCore/SymbolBundler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/SymbolBundler.jsx -------------------------------------------------------------------------------- /SmartCore/SymbolPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/SymbolPanel.jsx -------------------------------------------------------------------------------- /SmartCore/TabbedPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/TabbedPanel.jsx -------------------------------------------------------------------------------- /SmartCore/Tokens.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/Tokens.jsx -------------------------------------------------------------------------------- /SmartCore/closure.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/closure.jsx -------------------------------------------------------------------------------- /SmartCore/icons/checkbox_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/checkbox_disabled.png -------------------------------------------------------------------------------- /SmartCore/icons/checkbox_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/checkbox_selected.png -------------------------------------------------------------------------------- /SmartCore/icons/checkbox_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/checkbox_unselected.png -------------------------------------------------------------------------------- /SmartCore/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/cross.png -------------------------------------------------------------------------------- /SmartCore/icons/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/downArrow.png -------------------------------------------------------------------------------- /SmartCore/icons/dropdownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/dropdownArrow.png -------------------------------------------------------------------------------- /SmartCore/icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/export.png -------------------------------------------------------------------------------- /SmartCore/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/eye.png -------------------------------------------------------------------------------- /SmartCore/icons/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/import.png -------------------------------------------------------------------------------- /SmartCore/icons/leftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/leftArrow.png -------------------------------------------------------------------------------- /SmartCore/icons/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/null.png -------------------------------------------------------------------------------- /SmartCore/icons/rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/rightArrow.png -------------------------------------------------------------------------------- /SmartCore/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/tick.png -------------------------------------------------------------------------------- /SmartCore/icons/upArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/SmartCore/icons/upArrow.png -------------------------------------------------------------------------------- /Templates/{AppTitle}.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/Templates/{AppTitle}.jsx -------------------------------------------------------------------------------- /Version_Execad/AppID.txt: -------------------------------------------------------------------------------- 1 | org.tbyrne.ExecAdExport -------------------------------------------------------------------------------- /Version_Execad/AppName.txt: -------------------------------------------------------------------------------- 1 | ExecAdExport -------------------------------------------------------------------------------- /Version_Execad/AppTitle.txt: -------------------------------------------------------------------------------- 1 | ExecAd Exporter -------------------------------------------------------------------------------- /Version_Execad/Presets/ExecAd Standard Export.seprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/Version_Execad/Presets/ExecAd Standard Export.seprops -------------------------------------------------------------------------------- /Version_Execad/PresetsFolderName.txt: -------------------------------------------------------------------------------- 1 | ExecAd Export Presets -------------------------------------------------------------------------------- /Version_Execad/SettingsLayerName.txt: -------------------------------------------------------------------------------- 1 | ExecAd Export Settings -------------------------------------------------------------------------------- /Version_Standard/AppID.txt: -------------------------------------------------------------------------------- 1 | org.tbyrne.smartExport -------------------------------------------------------------------------------- /Version_Standard/AppName.txt: -------------------------------------------------------------------------------- 1 | SmartExport -------------------------------------------------------------------------------- /Version_Standard/AppTitle.txt: -------------------------------------------------------------------------------- 1 | Smart Export -------------------------------------------------------------------------------- /Version_Standard/Presets/Android Icons - Launcher (From 512x512).seprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/Version_Standard/Presets/Android Icons - Launcher (From 512x512).seprops -------------------------------------------------------------------------------- /Version_Standard/PresetsFolderName.txt: -------------------------------------------------------------------------------- 1 | Smart Export Presets -------------------------------------------------------------------------------- /Version_Standard/SettingsLayerName.txt: -------------------------------------------------------------------------------- 1 | Export Settings -------------------------------------------------------------------------------- /assets/ExtensionIcon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/ExtensionIcon.ai -------------------------------------------------------------------------------- /assets/FeaturedImage.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/FeaturedImage.ai -------------------------------------------------------------------------------- /assets/FeaturedImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/FeaturedImage.jpg -------------------------------------------------------------------------------- /assets/FeaturedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/FeaturedImage.png -------------------------------------------------------------------------------- /assets/Layer-22x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/Layer-22x22.png -------------------------------------------------------------------------------- /assets/Layer-30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/Layer-30x30.png -------------------------------------------------------------------------------- /assets/Layer-512x512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/Layer-512x512.jpg -------------------------------------------------------------------------------- /assets/Layer-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/Layer-60x60.png -------------------------------------------------------------------------------- /assets/OutputStateIcons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/OutputStateIcons.ai -------------------------------------------------------------------------------- /assets/Symbol-22x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/Symbol-22x22.png -------------------------------------------------------------------------------- /assets/Symbol-30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/Symbol-30x30.png -------------------------------------------------------------------------------- /assets/Symbol-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/assets/Symbol-60x60.png -------------------------------------------------------------------------------- /html/lib/CSInterface-4.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/html/lib/CSInterface-4.0.0.js -------------------------------------------------------------------------------- /html/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/html/panel.html -------------------------------------------------------------------------------- /html/previous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/html/previous.html -------------------------------------------------------------------------------- /manifest.mxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/manifest.mxi -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomByrne/IllustratorSmartExport/HEAD/manifest.xml --------------------------------------------------------------------------------