Silas Yamakami
My feedback
-
119 votes55 comments · Illustrator (Desktop) Feature Requests » File Save, Import and Export · Flag idea as inappropriate… · Admin →
An error occurred while saving the comment Silas Yamakami supported this idea ·
-
23 votes3 comments · Illustrator (Desktop) Feature Requests » Type, Fonts, Text · Flag idea as inappropriate… · Admin →
An error occurred while saving the comment Silas Yamakami commented
While we wait for Adobe to fix this, I use a simple scripts to enable and disable "no break". I assigned a shortcut to it with AutoHotkey
#target illustrator
var nobreak = app.selection.characterAttributes.noBreak
app.selection.characterAttributes.kerningMethod = AutoKernType.METRICSROMANONLYif (nobreak == false){
app.selection.characterAttributes.noBreak = true;
} else {app.selection.characterAttributes.noBreak = false;}Silas Yamakami supported this idea ·
-
12 votes8 comments · Illustrator (Desktop) Feature Requests » Performance, Enhancements · Flag idea as inappropriate… · Admin →
Silas Yamakami supported this idea ·
-
20 votes4 comments · Illustrator (Desktop) Feature Requests » User Interface · Flag idea as inappropriate… · Admin →
Silas Yamakami supported this idea ·
-
3 votes1 comment · Illustrator (Desktop) Feature Requests » User Interface · Flag idea as inappropriate… · Admin →
Silas Yamakami shared this idea ·
-
10 votes2 comments · Illustrator (Desktop) Feature Requests » User Interface · Flag idea as inappropriate… · Admin →
Silas Yamakami supported this idea ·
-
16 votes5 comments · Illustrator (Desktop) Feature Requests » User Interface · Flag idea as inappropriate… · Admin →
Silas Yamakami supported this idea ·
-
4 votes0 comments · Illustrator (Desktop) Feature Requests » User Interface · Flag idea as inappropriate… · Admin →
Silas Yamakami supported this idea ·
-
20 votes2 comments · Illustrator (Desktop) Feature Requests » Type, Fonts, Text · Flag idea as inappropriate… · Admin →
Silas Yamakami supported this idea ·
-
2 votes0 comments · Illustrator (Desktop) Bugs » File Save, Import and Export · Flag idea as inappropriate… · Admin →
Silas Yamakami shared this idea ·
-
25 votes5 comments · Illustrator (Desktop) Feature Requests » User Interface · Flag idea as inappropriate… · Admin →
An error occurred while saving the comment Silas Yamakami commented
I believe it's worse when the the fonts are compressed and ultra condensed that you just can't read it.
And it would be good if we could also type the whole font name to faster locate the font we want in the system and not just the first letter.
Silas Yamakami supported this idea ·
-
8 votes
We could reproduce this issue at our end, following are the findings
1. This issue is reproducible in CPU, GPU Rendering and Print Preview(thumbnail).
2. Reproducible in older versions as well including Illustrator CS6 (not a new break in CC 2018)
3. Works fine in Overprint Preview
4. Works fine in Print & PDFPlease confirm above observation match with the problem reported in this issue
Silas Yamakami supported this idea ·
While we wait for this change, we can use a script to save the file in the desired PDF preset.
Just save a JSX file with this code:
function saveAsPDF() {
var pdfFile = new File(app.activeDocument.path + "/" + app.activeDocument.name.split('.')[0] + '.pdf');
var pdfOptions = new PDFSaveOptions();
pdfOptions.pDFPreset = "[PDF/X-1a:2001]"; //insert the preset name as it's written in Illustrator
app.activeDocument.saveAs(pdfFile, pdfOptions);
}
saveAsPDF()
Then run the script by adding it to your Illustrator scripts folder or other methods like AutoHotKey, drag and drop... I use Streamdeck to run it.
To not have the warning every time you try to run the script, create this single time use script:
#target illustrator
app.preferences.setBooleanPreference("ShowExternalJSXWarning", false);