rui huang
Participant
rui huang
Participant
Activity
Dec 26, 2024
11:35 PM
Hi Souvik, when I reset security, add folder path to trust , now I can process preflight via vbscript. Set pdDoc = avDoc.GetPDDoc Set jsObj = pdDoc.GetJSObject Dim jsCode jsCode = "var oProfile = Preflight.getProfileByName('Convert fonts to outlines'); var myPreflightResult = this.preflight( oProfile);" AForm.Fields.ExecuteThisJavaScript jsCode
... View more
Dec 20, 2024
01:52 AM
There's no generic way of doing it. The code must be embedded in each file for it to work.
If you want to run it on multiple files then use an Action.
... View more
Dec 03, 2024
11:17 PM
You're welcome!
... View more
Oct 03, 2024
08:45 AM
Hi @rui huang,
Sorry for the delayed response. I'm following up to check if you have found an answer to your question. We have a detailed help page that talks about color conversion with Acrobat: https://helpx.adobe.com/acrobat/using/color-conversion-ink-management-acrobat.html. Please go through this and let us know if you have further questions.
~Tariq
... View more
Aug 08, 2024
08:13 PM
1 Upvote
@Charu Rajput , Thanks for sharing how to change fill and stroke color by directly replacing the color, solved my problem. https://community.adobe.com/t5/illustrator-discussions/change-color-swatch-to-other-color-swatch/m-p/13487155
... View more
Jul 17, 2024
12:54 AM
I got a tip from somewhere else, the following should be OK, I hope it is useful to everyone set myFolder to (((path to desktop) as text) & "thScript:temp:") tell application "Finder" set pdfFileName to "test.pdf" set filePath to myFolder & pdfFileName tell application "Adobe Acrobat" activate open file filePath tell document 1 do script "var oProfile = Preflight.getProfileByName('Convert fonts to outlines'); this.preflight(oProfile);" end tell save document pdfFileName to file filePath close document 1 saving no end tell end tell
... View more
Jul 16, 2024
12:48 AM
Hi @rui huang, I've made a few tweaks to your function. To access the color(s) of a compoundPathItem, you must access it's first PathItem. For example:
function getStrokeColorName(compoundItem) {
var colorName;
if (
!compoundItem.hasOwnProperty('pathItems')
|| 0 === compoundItem.pathItems.length
)
return;
var firstPathItem = compoundItem.pathItems[0];
if (firstPathItem.strokeColor instanceof SpotColor) {
var stColorName = firstPathItem.strokeColor.spot.name;
if (stColorName === "Diecut") {
return stColorName;
}
}
return colorName;
};
Note that this function returns undefined if no spot stroke color is found. As written, there is no reason for the `colorName` variable, but I assume you will need it for your code.
- Mark
... View more
Jul 03, 2024
07:47 PM
TRY67, thanks a lot, I can use AppleScript to automate the conversion to EPS. Here is a simple example. set myFolder to (((path to desktop) as text) & "thScript:temp:") tell application "Finder" set pdfFileName to "123_TH.pdf" set filePath to myFolder & pdfFileName tell application "Adobe Acrobat" activate open file filePath set AppleScript's text item delimiters to {"_", ".", " "} set prefix to first text item of pdfFileName set AppleScript's text item delimiters to "" set epsName to myFolder & prefix & ".eps" save document pdfFileName to file epsName using EPS Conversion with embedded fonts, images, preview, separations and annotation without binary given postScript level:3 close document 1 saving no end tell end tell
... View more
May 26, 2024
06:47 PM
2 Upvotes
code should use "do javascript of file scriptPath with arguments argumentsList"
... View more
May 24, 2024
12:37 AM
sorry, actually you are right, there is no problem with the code, just set the security permissions with illustrator.
... View more
May 18, 2024
01:09 AM
In the end no one who is capable of making this script. I thought it was very simple to apply and that a programmer could be able to do it quickly and easily. Apparently I was wrong. :'(
... View more
May 13, 2024
12:27 AM
You're welcome.
... View more
May 01, 2024
06:11 PM
because PC may be missing font, must convert all text to outline when open, how to preset this ?
... View more
Apr 24, 2024
05:31 PM
Hello, expert, have a good day. how to use script to check whether have outline text in within the designated artboard area or not ? thanks
... View more
Apr 15, 2024
02:48 AM
Hi Carlos, I see you reply in other post, said that can use app.executeMenuCommand('Flatten Transparency'), but it will pop up a window to prompt. the action is not good for user.
... View more
Apr 12, 2024
04:29 PM
I got the answer from other posts, thanks
... View more
Apr 04, 2024
04:44 PM
1 Upvote
Beyond words to thank
... View more
Apr 02, 2024
05:41 PM
how to open pdf that is contains multiple page , and without prompt of select page?
... View more
Apr 02, 2024
12:15 AM
You are so awesome, I admire you!!!
... View more
Jun 28, 2023
05:46 AM
<moved from cc services>
... View more
Dec 06, 2022
12:35 AM
Hi @rui huang,
Adobe support only the latest two versions of the CC apps and with CC2023 being the latest you only will have CC2022 as the other option. If you absolutely need CC2021 then the only way you can get it is via contacting Adobe support. To contact support follow the instructions given below 1. Go to https://helpx.adobe.com/contact.html?rghtup=autoOpen 2. Wait a bit on the page that opens up, it should automatically open a chat popup. If that does not happen then look for a call out/chat icon at the bottom right, click over it and the chat popup should open 3. In order to talk to a human type "AGENT" in the chat box 4. If you are not able to get to the chat window, then disable your adblockers, firewall, enable cookies/scripts on your browser. If it still fails then change your browser/machine/network. P.S. Be mindful of answering anyone who sends you a private message. See the following for more information about scammers https://tinyurl.com/y7cfrr7y -Manan
... View more
Feb 23, 2022
07:43 PM
Any tips for solving this issue on a Mac?
... View more
Aug 17, 2021
05:50 AM
1 Upvote
Don’t check the PDF values in Illustrator. Export the PDF using the default PDF/X-4 or 1a preset, and check the values in AcrobatPro’s Output Preview.
... View more