Skip to content

Instantly share code, notes, and snippets.

@martgnz
martgnz / pdf2ai.jsx
Created January 17, 2018 15:08
Batch convert PDF to AI
(function(thisObj) {
main();
function main() {
var pdffiles = File.openDialog(
'Select one or more PDF files',
'*.pdf',
true,
);
if (pdffiles === null) {
return;