We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4910387 commit 1b34c9eCopy full SHA for 1b34c9e
zxpExtracter.jsx
@@ -0,0 +1,10 @@
1
+//Run it in InDesign CC and will get extracted extension folder.
2
+
3
+(function(){
4
+ var f = File.openDialog("Please select your zxp installer file.");
5
+ f.fsName.match(/(.+?)(\.zxp)/);
6
+ var fdr = new Folder(RegExp.$1);
7
+ if (!fdr.exists) fdr.create();
8
+ else return;
9
+ app.unpackageUCF(f, fdr);
10
+})();
0 commit comments