Skip to content

Illustrator (Desktop) Bugs

When reporting a bug, please provide a detailed description with the following:

  1. Details of your operating system
  2. The version of Adobe Illustrator (desktop) 
  3. The steps you were taking when you experienced the issues
  4. Your expected result and the actual result
  5. Upload your Illustrator file or a video (screen recording or gif, this helps us most to reproduce the issue and resolve it)

  • Hot ideas
  • Top ideas
  • New ideas
  • My feedback

13 results found

  1. reading XMP data in scripts broken by 25.4 update.

    Illustrator 25.4 update broke scripts that try to read XMP data that worked in previous versions of Illustrator. This is the Mac version (have not tried in Windows).

    It appears to be getting the error on this line:

    ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');

    Comparing the frameworks in the package contents for 25.3.1 vs 25.4, the AdobeXMPScript framework appears to be missing in 25.4.

    Below is an example script to read font data that worked in 25.3, but errors loading the library in 25.4

    // load XMP Library

    function loadXMPLibrary() {

    if (!ExternalObject.AdobeXMPScript) {  
    
       try {  
    
           ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');  
    
       } catch
    21 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. (Applescript) do javascript command no longer works in Illustrator 2021(25.1)

    Bug report:
    When using AppleScript's do javascript in Illustrator 2021(25.1), nothing happens regardless of whether it is a file or text. The result will return a missing value. In 25.0.1, it works fine.

    https://community.adobe.com/t5/illustrator/applescript-do-javascript-command-no-longer-works-in-25-1/m-p/11737799?page=1&profile.language=en

    In the case of jsx files, it can be avoided by writing the following code. If the file extension is jsxbin, it cannot be executed. And arguments cannot be passed.

    -- solution 1
    tell application "Adobe Illustrator"
    open ("Macintosh HD:Users:username:Desktop:sample.jsx" as alias)
    end tell

    -- solution 2
    tell application "Finder"
    open ("Macintosh HD:Users:username:Desktop:sample.jsx" as alias) using ("Macintosh HD:Applications:Adobe Illustrator 2021:Adobe Illustrator. app:" as alias)
    end tell

    53 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    I am happy to share that we have fixed this bug in our latest release – 25.2 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!

  3. Illustrator RulerUnits returns Unknown for 'Feet' and 'Feet and Inches'

    Illustrator recently added 'Feet' and 'Feet and Inches' to the available ruler units; however, when a user selects one of these units, the scripting side returns 'RulerUnits.Unknown' for 'activeDocument.RulerUnits'.

    For scripting, the corresponding 'RulerUnits.*' value should be added so that developers can respond to the selected units.

    14 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    I am happy to share that we have fixed this bug in our latest release – 27.1.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

  4. Unable to control third party applications with AppleScript

    This is essentially the same issue as https://community.adobe.com/t5/indesign-discussions/indesign-16-3-2-not-authorised-to-send-apple-events-to-other-apps/td-p/12312871 except for Illustrator.

    Illustrator is missing the NSAppleEventsUsageDescription key from its info.plist file. This prevents the system from asking permission from the user to send apple events from Illustrator.

    Mac OS 11.5.2
    Illustrator 25.4..1

    To recreate:

    in terminal
    tccutil reset AppleEvents com.adobe.illustrator

    save the following AppleScript and place in the scripts menu for illustrator.

    tell application "Finder"
    display dialog "test"
    end tell

    Expected result:
    dialog in finder

    Actual result:
    AppleScript error: Not authorized to send Apple events to Finder. (-1743)

    2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    I am happy to share that we have fixed this bug in our latest release – 26.3.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!

  5. In CC2020 and later, referencing the created property of the File class returns "null”.

    Environment
    macOS 10.15.6
    Illustrator CC ver.25.1

    Step and reproduce
    1.Select menu ”File->Script->Other Script" and choose below one.

    //JavaScript File detail
    var f=File.openDialog("");
    alert(f.created);

    Expected result
    Illustrator shows "null". It must be return files created date.

    Actual result
    ”null” is returned.

    In CC2019 this property was successfully retrieved. It seems that a problem occurred after CC2020. Also, even if we put it in the 2021 family, other applications can get "created" property normally.
    "modified" property behaves similarly strangely in relation to this issue.

    This behavier shows only macOS. Windows can return as normal.

    //Japanese
    オペレーティングシステムおよび Adobe Illustratorのバージョン
    macOS 10.15.6
    Illustrator CC…

    10 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    I am happy to share that we have fixed this bug in our latest release – 27.3.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

  6. ExportOptionsPNG24.artBoardClipping broken in 2020

    ExportOptionsPNG24.artBoardClipping (set to false)

    In 2019 (23.1), PNGs exported by javascript are trimmed to the visible bounds of the object as expected when false. When true, they're the size of the artboard.

    In 2020 (24.3), the same script always produces PNGs the size of the artboard whatever artBoardClipping is set to.

    Illustrator 24.3 vs Illustrator 23.1
    Windows 10
    Script run via Illustrator (File/Scripts) as well as testing in ETSK 4.0.0.1

    It's a dealbreaker for version 24. We can't upgrade as a team unless this is fixed.

    15 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    I am happy to share that we have fixed this bug in our latest release – 25.3.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!

  7. VBScript Internal Script Execution Error in version 25.1

    Running VBScripts from File > Other Scripts is not currently functional in the latest update- however the very same scripts work fine if the scripts are opened manually (and worked as expected from 'Other Scripts' in the previous version).

    Please fix!

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    I am happy to share that we have fixed this bug in our latest release – 25.2 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!

  8. Running an Action from script

    Hello,
    In Illustrator CC latest update, my following script does not work:
    1- Select a couple paths (in script) (all of them close paths in different groups)
    2- execute my action which offset paths with certain amount

    The problem is in this new version after the action dis-select all of them except one, but before this version it worked and keep all of my selection paths still as selected ( by path I mean the new offset paths, but for all of them)

    It really made trouble for my script in the company, because some computer still does not have…

    72 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    I am happy to share that we have fixed this bug in our latest release – 26.0.0 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!

  9. Fix Adobe Illustrator CC 2019 Type Library Reference - VB scripts return error

    Illustrator CC 2019 Type Library is broken when attempting to Reference from Visual Studio.

    VB.Net or C# projects attempt to add the reference from: C:\Program Files\Adobe\Adobe Illustrator CC 2019\Plug-ins\Extensions\Scripting Support.aip, and give the attached error.

    My idea, is for Adobe to fix it!

    Older versions work fine.

    37 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We have the fix available in the latest release. Please update Illustrator using Adobe Creative Cloud application to the latest build for version Illustrator CC 23.0.2
    Please refer to our knowledge base FAQhttps://illustrator.uservoice.com/knowledgebase/articles/1844590 if you face difficulty in update.
    Or get in touch with us at any of the other support channels – https://helpx.adobe.com/support.html

    Warm Regards,
    Ashutosh Chaturvedi | Sr. Quality Engineering Manager – Illustrator
    Adobe. Make It an Experience.

  10. Illustrator CC 2018 - CEP 8 HTML Extension Resize Issue

    We are experiencing resizing issue in the latest CEP version. Our extension allows user to resize extension's window, however whenever any navigation occur, window size resets. Problem exists in Illustrator CC 2018 (22.0.1), everything is working fine in previous version (CC 2017).
    We already tried different geometry settings and extension UI types, but problem persists and seems to be related to engine itself.

    We successfully reproduced this issue with official git hub sample extension. Steps to reproduce:
    1. Open sample extension with debug mode enabled
    2. Resize window
    3. Change window location in console to any other page
    4. After…

    11 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We have the fix available in the latest release. Please update Illustrator using Adobe Creative Cloud application to the latest build for version Illustrator CC 23.0.
    Please refer to our knowledge base FAQhttps://illustrator.uservoice.com/knowledgebase/articles/1844590 if you face difficulty in update.
    Or get in touch with us at any of the other support channels – https://helpx.adobe.com/support.html

    Warm Regards,
    Ashutosh Chaturvedi | Sr. Quality Engineering Manager – Illustrator
    Adobe. Make It an Experience.

  11. Actions based on Scripts not saving after restart?

    From: https://forums.adobe.com/thread/2191151

    I located another thread from December where the consensus seems to be that this is a long standing and known bug with Illustrator.
    Permanently saving scripts in Action Set doesn't work / Scripts werden nicht dauerhaft in den Aktionseinstellungen gespeichert.

    I have spent a good deal of time working with people here on the Adobe forums to develop a script to automate a very large function of my job, and now that it is completed it should be ready to pass on to members of my team so they can utilize it as well. The problem is that…

    13 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  12. update link to illustrator 2017 sdk on https://www.adobe.com/devnet/illustrator/sdk.html

    The move from https://www.adobe.com/devnet/illustrator/sdk.html
    to https://console.adobe.io/downloads/ai left behind a broken link to the 2017 sdk.
    Easiest thing to do would be to update the 2017 sdk link on the old devnet page.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We are moving away from devnet to the Adobe io site. Moving forward that will the place to get all of Adobe SDK.
    We also have an early access program for our plugin partners. You may join our prerelease site you will get SDK builds way before we release it on public facing pages.
    Here is the link to join Illustrator prerelease http://adobe.ly/1Q3rCPI

  13. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  • Don't see your idea?

Feedback and Knowledge Base