Valeriy
My feedback
34 results found
-
45 votesValeriy supported this idea ·
-
452 votes
Thanks for the suggestion. We have started to explore this feature. Will share more details soon
Thanks
AbhinavValeriy supported this idea · -
101 votesValeriy supported this idea ·
-
23 votesValeriy supported this idea ·
-
10 votesValeriy supported this idea ·
-
655 votesValeriy supported this idea ·
-
355 votes
Hi,
The ability to add suffix to JPEG/PNG is now available in InDesign’s latest release 19.0. Please let us know your feedback in comments.
—
Sanyam Talwar (he/him)
An error occurred while saving the comment An error occurred while saving the comment Valeriy commented@Greg yes, I have a script for this task.
I used it to handle multiple formats and DPI, so it's more complicated.
Rename .txt to .jsx and have funAn error occurred while saving the comment Valeriy commentedI made a workaround for it using script and script label.
Select a page using page tool, assign a script label to page using script label panel, then execute this extendscript:for (var q=0; q<app.activeDocument.pages.length;q++){
if (app.activeDocument.pages[q].label){
exportRange = String(Number(q+1));
app.pdfExportPreferences.pageRange = exportRange;
exportPath = "your path separated by / is here";
fullName = exportPath+"/"+app.activeDocument.pages[q].label+".pdf";
myPDFExportPreset = app.pdfExportPresets.itemByName("[High Quality Print]");
app.activeDocument.exportFile(ExportFormat.pdfType, new File (fullName), false, myPDFExportPreset);
}
}Valeriy supported this idea · -
915 votesValeriy supported this idea ·
-
25 votes
Thanks for reporting. We will review it
-InDesign Team
An error occurred while saving the comment Valeriy commentedThis issue can be worked around by executing export via script.
The application will not display the progress bar, but mouse will not be slowed as well.var ExportPath = app.activeBook.filePath;
ExportPath = ExportPath+"/"+app.activeBook.name.slice(0, -5)+".pdf";
app.activeBook.exportFile(ExportFormat.pdfType, new File(ExportPath), false, app.pdfExportPresets.itemByName("[High Quality Print]"));Valeriy supported this idea · -
1 voteValeriy shared this idea ·
-
2 votes
An error occurred while saving the comment Valeriy commentedIt's because of indd file being a database. To flush all trash data from indd you need to do Save As operation; the file is recreated from zero without trash data, you're correct here.
-
24 votes
An error occurred while saving the comment Valeriy commentedDisagreed. I work with both metric and inch systems in different projects, and I want projects to store their units in them, not in application.
-
51 votes13 comments · Adobe InDesign: Feature Requests » Cloud services (Typekit, CC Libraries etc) · Admin →Valeriy supported this idea ·
-
32 votesValeriy supported this idea ·
-
39 votesValeriy supported this idea ·
-
23 votesValeriy supported this idea ·
-
25 votesValeriy supported this idea ·
-
100 votesValeriy supported this idea ·
-
94 votesValeriy supported this idea ·
-
140 votesValeriy supported this idea ·
I neither have mac nor wrote scripts for it, but you can try