Copy link to clipboard
Copied
"I'm currently utilizing Adobe Illustrator for the task of converting PDF files into SVG format. With approximately 8,000 files in need of conversion, I opted to employ a script for batch processing. The JavaScript required for this batch conversion has been prepared and integrated into Illustrator successfully. However, a significant hurdle has emerged: after initiating the conversion process for each file, Illustrator prompts a dialog box that requires manual confirmation by clicking 'OK' to proceed.
My query pertains to circumventing this manual step, enabling the seamless conversion of all 8,000 PDF files into SVG format without necessitating manual intervention. I would greatly appreciate any insights or suggestions regarding this matter. Thank you for your assistance and time.
do you have display alerts off?
app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
Copy link to clipboard
Copied
do you have display alerts off?
app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
Copy link to clipboard
Copied
Yes It worked, thank you so much.
Copy link to clipboard
Copied
great, don't forget to turrn alerts back ON at the end of your script, otherwise you won't see any when you're working manually