Questions
Recente
can you help me for changing eps to ai automatically by a script . I have a tons of Eps and need this 🙂
Buen dia Compañeros, Al abrir archivos editables que tenian una imagen en png ahora aparecen asi, alguna solucion a este problema?
Live trace is the main use for Illustrator in my workflow. I noticed the removal of the 'simplify' option from 2024's Live Trace options to reduce the complexity of traced paths. In 2025 it seems to be enabled by default, and the option to disable has been removed. The result is about a 25% reduction in path anchors. In most cases thats fine, but for certain traces its means considerably worse results compared to 2024. Is there any way to gain back the option to disable it?
Intento instalar adobe illustrator en mi nueva laptop pero la ventana de instalación no abre , simplemente hace una aparición fugaz como puedo solucionarlo ?
He cambiado a un Mac Mini M4 y al seleccionar cualquier objeto, tarda un par de segundos en mostrar las herramientas en los menús laterales. Esto provoca que al mover el ratón, también se mueva el objeto seleccionado. Por otro lado, tampoco funciona el doble click para seleccionar objetos dentro de un grupo. El mouse que utilizo es un logitech MX Master 3S for AMc Gracias
Good morning everyone.I am looking to use the scripts functions in illustrator - but the default scripts I believe come with the application are not showing in the menu.I am using Creative Cloud and the latest version 29.1.Any advice would be very welcome. Sure I am doing something stupid.Thanks.PJ
Here is my script: I want it to define the color of my selected objects as spot color, but currently it skips compound paths when the selected objects have compound path. (function () {if (!app.documents.length) {alert("No active document.");return;}var doc = app.activeDocument;if (!doc.selection.length) {alert("No active selection.");return;}var sel = doc.selection;var spotColorCount = 0;var batchSize = 100;function areColorsEqual(color1, color2) {var c1 = Math.round(color1.cyan * 10000) / 10000;var m1 = Math.round(color1.magenta * 10000) / 10000;var y1 = Math.round(color1.yellow * 10000) / 10000;var k1 = Math.round(color1.black * 10000) / 10000;var c2 = Math.round(color2.cyan * 10000) / 10000;var m2 = Math.round(color2.magenta * 10000) / 10000;var y2 = Math.round(color2.yellow * 10000) / 10000;var k2 = Math.round(color2.black * 10000) / 10000;return c1 === c2 && m1 === m2 && y1 === y2 && k1 === k2;}function createSpotColor(targetFillColor) {// alert("crea
How come in the Illustrator tables after 48 there is 50 and then 50 again, it's incredible that I don't even know how to count to 50, and I have to pay for this....
Hi, I got a situation here please help me... Once I try to open a specific Vector Logo .ai file the appear the bellow error message...!!! " error were detected but could not be corrected automatically. please send the file to adobe for further analysis " {Renamed by MOD}
Attached is the error I get when opening a file from my brother who is using canva. After the file is open everything looks just fine but when i go to save as .PDF for printing (editing turned off) and when i save as .PDF with editing, both files do not show the imported art in the explorer preview nor does it show when the file is opened. It does however show the TEXT that was imorted. The ONLY workaround i've gotten to work is to rasterize the layers which reduces the quality. Is there something off with my SAVE AS presets? I also saw a msg about matching my transparency with the output when i tried one of the various save preset options. I've never had this issue with all of these charms until he started sending me designs from Canva. Note: I'm opening the Canva file in it's own window and copy/paste into my template. Not dragging directly into my design. Q1. What is causing the import error. (see attached). Is this a problem and/or is there a solution?&nb
Hi, it's embarrassing, but can anyone tell me how to edit texts in Illustrator templates? I have a Freepik and even an Elements subscription, and for the past two years, I have been trying to edit logo files, but whenever I edit them, it won't let me. Even if there are no locked files, sometimes they come in groups, and isolating them cannot help me edit them. When i click on them, thet are like images, not text, and I'm facing this with every single project unless the project file is 100 % text-based; otherwise, I cant change anything; any help will be highly appreciated.
I've been getting error messeges "you may have limited access to adobe apps or services" that i cant fix with the adobe limited acces repair. if i can fix it maybe it'll fiz the continue error: we cant verify your subscription status. when i click try again i get error 102. I've tried everything , deleted all the adobe apps, used adobe limited acces repair (found 0 errors) , i dont have any antivirus on, my tls is 1.2, please help .
Open the image in Illustrator and save it as a .tiff file. The resolution is not fixed.Note: The previous resolution value remains fixed.The tool was not working when the script was run in Extended Script.
Hi everyone, I'm trying to create a Extention in Adobe Illustrator and I want to use toggle the 'Hide Edges' option available under the **View** menu (Ctrl+H). I have tried the following commands:app.executeMenuCommand("previewEdges"); app.executeMenuCommand("showEdges");Both commands work individually, but I need a way to toggle between showing and hiding edges, just like the manual Ctrl+H shortcut.Is there a method or a specific script to achieve this toggle behavior? Or is there another command I'm missing?Any insights or examples would be greatly appreciated!Attached is a screenshot of the menu option I'm referring to.Thank you
Would any one please tell me how to delete the back ground on this picture out outside of the path- so basically I can copy the pony only and paste into a new page please. I would know how to do it in photoshop but everything is different here. Ultimately I want to cut out the pony and engrave the picture with my laser cutter- as it stands I waste alot of material because the whole background is also engraving around the cut path. I would like to place him in a scene with other horses on AI as well which I am unable to do with the back ground still there. Thank you wonderful people for helping me with the program as I am learning but v v slowly!!
I'm creating a simple large print project (240" x 100") and i'm only using a vector abstract background with text and a logo. When I save as a .pdf for print the text and logo are perfect but the background is pixelated. I've searched the internet for hours and cannot figure this out. I'm using the latest version of Illustrator 29. something.
I haven't used Illustrator before and downloaded some free icons from Adobe Stock. They are in .ai format as in the screenshot below. What exactly do you do with these? I'm wanting to create a library of assets for web design so what I'd like is to have each icon as a separate file. How is this done in Illustrator? I had assumed when I downloaded the zip file that it would contain individual files but obviously that is not the case.
I'm trying to find if there is a way to get position data from an object while it's being dragged / repositioned by the user, but I'm not finding a way to get values updated until after the drop has completed. For context, I've tried events with AIHostAdapter as well as native events in the C++ SDK directly, but neither seem to have any events for dragging position updates, their events only seem to be before and after dragging objects, so I'm resorting to polling. Currently I can poll an object's left/top position during dragging, however the results are the original position until the drag is completed, it's only updated after drop. Have tried polling: app.activeDocument.selection[0].left; app.activeDocument.selection[0].top; As well as: app.activeDocument.selection[0].geometricBounds[0]; app.activeDocument.selection[0].geometricBounds[1]; But neither seem to update until after the drag is complete.
Hi I have an ongoing challenge in AI.The example is that i have two picture frames beside each other containing a picture and a color layer. They are identical (copy pasted). I can move both the pictures and the color layers within the frame just fine. I then relink the picture in one of the picture frames (since you dont need to identicle frames) and when the new picture is linked / visible it is "locked" so that i can move it, like in the picture frame beside it. It does not matter if the picture is jpg, png or other.Can anyone please help me out here, this is super frustrating.
Good morning folks. For those who celebrate, Happy Thanksgiving! My existing PC is aging. It works ok for my needs, but it rather slow when I have to render my 3D drawings in Illustrator. I want to up my game and upgrade Illustrator to something a ittle more current. I've used a 10 year old versionof Illustrator to draft up stickers for vintage Alfa Romeos. The version of Illustrator I've been using has suited my needs. I'm now branching into something new, drawing vintage Coleman Lanterns to put on the side of coffee mugs. My PC can't really keep up wth the demands of the software,I'm not a graphic artist. I only do this for the challenge of figuring out how to use the software and provide a decent representation of the lanterns. Learning and doing helps to keep my mind sharp, er less dull.Good morning folks. For those who celebrate, Happy Thanksgiving! My existing PC is aging. It works ok for my needs,
Buenas tardes, estoy necesitando la version 27 de illustrator, en mi repositorio no me sale este instalador, alguien que pueda ayudarme?
需要寻找本地的AIC文件备份并且打开它我应该在那个目录里面寻找
Running AI 25.4.8 with scripts for trace function. My script used to open AI, Trace, save and close. Stupid upgrade message at startup is now bringing whole process to screeching halt. Anyone know how to shut it off? Also the check mark to disable it for 30 days is useless.
hello there,please find me solution of writing player name and numbers on jersey.i've mentioned snip from the screen to know my exact format that how do i write names and numbers as mentioned in the snip i've to write a name and a number of one jersey and then click on the screen and then get back to another one hoping for a reply
Hi, In my project ive made these avatars. My illustrator crashed and after that evertime I try to scale my avatars I get these 2 errors. If I ungroup the parts of my avatars I dont get the error, but if I select the whole avatar or if I group it and scale it the error comes back. Please tell me theres a sollution to this because ive tried alot. Changing color settings, restarting, reinstalling, I've tried to copy and paste to a different document, nothing works. I hope someone has an anwser!
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Você já é cadastrado? Entrar
Ainda não tem uma conta? Crie uma conta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.