Silas Yamakami
My feedback
16 results found
-
7 votes
@enisio We are able to reproduce this issue with the steps you provided. Thanks for not letting this go
Silas Yamakami supported this idea · -
41 votesSilas Yamakami supported this idea ·
-
57 votes
The issue is believed to be fixed in the latest Beta build and is expected to be pushed into the Global Availability build at the end of July.
To ensure this indeed fixes the problem, please install the latest Beta build from CCD app and try to reproduce it, following the steps provided by Ton in a comment within the report.
Please reply back if Beta works for you or not.
An error occurred while saving the comment Silas Yamakami supported this idea · -
20 votesSilas Yamakami supported this idea ·
-
48 votes
An error occurred while saving the comment Silas Yamakami commentedPlease add option to enable Font preview on Find Font not just in preferences
An error occurred while saving the comment Silas Yamakami commentedI 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 · -
142 votes
Hi Everyone,
This functionality is available in our latest release build – 27.6.1.
Illustrator remembers the last preset used for saving PDF files and keeps it as the default preset.
What's New in the release - https://helpx.adobe.com/in/illustrator/using/whats-new.html
Thank you for all the feedback.
An error occurred while saving the comment Silas Yamakami commentedWhile 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);
Silas Yamakami supported this idea · -
40 votes
Illustrator Beta 29.2.10 now supports Nonbreaking space (U+00A0).
It can also be added with Type > Insert WhiteSpace Character > Nonbreaking Space command.
Please try this build and see if it works for you as expected.
My sincere congratulations to everyone. This symbol means a lot!
An error occurred while saving the comment Silas Yamakami commentedWhile 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 · -
23 votesSilas Yamakami supported this idea ·
-
38 votesSilas Yamakami supported this idea ·
-
3 votesSilas Yamakami shared this idea ·
-
23 votesSilas Yamakami supported this idea ·
-
20 votesSilas Yamakami supported this idea ·
-
12 votesSilas Yamakami supported this idea ·
-
28 votesSilas Yamakami supported this idea ·
-
3 votesSilas Yamakami shared 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 ·
A workaround while this is not fixed is to select the text on path object, move it with arrow key, outline the text and then move it back to the right position.