rara
My feedback
18 results found
-
33 votesrara supported this idea ·
An error occurred while saving the comment -
1 voterara supported this idea ·
-
2 votes
An error occurred while saving the comment rara commentedvote both places. same request here: https://indesign.uservoice.com/forums/601021-adobe-indesign-feature-requests/suggestions/36849721-bigger-preview-in-import-pdf-panel
rara supported this idea · -
10 votes
An error occurred while saving the comment rara commentedvote both places. same request here: https://indesign.uservoice.com/forums/601021-adobe-indesign-feature-requests/suggestions/43461342-larger-preview-window-on-place-image-dialog-box
rara supported this idea · -
16 votesrara supported this idea ·
-
6 votesrara supported this idea ·
-
37 votesrara 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 rara commentedThere is an amazing script made by Mars Premedia that does what I think you are asking for. It can be used to export PDFs, JPGs & PNGs by extracting text (visible or not) with an applied paragraph and/or character style. The first time I used this script, it paid for itself! It's just that helpful. It's like having an extra employee without having to pay them. As of this posting, there is a 30-day free trial. At least try it. You won't be sorry.
As of this posting, a single-user perpetual license can be purchased by following the link below. Pay once, no subscription, use forever.
Export Named Pages Script:
https://www.marspremedia.com/software/indesign/export-named-pages
There are also 2 YouTube video tutorials created by the maker of this product. The first is the original script & the second video contains updated material from one of the more recent updates:
https://www.youtube.com/watch?v=3ldKqt1p14k
https://www.youtube.com/watch?v=DpBKyBRBJtwOne more thing. Look at his changelog! He continues to update the script with some very valuable new functionalities based on the feedback he gets from users. A scripting genius with superb customer support! I believe he really cares about his work and how it affects people's lives & I really appreciate that.
-
6 votesrara supported this idea ·
-
19 votesrara supported this idea ·
-
13 votesrara supported this idea ·
-
58 votesrara supported this idea ·
-
12 votesrara supported this idea ·
-
27 votesrara supported this idea ·
-
404 votes
Hello All,
Kindly provide more information about this ask. How do you plan to use the Action Panel in InDesign? Do you want it to work exactly like that in Photoshop? What are the most important actions/operations that you want to record?
Thanks
Abhinav Agarwal
Product Manger – InDesignrara supported this idea · -
1 voterara shared this idea ·
-
12 votesrara supported this idea ·
-
14 votesrara supported this idea ·
var doc = app.activeDocument;
var sel = doc.selection;
if (sel.length != 2) {
alert("Please select exactly 2 groups OR 2 individual objects.");
} else {
var group1 = sel[0];
var group2 = sel[1];
var group1_center = [group1.geometricBounds[1] + (group1.geometricBounds[3] - group1.geometricBounds[1]) / 2, group1.geometricBounds[0] + (group1.geometricBounds[2] - group1.geometricBounds[0]) / 2];
var group2_center = [group2.geometricBounds[1] + (group2.geometricBounds[3] - group2.geometricBounds[1]) / 2, group2.geometricBounds[0] + (group2.geometricBounds[2] - group2.geometricBounds[0]) / 2];
var group1_new_center = [group2_center[0] - group1_center[0] + group1.geometricBounds[1], group2_center[1] - group1_center[1] + group1.geometricBounds[0]];
var group2_new_center = [group1_center[0] - group2_center[0] + group2.geometricBounds[1], group1_center[1] - group2_center[1] + group2.geometricBounds[0]];
group1.move(group1_new_center);
group2.move(group2_new_center);
}