Illustrator (Desktop) Feature Requests
When entering a new feature request, please provide:
- Description
- Why is this valuable to you?
- or
No existing idea results
- ~ No ideas found ~
4732 results found
-
Set exact dimensions to one object in a group that affects the entire group.
Example: I have 3 squares. 2 large ones and one small one overlapping the two. (see picture)
The task is to set the small red square to exactly 140 x 140 mm without losing the proportions in size or position to the blue or green box.
I want an exact scale up where the end result is that the red square is 140 mm x 140 mm.
I can use rulers, but the small square doesn't snap since it isn't touching the bounding box. Using this I can eyeball it and get a result like 140.062 x 140.062 mm. I need it to be 140 x 140 mm flat. And this method takes time, dragging the size back and forth since the middle square isn’t centered.
Same issue if I were to draw a 140 x 140 mm square and try to match the red one to it. It will snap in one corner of the drawn 140 x 140 mm square guide, but move away from that corner when scaled.
In this example I can of course calculate the increase to 140% and scale accordingly. Works great for this simple example, but it is much more tedious when I want to scale a text for instance or objects with uneven numbers, where I need a stack height to be e.g. 100 mm tall. Here the text often is something like 14.532 mm to start and I have to calculate 100/14.532 = scale up of 688,1365%. Just takes a lot of time.
And for items that needs scaling in two directions I need to make two separate calculations (if I wanted the new dimensions of the square to be e.g 140 x 190 mm)
What I propose is a tool/possibility to use the same technique as when aligning object, combined with the properties tab.
1. I select all 3 objects using shift or simply dragging the selection box over
them.
2. I then click the red box again without holding shift, making it an indicated selection (like when aligning objects)
3. I open up the properties tab. Either the W x H is then changed to show the dimensions of the red box, or a new input area opens up so both the entire groups outer dimensions is shown as well as the dimensions of the red square.
4. I proceed to enter my desired values in the input boxes, setting the new dimensions for the red square
5. The program scales the entire group according to the new set dimensions of the red square.Example: I have 3 squares. 2 large ones and one small one overlapping the two. (see picture)
The task is to set the small red square to exactly 140 x 140 mm without losing the proportions in size or position to the blue or green box.
I want an exact scale up where the end result is that the red square is 140 mm x 140 mm.
I can use rulers, but the small square doesn't snap since it isn't touching the bounding box. Using this I can eyeball it and get a result like 140.062 x 140.062 mm. I…3 votes -
Better options to layout and save button mode in actions
Allow editing of multiple actions at once: eg shift select a group of actions, go to action settings and set the colour for all. Allow separators in button mode.
This would help me as I have a large number of actions, grouped by the type of illustration I am working on. I usually work in button mode, so segregating by colour allows my to identify actions quickly. If I have to reset my preferences, or reload group actions, it can take nearly an hour to set this up.3 votes -
The Named Views feature should be expanded for more names, listed alphabetically, and be more easily editable..
The Named Views feature is under developed. It is useful for complex drawings with several Artboards and many layers. Its functionality can include several categories of the Illustrator program. Attached is a file with several points of improvement.
3 votes -
Allow Symbol Instances to update during master symbol editing
When making patterns or complex design based on instanced symbols it's vital to see how the seams between repeated symbols update. It would be good to see all instances (in view) update as you're editing a "master", and for the alignment tools to take the other instances into account so you can make pieces align with each other across a grid. Today the instances will only update AFTER you're done editing and it makes for a lot of going back and forth.
3 votes -
Send proof to customer
We proof every item to customers before printing. It would be great if there was a tool to send a proof that could be approved through all common design programs. Giving the customer the ability to submit for changes and do a final approval before the job goes to print.
3 votesRecent versions of Illustrator have an ability to Share for Review.
This command, accessible from the File menu, generates a link you can send to customer to proof the project. Read more about it here: https://helpx.adobe.com/illustrator/using/share-documents-for-review.html
-
Allow to export without antialiasing on Large Canvas Size
Please allow for anti aliasing: none on large canvas size. I need a large canvas for my project but I also need to be able to export pixel perfect PNGs. More info here: https://community.adobe.com/t5/illustrator/large-canvas-size-makes-pixel-perfect-art-not-possible/m-p/11698876?page=1#M256965
Oh and in the meantime PLEASE PLEASE publish this limitation in the known issues section on this page: https://helpx.adobe.com/in/illustrator/kb/large-sized-canvas-troubleshooting.html#sa_src=web-messaging
thanks
3 votes -
3D Extrude & Bevel shouldn't have a depth and rotation by default
I think it's annoying that every object that I want to apply a 3d effect to already has a 50 pt extrude depth and axis rotation by default + preview option checked.
Sometimes it takes forever to render the preview for something I don't even want, but the preview is checked by default so it immidiatly starts rendering when I open the effect window.
Would be great to open the Extrude & Bevel window with zeros in every field, saves a lot of time, especially when working with complex objects.3 votes -
About Adobe Illustrator Font Microscopic
The Adobe technician I was IMing asked me to go to "About Adobe Illustrator" to read the version I was using and the font was 2pt font. It will not increase using the "Ctrl +" option either. Please save us from needing thicker glasses and make it an 8 pt font at least.
3 votes -
Export individual artboard for PDF and images.
Can you make the export individual or range artboards for pdf and images? it would be very helpful for people who doesn’t want to export all of their artboards.
Thank you!3 votes -
Add CSS color styling option to OpenType-SVG specification, so font colors may be altered in Illustrator
Currently, OpenType-SVG color fonts come with pre-defined colors.
To provide glyphs in different shades, additional stylistic sets need to be added to the font, bloating it tremendously.
I propose to add the ability to OpenType-SVG to have certain colors of a glyph being overwritten by the application (e.g. Illustrator), so text colors can be applied to a range of glyphs just like it's done with standard monochrome glyphs.
To do so, OpenType-SVG should be able to export a set of color reference names, referenced within the glyph's SVG. An application may then assign alternate colors to those color references, so the glyph will render using these colors.
For example, an OpenType-SVG glyph may look similar to this:
(UserVoice scrambles my below code, so I attached a text file with the suggested SVG content.)
<svg xmlns="http://www.w3.org/2000/svg">
<style type="text/css"> :root { --base-color: rgba(200, 10, 10, 1); --highlight-color: rgba(255, 70, 70, 1); } .gradient-fill { fill: url(#gradient) #000; } </style> <defs> <linearGradient id="gradient"> <stop offset="0" stop-color="var(--base-color)" /> <stop offset="1" stop-color="var(--highlight-color)" /> </linearGradient> </defs> <polygon class="gradient-fill" points="0,0 100,0 0,66" /></svg>
Illustrator's swatch for font color may then switch from a single swatch to a list of swatches, representing each of the CSS color variable values (see Properties panel illustration attached).
Currently, OpenType-SVG color fonts come with pre-defined colors.
To provide glyphs in different shades, additional stylistic sets need to be added to the font, bloating it tremendously.
I propose to add the ability to OpenType-SVG to have certain colors of a glyph being overwritten by the application (e.g. Illustrator), so text colors can be applied to a range of glyphs just like it's done with standard monochrome glyphs.
To do so, OpenType-SVG should be able to export a set of color reference names, referenced within the glyph's SVG. An application may then assign alternate colors to those color references, so…
3 votes -
Apple M1 Compatibility #1 feature request!
Please compile AI for Apple M1, this is ridiculous. Only app on my Mac that is not native.
3 votesIllustrator runs natively on Apple Silicon processors since December of 2023
-
The same tool as Moho's magnet tool
Has anyone tried Moho by Smithmicro? Pretty fast vector animation tool. It has a drawing adjustment tool called Magnet. Here's how it's described in the manual: "The Magnet tool is similar to the Transform Points tool - it is used to move points around. However, instead of moving the selected points, it moves points based on the strength of the magnet. When you click with this tool, the region of strength is displayed. Any points within this region will move with your mouse, but the points closer to the center of the mouse click will move the most. (The radius of the magnet’s strength region can be adjusted in the tool options area.)"
It is so needed. It's similar to Cinema 4D's brush tool.
Not only is it super quickly to adjust the tools brush size by click dragging with alt pressed, but you can also restrict it to only selected points. It is by far the best vector tool I have used. I'm now exporting my artwork from illustrator to moho just so I can use this tool. Else it takes hours in illustrator selecting and moving each individual anchor point! (which by the way is super annoying as your point selection code has a tendency to not be sensitive enough or far too sensitive.)
Has anyone tried Moho by Smithmicro? Pretty fast vector animation tool. It has a drawing adjustment tool called Magnet. Here's how it's described in the manual: "The Magnet tool is similar to the Transform Points tool - it is used to move points around. However, instead of moving the selected points, it moves points based on the strength of the magnet. When you click with this tool, the region of strength is displayed. Any points within this region will move with your mouse, but the points closer to the center of the mouse click will move the most. (The radius…
3 votes -
Export > Rasterized PDF
Export > Rasterized PDF
Would save so much time!3 votes -
Please add automated color bar, separation color information - Print PDF output
Hi! I am missing a choice in PDF save or export. In the print industry is needed to add colour information for the customer, what colours is the artwork made from - esp. when we use solid colours. Customers need this for the approval process so we have to add this colour-bar manually. In the PDF (composite PDF) window there are Marks and Bleed choices, but there is missing a choice to choose a colour information automatically generated from the document colours - separations. The colour information can be graphical (squares with separation names) or text based (separation name in that colour).
Hi! I am missing a choice in PDF save or export. In the print industry is needed to add colour information for the customer, what colours is the artwork made from - esp. when we use solid colours. Customers need this for the approval process so we have to add this colour-bar manually. In the PDF (composite PDF) window there are Marks and Bleed choices, but there is missing a choice to choose a colour information automatically generated from the document colours - separations. The colour information can be graphical (squares with separation names) or text based (separation name in…
3 votes -
Incremental Save
Save as the next number. So file 001 will save as file 002, etc.
3 votes -
Add a custom Display Effective resolution field in Document Setup and the Links panel
Display resolution should be a custom field in Document Setup and the Links panel, and should set the default scaling of placed images in the document.
Right now, linked or embedded 'RasterItems' have a default scaling resolution of 72ppi, and you can't change it. But 72ppi is an anachronism, it doesn't reflect most use cases.
The impact is that placed images appear in the document much too large, and it wastes a lot of extra clicks to resize placed images. That could all be avoided if there was a simple way to change the default display resolution to match the resolution for the intended output, whether it's a screen, print or whatever.
Note - I'm not talking about document raster effect settings, that's a different - but related - thing. The raster effect settings resolution should follow the display resolution - while remaining a separate option.
Also, for the sake of clarity, not I am NOT talking about the resolution of the Illustrator user's display. That's... not relevant.
Display resolution should be a custom field in Document Setup and the Links panel, and should set the default scaling of placed images in the document.
Right now, linked or embedded 'RasterItems' have a default scaling resolution of 72ppi, and you can't change it. But 72ppi is an anachronism, it doesn't reflect most use cases.
The impact is that placed images appear in the document much too large, and it wastes a lot of extra clicks to resize placed images. That could all be avoided if there was a simple way to change the default display resolution to match the…
3 votes -
Advanced Blend Colors Horizontally / Vertically
- make it work with compound paths
- give the user a choice to blend HSB (Blending R and B should give G) e.g. creating a rainbow should be possible with blending colors, but it isn't in the current version.
3 votes -
Remember Kai’s Powertools?
Is there a way you can match what that program used to do? It had a way better vector effects ability to extrude and shatter, etc vector shapes and letters. It worked way better than the 3D function Illustrator has.
3 votes -
We need Watermark Panel
I have suffered several times from clients who have steals my work and doesn’t pay the remaining 50% of the contract because it is a tedious job to make changes to a design and add, each time I need to export the artboard a watermark.
It would be great to have a panel or a checkbox to apply a watermark to the entire artboard and that way we defend ourselves against bad clients easier.
And if we can add our custom watermark, much better.
3 votes -
Add expressions and more JS stuff to illustrator workflow
As an AE user, I love expressions. Is it possible to rethink Ai from this point of view?
3 votes
- Don't see your idea?