Moiz5FB2
Community Beginner
Moiz5FB2
Community Beginner
Activity
‎Mar 09, 2025
04:42 PM
Thanks you very much for the script. I managed to make an IDML from the damaged file. Now the IDML is opening and then InDesign crashes again. As for your uestion regarding cloud service, I am working on a folder in OneDrive, and I tried to recover from an earlier version, and it didn't work.
... View more
‎Mar 09, 2025
02:35 PM
Hello. I'm working on a file which got curropted and now InDesign crashes when I try to open the file. Need help in recovering the curropted file. Thanks anf regards.
... View more
‎Feb 15, 2025
04:37 AM
This code works for me. function main() {
var l = prompt("Please set type a line number (1 to 4)", "1");
resizeHeight(l);
}
main();
function resizeHeight(line) {
// app.activeDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.MILLIMETERS;
// app.activeDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.MILLIMETERS;
var sel = app.selection[0];
var w = 0;
switch (line) {
case "1":
w = 585.637;
break;
case "2":
w = 603.78;
break;
case "3":
w = 622.204;
break;
case "4":
w = 639.921;
break;
case "5":
w = 657.354;
break;
}
// alert(w);
sel.resize(
CoordinateSpaces.INNER_COORDINATES,
AnchorPoint.TOP_CENTER_ANCHOR,
ResizeMethods.REPLACING_CURRENT_DIMENSIONS_WITH,
[325.984, w],
);
}
... View more
‎Feb 15, 2025
03:47 AM
I want to change the height of selected a text frame to a fixed value in mm, anchoring the text frame from top center, via a script. No changes in width of text frame.
... View more
‎Feb 15, 2025
03:41 AM
Hello, I want to change the height of a text frame to a fixed value in mm, anchoring the text frame from top center. No changes in width of text frame. Please suggest a code. Thanks and regards.
... View more
‎Sep 26, 2024
11:16 PM
Many many thanks for the quick solution. works like a charm. Thanks.
... View more
‎Sep 26, 2024
08:55 PM
Hello, I have a document, in which footnote text is typed after the refrence text in curly braces like so: Lorem ipsum dolor sit amet {consectetur adipiscing elit}. Etiam condimentum purus nec lobortis hendrerit. Praesent vitae velit dictum, congue sapien et, vehicula velit. Aliquam a sapien {turpis}. Ut placerat nulla velit, sit amet dictum velit lobortis sed. Suspendisse efficitur finibus massa ut sagittis. Morbi ac mauris nunc. Vestibulum blandit eros ut fermentum dignissim. Aliquam viverra mattis orci. Aenean vehicula sollicitudin neque, quis feugiat odio sagittis in. Etiam tincidunt {sem nec orci ultricies semper}. Etiam consequat nulla non metus euismod, vel elementum turpis elementum. I want to extract the text inside curly braces and move the text to footnotes. Please suggest a solution. Thanks and regards.
... View more
‎Jun 10, 2024
08:19 PM
Thanks for the reply. [\w]*[nN]+[\]* this grep pattern worked for me. Kindly help with the extraction of all matching words to a new file as well. I can guess that this involves some kind of script. Thanks.
... View more
‎Jun 10, 2024
02:18 PM
Hello. I have a long list of words (one word per line) like so: "Pothole Painting Comb School Tent Ring" I want to apply character style to all the words that contain letters "n", and extract those words to a new indesign file. Please help. Thanks and regards.
... View more