assama84403393
Explorer
assama84403393
Explorer
Activity
‎Aug 08, 2024
05:24 AM
Hello @Yoshi31550171n9x1, We understand that encountering technical issues can be frustrating. Would you mind trying the suggestions shared in this help article (https://adobe.ly/4ckPMCm) and letting us know if it helps?
Looking forward to hearing from you.
Thanks,
Anubhav
... View more
‎Oct 14, 2023
08:22 AM
Mike is correctly showing the way to change the default for TextEdit to plain text.
If you only need that occasionally, you can create a new file and choose Format > Make Plain Text before pasting the script.
... View more
‎Sep 02, 2022
07:35 AM
1 Upvote
Assuming the point size is always offset by spaces and is the only standalone number in the name:
var aps = app.activeDocument.allParagraphStyles;
var i = aps.length;
while(i--) {
aps[i].name = aps[i].name.replace(/ ^\d+ /g," " + aps[i].pointSize + " ");
}
This also assumes that you've already change the point size in the style. If you wanted to change the point size with a prompt it'd be:
var aps = app.activeDocument.allParagraphStyles;
var i = aps.length;
var p1 = prompt("old point size");
var p2 = prompt("new point size");
while(i--) {
if (aps[i].pointSize == Number(p1)) {
aps[i].pointSize = Number(p2);
aps[i].name = aps[i].name.replace(p1, p2);
}
}
Haven't tested yet as I have to take the kids to school
... View more
‎Feb 15, 2021
09:31 AM
I'd like to be able to use F13, F14 etc for shortcuts, as well as the ALT modifier, especially in actions and across all Adobe software. This will open up the potential for 120 shortcuts that can be assigned.
... View more
‎Jul 30, 2020
06:18 AM
I hope so!
... View more
‎Jul 22, 2020
04:37 AM
Yes works perfectly now. Thank you
... View more
‎Jul 10, 2020
09:22 PM
1 Upvote
Also note, if you are using Visual Studio Code and ExtendScript Debugger, you need "//@include", eg. //@include "../lib/otherFile.js" I don't think it matters which extension you use. I've not had trouble with .js and .jsx anyway. Using .jsxinc just seemed unnecessary so I gave it up. Mark
... View more