├── .gitignore ├── LICENSE ├── README.md ├── example ├── .debug ├── CSXS │ └── manifest.xml ├── css │ └── styles.css ├── icons │ ├── DummyImageDarkNormal.png │ ├── DummyImageDarkNormalRollover.png │ ├── DummyImageNormal.png │ └── DummyImageNormalRollover.png ├── index.html ├── js │ ├── libs │ │ └── CSInterface.js │ └── main.js ├── jsx │ └── rootscript.jsx └── package.json ├── package.json └── photoshop-dom-event.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignoring dependency folders 2 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/README.md -------------------------------------------------------------------------------- /example/.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/.debug -------------------------------------------------------------------------------- /example/CSXS/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/CSXS/manifest.xml -------------------------------------------------------------------------------- /example/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/css/styles.css -------------------------------------------------------------------------------- /example/icons/DummyImageDarkNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/icons/DummyImageDarkNormal.png -------------------------------------------------------------------------------- /example/icons/DummyImageDarkNormalRollover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/icons/DummyImageDarkNormalRollover.png -------------------------------------------------------------------------------- /example/icons/DummyImageNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/icons/DummyImageNormal.png -------------------------------------------------------------------------------- /example/icons/DummyImageNormalRollover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/icons/DummyImageNormalRollover.png -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/index.html -------------------------------------------------------------------------------- /example/js/libs/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/js/libs/CSInterface.js -------------------------------------------------------------------------------- /example/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/js/main.js -------------------------------------------------------------------------------- /example/jsx/rootscript.jsx: -------------------------------------------------------------------------------- 1 | #target photoshop -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/example/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/package.json -------------------------------------------------------------------------------- /photoshop-dom-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonio-gomez/photoshop-dom-event/HEAD/photoshop-dom-event.js --------------------------------------------------------------------------------