Opening flash drawing in illustrator?

I drew an illustration for a local business in Flash using mostly the line tool. When I try to open it in illustrator, it acts as if it is not vector anymore, and when I try to do a live trace it looks terrible. I thought flash was vector? What am I doing wrong and how do I get it into a vector form without having to retrace the whole thing in illustrator.
thank you!

You will need to downsave the file to an older version of Autocad or export it as a PDF or possibly an EPS.

Similar Messages

  • Opening AutoCad drawing in Illustrator CS6

    I am very skilled in CS5 and CS4, however I have updated to CS6, However I am unable to open a simple autocad .dwg into CS6
    I am using Autocad 2013
    I did not know if i need to down save the file to an older autocad file. Or is there a new way of opening an autocad file into CS6
    Thanks
    Jake

    You will need to downsave the file to an older version of Autocad or export it as a PDF or possibly an EPS.

  • I installed CS3 Design premium upgrade yesterday onto my new mac OS X Yosemite 10.10.1. You gave me a new serial no (Case 0186381031). I have been able to open Photoshop, Bridge, Dreamweaver and Flash. The Illustrator, Indesign and Acrobat applications ar

    I installed CS3 Design premium upgrade yesterday onto my new mac OS X Yosemite 10.10.1. You gave me a new serial number. I have been able to open Photoshop, Bridge, Dreamweaver and Flash. The Illustrator, Indesign and Acrobat applications are not in my applications folder although there are folders in there with those names containing associated items. How can this have happened and what can I do?

    Janetc72338130 what happens if you try to reinstall Illustrator CS3, InDesign CS3, and Acrobat?  What version of Acrobat are you installing?

  • I can't open Flash, Illustrator or Dreamweaver CS6

    Hi everyone !
    I have a very big problem :
    I can't open Flash, Illustrator or Dreamweaver CS6.
    For the two last, I think downloading the latest version (CC) would solve the problem.
    But I need to keep Flash CS6 to open my client AS2 files.
    It stopped working for nothing (no updates or anything new).
    When I try to launch : Dreamweaver and flash icons move and then stop. And Illustrator icon won't even move. And I don't get any launch screen or anything.
    I tried to download again the softwares, to restore the preferences...
    I'm on Mac OSX 10.9.1.
    Thanks for your help !

    Hi everybody !
    I uninstalled everything, cleaned preferences, everywhere I could find them, cleaned my computer, repaired permission, etc...
    And then re installed the adobe softwares I need...
    And still, I can't turn on flash or dreamweaver CS6 AND CC.
    Fortunately, I have my old notebook that I can run everything on to make what I need for my clients but it's an old one and it's really slow
    The last solution I can think of is to re-install all my computer.
    I really don't understand
    I'll do that this weekend, I think... it should work... hopefully...
    Regards,
    Nastasia

  • Using Flash objects in Illustrator

    I have a lot of vector objects (icons/graphics etc.) that
    were created in Flash CS3 (not by me) and I want to use/import
    these objects into Illustrator CS3 so that I can modify them
    (change colors, rearrange various shapes in each object etc.). I am
    not very familiar with Flash, but I am very experienced with
    Illustrator, which is why I want to get the objects into
    Illustrator for editing.
    I have tried selecting the object on the Flash Stage and then
    choosing File then Export...I select Illustrator 6.0 as the format
    (the latest version of Illustrator it will export in) and save it
    as a .ai file. When I open the file in Illustrator CS3 only part of
    the object (~40%) appears. Many of the shapes that make up the
    object are missing. If I just select the object and choose Copy
    then Paste into Illustrator the same thing happens.
    I've got to believe that there is an easy/more direct way of
    doing this. As an FYI, each of the objects is saved as an .FLA file
    and a .SWF file.
    Thanks in advance for any help!!!
    Andrew

    I moved the thread to the Illustrator forum.
    You can modify the clipping path just as you do a normal path, just select it in the Layers panel and use the Scale Tool, Free Transform Tool, etc but that shouldn't be necessary, with View->Smart Guides selected you can easily draw a rounded rectangle from the upper left corner to the bottom right corner of the image and thus have it the exact size that you need. While you drag with the Rounded Rectangle Tool you can also use the Up and Down arrow keys to change the roundness of the rectangle on the fly.

  • Flash Drawing API error?

    Hi!
    I think Flash drawing API is not working like it should...
    Test this:
    var W:Number = 12;
    var H:Number = 12;
    function drawRectExt():void
                this.graphics.clear();
                this.graphics.lineStyle(1,0xFF0000);
                this.graphics.beginFill(0xFFFFFF, 1);
                this.graphics.drawRect(0,0,W,H);
                this.graphics.endFill();
    function drawRectInt():void
                this.graphics.lineStyle();
                this.graphics.beginFill(0xFF0000, 1);
                this.graphics.drawRect(W*0.2,H*0.2,W-W*0.4,H-H*0.4);
                this.graphics.endFill();
    drawRectExt();
    drawRectInt();
    This is the result (and the error?):
    Why Flash doesn't draw the inner box (red) in the middle of the outer box?

    Hi again kglad!
    first I want to thank you for your help with this..
    now, I have tested your code with "intSqSide = 7;"
    and it looks good at 100%, but if you zoom it you will see that it's not centered.
    In numbers, with intSqSide = 7, the code looks like this:
    function drawRectExt():void {
        this.graphics.clear();
        this.graphics.lineStyle(1,0xFF0000);
        this.graphics.beginFill(0xFFFFFF, 1);
        this.graphics.drawRect(0,0,12,12);
        this.graphics.endFill();
    function drawRectInt():void {
        delete this.graphics.lineStyle();
        this.graphics.beginFill(0xFF0000, 1);
        this.graphics.drawRect(3,3,7,7);
        this.graphics.endFill();
    My last version was:
    function drawRectExt2():void
                this.graphics.clear();
                this.graphics.lineStyle(1,0xFF0000);
                this.graphics.beginFill(0xFFFFFF, 1);
                this.graphics.drawRect(-0.5,-0.5,12,12);
                this.graphics.endFill();
    function drawRectInt2():void
                this.graphics.lineStyle();
                this.graphics.beginFill(0xFF0000, 1);
                this.graphics.drawRect(2,2,7,7);
                this.graphics.endFill();
    I think it's logic to offset in X and Y direction the width/2 of the line. Because Flash draws the line centered, there should be an option to change that, like in Illustrator, where you can draw the stroke centered, aligned to inside or aligned to outside.
    I don't know why Flash does not support this feature!
    It's really frustrating to draw lines in this way. If I draw a box with 12px side and 1px contour, I want that box with those values! not 11px inside, and not with an offset of half pixel in each side!.

  • Issue with transferring from Adobe Illustrator Draw to Illustrator on the desktop

    I am having trouble getting my Adobe Illustrator Draw files to Illustrator on the desktop.
    Here is the error: "The file "Project-Drawing 1.draw" is in an unknown format and cannot be opened."
    I have updated my Illustrator CC 2014 and signed in to my Adobe ID. It works fine going to Photoshop but not Illustrator. I want to take advantage of the vectors and layers so I need it to go to Illustrator.

    This error message can occur if you have a mismatch of Adobe Draw and Illustrator CC. Double-check that you have the latest version of both. The latest version of Draw is 1.0.1, and the latest version of Illustrator is v18.1.1.
    Hope that helps,
    Frank
    Draw Engineering

  • Draw to illustrator

    How do I get from Draw to Illustrator? I have Illustrator CS6 - will it be possible?

    The Send-to-Illustrator button should appear on the share menu (which appears when you tap on the share icon in the top right of the sketch view) if you have a subscription to Illustrator CC.
    If you tap and don't see the file open up in Illustrator on your desktop, try double-checking the following:
    1) Make sure you have the latest version of Illustrator (v18.1.1) installed.
    2) Make sure your "Creative Cloud" app is running on your desktop. If it is, you should see the Creative Cloud icon in your menu bar on the mac and in your taskbar on windows. This is the app that listens for the notifications from the Creative Cloud server and launches Illustrator in response.
    3) Make sure that both the Creative Cloud app on your desktop and the Draw app on your iPad are both signed into the same Adobe ID.
    4) Make sure that the time on your iPad is in sync with the time on your desktop. The notification from the iPad to the desktop is designed to expire in 24 hours, so if the times vary by more than that, the notification may not come through.
    5) Try restarting the Creative Cloud app on your desktop.
    6) Try signing out of the Draw app on the iPad and then signing back in. (You can sign out by tapping your Adobe ID in the settings panel.)
    Hope that helps,
    Frank
    Draw Engineering

  • Can't open the application "Adobe Illustrator CS6.app" because it is not supported...

    UPDATE - Ahhh haaaa!  If I log in with the guest account Illustrator works fine! WTF!? Oh well, at least I have a direction to be working towards, thanks for all the suggestions and assistance Adobe Community!
    That was sarcasm by the way...
    UPDATE - Just installed the latest Illustrator update from Adobe - still not loading. Tried reseting the iMac's PRAM, no luck.
    UPDATE - I've just reinstalled the whole CS6 Suite, and the only things that have changed are that I now have a little white no entry sign over Illustrator (it still won't load) and I also have 1.5GB of application updates to do
    I don't have any direct evidence but I'm guessing this is a Mavericks incompatibility judging by the other issues people are having with Illustrator. Any suggestions are welcome!
    I've been using CS6 on my iMac for the past year (3.2GHz Intel Core i5, 32GB ram).  Everything running fine, no problems.
    Then I get the popup from Apple saying to upgrade to Mavericks, so I did. After updating my Java version, for the next two weeks everything carried on running fine. Until just now.
    I finished working on an Illustrator file, saved it and then exited, only to remember I needed to make one more small change. So I clicked on the AI icon and got this error message;
    'You can’t open the application “Adobe Illustrator CS6.app” because it is not supported on this type of Mac.' Eh???
    I tried doing a reboot thinking that maybe something had just gone wonkey and needed resetting. Still no luck. So I reinstalled Java again. Nope. Then I tried every other CS6 app and they all ran fine.
    Does anyone know what could cause Illustrator CS6 to be working fine for weeks and then suddenly become an unsupported app? These things always happen with you're right up against a deadline! I NEED ILLUSTRATOR WORKING NOW! HEEEEEELLLLLLLPPPP!
    James

    I had the same issue and resolved it
    I first remove the prefs folder and the plist files for illustrator in ~/Libary
    next I logged off,
    then I uninstalled illustrator using the adobe uninstaller(http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html)
    Next I reinstall illstrator
    after that it worked for me.

  • How can I choose a font besides Myriad Pro as default when opening existing PDFs in Illustrator?

    I already know how to do this for new documents.
    But I work with PDFs generated in AutoCAD.
    When opening these files in Illustrator, the default font is always set to Myriad Pro.
    How can I substitute my desired font for Myriad when opening EXISTING files, short of copy/pasting into a new file? That workaround is just as time-consuming as resetting the font every time I work on a new document.
    Illustrator has to be referencing something when defaulting to this font. It seems unbelievable that this setting cannot be altered.
    Any ideas out there?

    We get autocad dies from a variety of sources, quite often the font is .txt which susbtitutes to myriad. I use find font  to substitue myriad to arial.
    Since no doucment is open, changing the New document profiles does not help to get rid of Myriad.
    You can record an action for this and set a hot key. The action is pretty fast

  • Problem with fonts when opening a pdf in Illustrator

    Hi all! I'm working on a pdf. I do NOT have the original. So I've found it's easier to open the pages in Illustrator, make edits, and resave as a pdf. The problem is that Illustrator is converting some text to outlines. It is saying I don't have the font, but I do. In fact, on the same page I'll have 4 lines... and some will be converted to outlines and some won't... and they are all the same font. Is there a way to tell Illustrator to NOT convert the font to outlines? I don't mind if it uses a substitute font... it's easy to go in and change the font to the right font. But I don't want the text converted to outlines. Thanks.
    Julie
    PS I'm using CS 4 on a Mac.

    Thanks, Scott. But I'm not sure what you mean by "pretty standard." Are you saying this is, in fact, default behavior in AI 14?
    I'm still at AI 12 (CS2), and "standard" behavior (when the font is not available) is for Illustrator to do a font substitution, not automatically convert the type to outlines.
    Is this, perhaps, what the new 'Missing Glyph Protection' does in AI 14 (as Myle suggested in post #1)?
    If, in fact, this is the new default behavior, I would hope that Illustrator provides a warning (and an option to not proceed) given the highly destructive nature of converting type to outlines.

  • You can't open the application "Adobe Illustrator CS2.app" because PowerPC applications are no longer supported.

    You can’t open the application “Adobe Illustrator CS2.app” because PowerPC applications are no longer supported.
    what can I do?

    Adobe Creative Suite 2 (CS2)'s Photoshop running in Snow Leopard Server installed into Parallels 8 for use in Lion or Mt. Lion:
                                  [click on image to enlarge]
    Apple is now selling Snow Leopard Server for $19.99 + sales tax & shipping costs at 1.800.MYAPPLE (1.800.692.7753) - Apple Part Number: MC588Z/A (telephone orders only).  Smarmy, self-important forum members will have to pay extra!

  • Can't open PDF's in Illustrator CS5

    I have just recently upgraded from CS4 to CS5. Now I cant open PDF's with Illustrator CS5. Right clicking the pdf and selecting "open with" does not show Illustrator in list. Also, I have attempted to browse to the actual Illustrator .exe file and choosing this directly. It will then only open pdf with Acrobat.

    Can you not open pdfs by using the Open command in Illie?
    It sounds like you are on Windows.
    On a Mac you can open files by dragging their icons over the icon of the programme (or an alias/shortcut of it, as in the Dock).
    Not sure if that works on Windows, but give it a try.

  • Can not open any files with Illustrator CC on windows 8.1

    I can not open any files in Illustrator CC. It comes with an error message and shuts down. I run with the Danish version and windows 8.1. - help?!!

    I just get this:
    "Adobe Illustrator CC has stopped working - One problem was the fault of the program ceased to function properly. Windows close the program and notify you if a solution is found"
    not useful..

  • Can't open EPS files in Illustrator CS3 since installing CS6

    I'm on Windows 7, and need to be able to open .eps files with Illustrator CS3. Since installing CS6 yesterday I'm no longer able to associate EPS files with Illustrator CS3. When I right click an eps and go to "open with", only Illustrator CS6 is listed. When I "choose default program", only Illustrator CS6 is listed. If I "browse" and manually select the Illustrator CS3 executable, it still defaults to CS6. Using the same process with .ai files works fine, there is no issue. However these .eps files are not behaving like .ai files. If anyone could suggest a solution to my problem I would be very grateful.
    EDIT:
    Also, attempting to set the default program through the "set associations" control panel doesn't work, after selecting the Illustator CS3 executable it still shows up as CS6.

    Some research solved my issue. Need to create a registry entry for Illustrator CS3 (v13) in the eps file extension section of the windows 7 registry.
    1. Navigate to:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.eps\OpenWit hProgids
    2. Create a new "binary value" key called "Adobe.Illustrator.13" (leave the value blank).
    That's it. CS3 is now a valid choice for eps files. Hope this helps anyone who has the same issue.

Maybe you are looking for

  • F.13 clearing with tolerance

    Hi Experts, We are clearing Employee vendor document line items through F.13, below configuration rules made in the OB74. Criterion 1   = ZUONR   Assignment field Criterion 2   = DMBTR   Amount filed Criterion 3   = HKONT   Line item GL account It is

  • How to Tuning this sql statement

    hi my friend:                         SELECT    ie.ImportEntityAutoID,                                     ie.ImportRawDataAutoID,                                     ie.Amount,                                     s.NAME AS StatusName,               

  • Unable to open/setup ichat.

    i've read some FAQ's already, and it says that the first time i open ichat a set-up screen is supposed to pop up. but that never happened. and now, when i try to open ichat, nothing pops up at all, but the icon is still down in my dock, like the prog

  • Smart Collection gymnastics

    Who finds Smart Collections to behave in a most peculiar fashion? They certainly do when dealing with collections. If I create a Smart Collection with attributes: "Match all; Collection contains all Jewellery brochure; Rating is 5 stars", then I find

  • Editing template using script.

    I have read that it is possible with the scripting in after effects to batch create videos using templates-for example a script which provide instructions to AE to take data(text or images) from a xml, csv or .txt file and render out the video in any