├── .gitattributes ├── .gitignore ├── .jsbeautifyrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE.md ├── README.md ├── dist ├── DuAEF.jsxinc └── setup.jsxinc ├── docs ├── Base64.html ├── DuAE.html ├── DuAEComp.html ├── DuAECompSelector.html ├── DuAEExpression.Library._FuzzyLogic_.html ├── DuAEExpression.Library._FuzzyVeracity_.html ├── DuAEExpression.Library._Matrix_.html ├── DuAEExpression.Library.html ├── DuAEExpression.html ├── DuAEF.html ├── DuAEF.jsxinc.html ├── DuAEItem.html ├── DuAEKeySpatialProperties.html ├── DuAEKeyframe.html ├── DuAELayer.html ├── DuAELayerAnimation.html ├── DuAELayerPicker.html ├── DuAELayerPickerDialog.html ├── DuAELayerSelector.html ├── DuAEProject.html ├── DuAEProjectXMP.html ├── DuAEProperty.html ├── DuAEPropertyAnimation.html ├── DuAEPropertyExpression.html ├── DuAEPropertyGroupAnimation.html ├── DuAEPseudoEffect.html ├── DuAEPuppet.html ├── DuAERenderQueue.html ├── DuAEShapeLayer.html ├── DuAETag.html ├── DuAEUI.html ├── DuBinary.html ├── DuButton.html ├── DuCheckBox.html ├── DuColor.html ├── DuColorSelector.html ├── DuDate.html ├── DuDebug.html ├── DuDebugLog.html ├── DuESF.html ├── DuEditText.html ├── DuFile.html ├── DuFileSelector.html ├── DuFolder.html ├── DuFolderSelector.html ├── DuForm.html ├── DuInterpolation.html ├── DuJSObj.html ├── DuLibrary.html ├── DuLibraryItem.html ├── DuList.html ├── DuListItem.html ├── DuMath.html ├── DuMultiButton.html ├── DuNumber.html ├── DuOCA.html ├── DuOCADocument.html ├── DuOCAFrame.html ├── DuOCALayer.html ├── DuPanel.html ├── DuPath.html ├── DuPopup.html ├── DuProcess.html ├── DuProcessQueue.html ├── DuProgressBar.html ├── DuRegExp.html ├── DuScriptPanel.html ├── DuScriptUI.html ├── DuSelector.html ├── DuSeparator.html ├── DuSettingField.html ├── DuSettings.html ├── DuSlider.html ├── DuSmallButton.html ├── DuString.html ├── DuSystem.html ├── DuTab.html ├── DuTabPanel.html ├── DuTitleBar.html ├── DuToolBar.html ├── DuURL.html ├── DuVector.html ├── DuVersion.html ├── DuXML.html ├── DuXMP.html ├── DuZip.html ├── FuzzySearch.html ├── JSON.html ├── Matrix.html ├── OCO.html ├── OCOBone.html ├── OCOConfig.html ├── OCODoc.html ├── OCOLibrary.html ├── OCOLimb.html ├── YAML.html ├── colorPicker.html ├── global.html ├── index.html ├── jsdoc.css ├── scripts │ ├── app.min.js │ ├── linenumber.js │ └── search.js ├── styles │ ├── app.min.css │ ├── iframe.css │ ├── prettify-jsdoc.css │ ├── prettify-tomorrow.css │ └── reset.css └── translationEngine.html ├── examples ├── template.jsx └── test.jsx ├── jsconfig.json ├── src ├── DuAEF.jsxinc ├── inc │ ├── README.md │ ├── ae.jsx │ ├── comp.jsx │ ├── core.jsx │ ├── dulist_extension.jsx │ ├── duscriptui_extension.jsx │ ├── expression.jsx │ ├── expression_library.jsx │ ├── icons.jsx │ ├── icons │ │ ├── comp.svg │ │ ├── compositions.svg │ │ ├── eye_dropper.svg │ │ ├── layers copy.svg │ │ ├── layers.svg │ │ ├── selected-compositions.svg │ │ ├── selected-layers.svg │ │ ├── selected_props.svg │ │ ├── w12_comp.png │ │ ├── w12_comp.png.jsxinc │ │ ├── w12_eye_dropper.png │ │ ├── w12_layers.png │ │ ├── w12_layers.png.jsxinc │ │ ├── w16_compositions.png │ │ ├── w16_compositions.png.jsxinc │ │ ├── w16_dialog.png.jsxinc │ │ ├── w16_layers.png │ │ ├── w16_layers.png.jsxinc │ │ ├── w16_no_dialog.png.jsxinc │ │ ├── w16_selected_compositions.png │ │ ├── w16_selected_compositions.png.jsxinc │ │ ├── w16_selected_layers.png │ │ ├── w16_selected_layers.png.jsxinc │ │ ├── w16_selected_props.png │ │ └── w16_selected_props.png.jsxinc │ ├── item.jsx │ ├── layer.jsx │ ├── modules │ │ └── README.md │ ├── presets.jsx │ ├── presets │ │ ├── preset_magic.ffx │ │ ├── preset_magic.ffx.jsxinc │ │ ├── preset_null.ffx │ │ └── preset_null.ffx.jsxinc │ ├── project.jsx │ ├── projectXMP.jsx │ ├── property.jsx │ ├── property_deprecated.jsx │ ├── pseudoEffect.jsx │ ├── puppet.jsx │ ├── renderer.jsx │ ├── renderqueue.jsx │ ├── shapelayer.jsx │ ├── tag.jsx │ ├── tests │ │ └── testPseudoEffect.jsxinc │ └── ui.jsx └── setup.jsxinc ├── tools ├── DuBinary_file_converter.jsx ├── DuBinary_file_extractor.jsx ├── DuBinary_folder_converter.jsx ├── README.md ├── build │ ├── README.md │ ├── build.bat │ ├── jsdoc.css │ ├── jsdoc_conf.json │ ├── jsdoc_ts_conf.json │ ├── package-lock.json │ └── package.json ├── dev │ ├── Performance Tests │ │ ├── Expressions_try_catch_perfTest.jsx │ │ └── Javascript Benchmarks.txt │ └── cmdIDs.json └── pathToJsxinc.jsx └── types ├── after-effects └── index.d.ts ├── duaef └── types.d.ts ├── duesf ├── README.md └── types.d.ts └── extendscript ├── JavaScript.d.ts ├── PlugPlugExternalObject.d.ts ├── ScriptUI.d.ts ├── XMPScript.d.ts └── global.d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/README.md -------------------------------------------------------------------------------- /dist/DuAEF.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/dist/DuAEF.jsxinc -------------------------------------------------------------------------------- /dist/setup.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/dist/setup.jsxinc -------------------------------------------------------------------------------- /docs/Base64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/Base64.html -------------------------------------------------------------------------------- /docs/DuAE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAE.html -------------------------------------------------------------------------------- /docs/DuAEComp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEComp.html -------------------------------------------------------------------------------- /docs/DuAECompSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAECompSelector.html -------------------------------------------------------------------------------- /docs/DuAEExpression.Library._FuzzyLogic_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEExpression.Library._FuzzyLogic_.html -------------------------------------------------------------------------------- /docs/DuAEExpression.Library._FuzzyVeracity_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEExpression.Library._FuzzyVeracity_.html -------------------------------------------------------------------------------- /docs/DuAEExpression.Library._Matrix_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEExpression.Library._Matrix_.html -------------------------------------------------------------------------------- /docs/DuAEExpression.Library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEExpression.Library.html -------------------------------------------------------------------------------- /docs/DuAEExpression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEExpression.html -------------------------------------------------------------------------------- /docs/DuAEF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEF.html -------------------------------------------------------------------------------- /docs/DuAEF.jsxinc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEF.jsxinc.html -------------------------------------------------------------------------------- /docs/DuAEItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEItem.html -------------------------------------------------------------------------------- /docs/DuAEKeySpatialProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEKeySpatialProperties.html -------------------------------------------------------------------------------- /docs/DuAEKeyframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEKeyframe.html -------------------------------------------------------------------------------- /docs/DuAELayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAELayer.html -------------------------------------------------------------------------------- /docs/DuAELayerAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAELayerAnimation.html -------------------------------------------------------------------------------- /docs/DuAELayerPicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAELayerPicker.html -------------------------------------------------------------------------------- /docs/DuAELayerPickerDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAELayerPickerDialog.html -------------------------------------------------------------------------------- /docs/DuAELayerSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAELayerSelector.html -------------------------------------------------------------------------------- /docs/DuAEProject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEProject.html -------------------------------------------------------------------------------- /docs/DuAEProjectXMP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEProjectXMP.html -------------------------------------------------------------------------------- /docs/DuAEProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEProperty.html -------------------------------------------------------------------------------- /docs/DuAEPropertyAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEPropertyAnimation.html -------------------------------------------------------------------------------- /docs/DuAEPropertyExpression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEPropertyExpression.html -------------------------------------------------------------------------------- /docs/DuAEPropertyGroupAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEPropertyGroupAnimation.html -------------------------------------------------------------------------------- /docs/DuAEPseudoEffect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEPseudoEffect.html -------------------------------------------------------------------------------- /docs/DuAEPuppet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEPuppet.html -------------------------------------------------------------------------------- /docs/DuAERenderQueue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAERenderQueue.html -------------------------------------------------------------------------------- /docs/DuAEShapeLayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEShapeLayer.html -------------------------------------------------------------------------------- /docs/DuAETag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAETag.html -------------------------------------------------------------------------------- /docs/DuAEUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuAEUI.html -------------------------------------------------------------------------------- /docs/DuBinary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuBinary.html -------------------------------------------------------------------------------- /docs/DuButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuButton.html -------------------------------------------------------------------------------- /docs/DuCheckBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuCheckBox.html -------------------------------------------------------------------------------- /docs/DuColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuColor.html -------------------------------------------------------------------------------- /docs/DuColorSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuColorSelector.html -------------------------------------------------------------------------------- /docs/DuDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuDate.html -------------------------------------------------------------------------------- /docs/DuDebug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuDebug.html -------------------------------------------------------------------------------- /docs/DuDebugLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuDebugLog.html -------------------------------------------------------------------------------- /docs/DuESF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuESF.html -------------------------------------------------------------------------------- /docs/DuEditText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuEditText.html -------------------------------------------------------------------------------- /docs/DuFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuFile.html -------------------------------------------------------------------------------- /docs/DuFileSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuFileSelector.html -------------------------------------------------------------------------------- /docs/DuFolder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuFolder.html -------------------------------------------------------------------------------- /docs/DuFolderSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuFolderSelector.html -------------------------------------------------------------------------------- /docs/DuForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuForm.html -------------------------------------------------------------------------------- /docs/DuInterpolation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuInterpolation.html -------------------------------------------------------------------------------- /docs/DuJSObj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuJSObj.html -------------------------------------------------------------------------------- /docs/DuLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuLibrary.html -------------------------------------------------------------------------------- /docs/DuLibraryItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuLibraryItem.html -------------------------------------------------------------------------------- /docs/DuList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuList.html -------------------------------------------------------------------------------- /docs/DuListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuListItem.html -------------------------------------------------------------------------------- /docs/DuMath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuMath.html -------------------------------------------------------------------------------- /docs/DuMultiButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuMultiButton.html -------------------------------------------------------------------------------- /docs/DuNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuNumber.html -------------------------------------------------------------------------------- /docs/DuOCA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuOCA.html -------------------------------------------------------------------------------- /docs/DuOCADocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuOCADocument.html -------------------------------------------------------------------------------- /docs/DuOCAFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuOCAFrame.html -------------------------------------------------------------------------------- /docs/DuOCALayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuOCALayer.html -------------------------------------------------------------------------------- /docs/DuPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuPanel.html -------------------------------------------------------------------------------- /docs/DuPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuPath.html -------------------------------------------------------------------------------- /docs/DuPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuPopup.html -------------------------------------------------------------------------------- /docs/DuProcess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuProcess.html -------------------------------------------------------------------------------- /docs/DuProcessQueue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuProcessQueue.html -------------------------------------------------------------------------------- /docs/DuProgressBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuProgressBar.html -------------------------------------------------------------------------------- /docs/DuRegExp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuRegExp.html -------------------------------------------------------------------------------- /docs/DuScriptPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuScriptPanel.html -------------------------------------------------------------------------------- /docs/DuScriptUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuScriptUI.html -------------------------------------------------------------------------------- /docs/DuSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuSelector.html -------------------------------------------------------------------------------- /docs/DuSeparator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuSeparator.html -------------------------------------------------------------------------------- /docs/DuSettingField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuSettingField.html -------------------------------------------------------------------------------- /docs/DuSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuSettings.html -------------------------------------------------------------------------------- /docs/DuSlider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuSlider.html -------------------------------------------------------------------------------- /docs/DuSmallButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuSmallButton.html -------------------------------------------------------------------------------- /docs/DuString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuString.html -------------------------------------------------------------------------------- /docs/DuSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuSystem.html -------------------------------------------------------------------------------- /docs/DuTab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuTab.html -------------------------------------------------------------------------------- /docs/DuTabPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuTabPanel.html -------------------------------------------------------------------------------- /docs/DuTitleBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuTitleBar.html -------------------------------------------------------------------------------- /docs/DuToolBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuToolBar.html -------------------------------------------------------------------------------- /docs/DuURL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuURL.html -------------------------------------------------------------------------------- /docs/DuVector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuVector.html -------------------------------------------------------------------------------- /docs/DuVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuVersion.html -------------------------------------------------------------------------------- /docs/DuXML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuXML.html -------------------------------------------------------------------------------- /docs/DuXMP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuXMP.html -------------------------------------------------------------------------------- /docs/DuZip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/DuZip.html -------------------------------------------------------------------------------- /docs/FuzzySearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/FuzzySearch.html -------------------------------------------------------------------------------- /docs/JSON.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/JSON.html -------------------------------------------------------------------------------- /docs/Matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/Matrix.html -------------------------------------------------------------------------------- /docs/OCO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/OCO.html -------------------------------------------------------------------------------- /docs/OCOBone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/OCOBone.html -------------------------------------------------------------------------------- /docs/OCOConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/OCOConfig.html -------------------------------------------------------------------------------- /docs/OCODoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/OCODoc.html -------------------------------------------------------------------------------- /docs/OCOLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/OCOLibrary.html -------------------------------------------------------------------------------- /docs/OCOLimb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/OCOLimb.html -------------------------------------------------------------------------------- /docs/YAML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/YAML.html -------------------------------------------------------------------------------- /docs/colorPicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/colorPicker.html -------------------------------------------------------------------------------- /docs/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/global.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/jsdoc.css -------------------------------------------------------------------------------- /docs/scripts/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/scripts/app.min.js -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/scripts/search.js -------------------------------------------------------------------------------- /docs/styles/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/styles/app.min.css -------------------------------------------------------------------------------- /docs/styles/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/styles/iframe.css -------------------------------------------------------------------------------- /docs/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/styles/reset.css -------------------------------------------------------------------------------- /docs/translationEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/docs/translationEngine.html -------------------------------------------------------------------------------- /examples/template.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/examples/template.jsx -------------------------------------------------------------------------------- /examples/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/examples/test.jsx -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/jsconfig.json -------------------------------------------------------------------------------- /src/DuAEF.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/DuAEF.jsxinc -------------------------------------------------------------------------------- /src/inc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/README.md -------------------------------------------------------------------------------- /src/inc/ae.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/ae.jsx -------------------------------------------------------------------------------- /src/inc/comp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/comp.jsx -------------------------------------------------------------------------------- /src/inc/core.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/core.jsx -------------------------------------------------------------------------------- /src/inc/dulist_extension.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/dulist_extension.jsx -------------------------------------------------------------------------------- /src/inc/duscriptui_extension.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/duscriptui_extension.jsx -------------------------------------------------------------------------------- /src/inc/expression.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/expression.jsx -------------------------------------------------------------------------------- /src/inc/expression_library.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/expression_library.jsx -------------------------------------------------------------------------------- /src/inc/icons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons.jsx -------------------------------------------------------------------------------- /src/inc/icons/comp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/comp.svg -------------------------------------------------------------------------------- /src/inc/icons/compositions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/compositions.svg -------------------------------------------------------------------------------- /src/inc/icons/eye_dropper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/eye_dropper.svg -------------------------------------------------------------------------------- /src/inc/icons/layers copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/layers copy.svg -------------------------------------------------------------------------------- /src/inc/icons/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/layers.svg -------------------------------------------------------------------------------- /src/inc/icons/selected-compositions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/selected-compositions.svg -------------------------------------------------------------------------------- /src/inc/icons/selected-layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/selected-layers.svg -------------------------------------------------------------------------------- /src/inc/icons/selected_props.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/selected_props.svg -------------------------------------------------------------------------------- /src/inc/icons/w12_comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w12_comp.png -------------------------------------------------------------------------------- /src/inc/icons/w12_comp.png.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w12_comp.png.jsxinc -------------------------------------------------------------------------------- /src/inc/icons/w12_eye_dropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w12_eye_dropper.png -------------------------------------------------------------------------------- /src/inc/icons/w12_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w12_layers.png -------------------------------------------------------------------------------- /src/inc/icons/w12_layers.png.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w12_layers.png.jsxinc -------------------------------------------------------------------------------- /src/inc/icons/w16_compositions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_compositions.png -------------------------------------------------------------------------------- /src/inc/icons/w16_compositions.png.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_compositions.png.jsxinc -------------------------------------------------------------------------------- /src/inc/icons/w16_dialog.png.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_dialog.png.jsxinc -------------------------------------------------------------------------------- /src/inc/icons/w16_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_layers.png -------------------------------------------------------------------------------- /src/inc/icons/w16_layers.png.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_layers.png.jsxinc -------------------------------------------------------------------------------- /src/inc/icons/w16_no_dialog.png.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_no_dialog.png.jsxinc -------------------------------------------------------------------------------- /src/inc/icons/w16_selected_compositions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_selected_compositions.png -------------------------------------------------------------------------------- /src/inc/icons/w16_selected_compositions.png.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_selected_compositions.png.jsxinc -------------------------------------------------------------------------------- /src/inc/icons/w16_selected_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_selected_layers.png -------------------------------------------------------------------------------- /src/inc/icons/w16_selected_layers.png.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_selected_layers.png.jsxinc -------------------------------------------------------------------------------- /src/inc/icons/w16_selected_props.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_selected_props.png -------------------------------------------------------------------------------- /src/inc/icons/w16_selected_props.png.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/icons/w16_selected_props.png.jsxinc -------------------------------------------------------------------------------- /src/inc/item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/item.jsx -------------------------------------------------------------------------------- /src/inc/layer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/layer.jsx -------------------------------------------------------------------------------- /src/inc/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/modules/README.md -------------------------------------------------------------------------------- /src/inc/presets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/presets.jsx -------------------------------------------------------------------------------- /src/inc/presets/preset_magic.ffx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/presets/preset_magic.ffx -------------------------------------------------------------------------------- /src/inc/presets/preset_magic.ffx.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/presets/preset_magic.ffx.jsxinc -------------------------------------------------------------------------------- /src/inc/presets/preset_null.ffx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/presets/preset_null.ffx -------------------------------------------------------------------------------- /src/inc/presets/preset_null.ffx.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/presets/preset_null.ffx.jsxinc -------------------------------------------------------------------------------- /src/inc/project.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/project.jsx -------------------------------------------------------------------------------- /src/inc/projectXMP.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/projectXMP.jsx -------------------------------------------------------------------------------- /src/inc/property.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/property.jsx -------------------------------------------------------------------------------- /src/inc/property_deprecated.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/property_deprecated.jsx -------------------------------------------------------------------------------- /src/inc/pseudoEffect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/pseudoEffect.jsx -------------------------------------------------------------------------------- /src/inc/puppet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/puppet.jsx -------------------------------------------------------------------------------- /src/inc/renderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/renderer.jsx -------------------------------------------------------------------------------- /src/inc/renderqueue.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/renderqueue.jsx -------------------------------------------------------------------------------- /src/inc/shapelayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/shapelayer.jsx -------------------------------------------------------------------------------- /src/inc/tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/tag.jsx -------------------------------------------------------------------------------- /src/inc/tests/testPseudoEffect.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/tests/testPseudoEffect.jsxinc -------------------------------------------------------------------------------- /src/inc/ui.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/inc/ui.jsx -------------------------------------------------------------------------------- /src/setup.jsxinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/src/setup.jsxinc -------------------------------------------------------------------------------- /tools/DuBinary_file_converter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/DuBinary_file_converter.jsx -------------------------------------------------------------------------------- /tools/DuBinary_file_extractor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/DuBinary_file_extractor.jsx -------------------------------------------------------------------------------- /tools/DuBinary_folder_converter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/DuBinary_folder_converter.jsx -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/build/README.md -------------------------------------------------------------------------------- /tools/build/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/build/build.bat -------------------------------------------------------------------------------- /tools/build/jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/build/jsdoc.css -------------------------------------------------------------------------------- /tools/build/jsdoc_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/build/jsdoc_conf.json -------------------------------------------------------------------------------- /tools/build/jsdoc_ts_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/build/jsdoc_ts_conf.json -------------------------------------------------------------------------------- /tools/build/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/build/package-lock.json -------------------------------------------------------------------------------- /tools/build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/build/package.json -------------------------------------------------------------------------------- /tools/dev/Performance Tests/Expressions_try_catch_perfTest.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/dev/Performance Tests/Expressions_try_catch_perfTest.jsx -------------------------------------------------------------------------------- /tools/dev/Performance Tests/Javascript Benchmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/dev/Performance Tests/Javascript Benchmarks.txt -------------------------------------------------------------------------------- /tools/dev/cmdIDs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/dev/cmdIDs.json -------------------------------------------------------------------------------- /tools/pathToJsxinc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/tools/pathToJsxinc.jsx -------------------------------------------------------------------------------- /types/after-effects/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/types/after-effects/index.d.ts -------------------------------------------------------------------------------- /types/duaef/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/types/duaef/types.d.ts -------------------------------------------------------------------------------- /types/duesf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/types/duesf/README.md -------------------------------------------------------------------------------- /types/extendscript/JavaScript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/types/extendscript/JavaScript.d.ts -------------------------------------------------------------------------------- /types/extendscript/PlugPlugExternalObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/types/extendscript/PlugPlugExternalObject.d.ts -------------------------------------------------------------------------------- /types/extendscript/ScriptUI.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/types/extendscript/ScriptUI.d.ts -------------------------------------------------------------------------------- /types/extendscript/XMPScript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/types/extendscript/XMPScript.d.ts -------------------------------------------------------------------------------- /types/extendscript/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxLaboratory/DuAEF/HEAD/types/extendscript/global.d.ts --------------------------------------------------------------------------------