Silas Yamakami
My feedback
16 results found
-
36 votes
Silas Yamakami supported this idea ·
-
Characters on the path disappear with command “Outline Text” in version 27.7.0 or just explode all over the canvas
-
textosnormais.png 2749 KB -
textosemcurvas.png 45 KB -
10f50a3c-2400-486e-b520-07820f349036.mp4 2387 KB -
Screenshot 2023-07-26 at 8.58.29 AM.png 802 KB -
Screenshot 2023-07-26 at 8.57.04 AM.png 679 KB -
Screenshot 2023-07-24 092605.png 237 KB -
Screenshot 2023-07-24 092527.png 247 KB -
Adobe Illustrtor Bug.mp4 46747 KB -
E7609CB6-0CF3-4EF4-AAE5-8DE6930732B1.jpeg 609 KB -
64E373A6-7ED9-45D9-BEEB-896CAE7F912A.jpeg 487 KB -
542333D8-805A-4AAF-ACC9-6FFF1B4DB34E.jpeg 515 KB
29 votesThis issue is fixed in latest beta and prerelease builds. Prerelease and Beta builds are available Creative Cloud Desktop Beta and Prerelease Apps section.
An error occurred while saving the comment Silas Yamakami supported this idea ·
-
-
19 votes
Silas Yamakami supported this idea ·
-
45 votes
An error occurred while saving the comment Silas Yamakami commented
Please add option to enable Font preview on Find Font not just in preferences
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 ·
-
84 votes
I am happy to share that we have fixed this bug in our latest release – 27.0.1 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
You can update to the latest release using Creative Cloud desktop App: https://helpx.adobe.com/in/creative-cloud/help/creative-cloud-updates.html
Thank you for all the feedback. Keep it coming!
Ankit Goyal
Illustrator Team
An error occurred while saving the comment Silas Yamakami commented
This new Illustrator update brought this bug with it. The PSD file gets a doubled .psd extension but it does not update the Ai file with the new doubled extension file. This also happens in Windows 10. I didn't check others files extensions yet.
Silas Yamakami supported this idea ·
-
141 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 commented
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);
Silas Yamakami supported this idea ·
-
35 votes
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 ·
-
21 votes
Silas Yamakami supported this idea ·
-
35 votes
Silas Yamakami supported this idea ·
-
3 votes
Silas Yamakami shared this idea ·
-
11 votes
Silas Yamakami supported this idea ·
-
17 votes
Silas Yamakami supported this idea ·
-
4 votes
Silas Yamakami supported this idea ·
-
25 votes
Silas Yamakami supported this idea ·
-
3 votes
Silas 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.