Issues with Importing and Flattening Complex AI files (Flash CS3)

Is there an easy way to break apart vector graphics imported
from Adobe Illustrator? My group creates most of the graphics in
Adobe Illustrator and then we import them into Flash to animate
them. Unfortunately, with layers and layers on complex drawings,
Illustrator 3D, clipping masks, compound paths, etc... Flash tends
to choke. If we take the time to break the graphics apart to a flat
drawing, it drastically improve speed, and shrinks the file size of
the resulting swf. Currently we distribute everything to layers,
break then, and repeat. If there are clipping masks, then we have
to enter each clipping group movie clip and delete the mask one by
one to continue breaking the image apart. It's very time consuming
and reduces our workflow. Is there a better way?
Thanks in advance....

So far, I'd like to report on 3 different solutions to this
problem:
1. Flattening the image in illustrator, by first, expanding
any 3D objects (usually a good idea to preserve the original 3D
either in another file -- keep the original), flattening the
artwork, then release the clipping masks and compound paths, then
ungrouping everything, and saving the resulting file (Preferably as
a new file to keep all the original in case it needs to be adjusted
later). Then import to flash and break it apart.
Known Issues: Sometimes, pieces of the Illustrator 3D objects
will move to the front when you release the clipping masks. You can
move them back in illustrator or flash to correct the problem.
2. Export the file from illustrator directly to a swf. Then
drag that swf into the library and flatten the file from there.
Known issues: The generated curves are approximated and don't
always match up perfectly.
3. Export the file from illustrator to a EPS file format,
then drag the resulting file into flash.
Known Issues: The generated curves don't always match up to
the original and some 3D pieces may end up in front that belong in
the back.
4. Export as a raster file.
Known Issues: You cannot zoom in tight when needed and still
maintain the crisp lines (unless you rasterize at a very high
resolution. This will unfortunately result in a large file size.
The most accurate method for preserving original quality so
far is the original method from the originating post.

Similar Messages

  • Read This First If You Are Having a BASIC Issue with Importing and Burning!

    Most people who are new to iTunes and are not computer saavy find that their issues with burning and more typically importing are due to their security software "fighting iTunes". In most cases this is not apparent with an error message but just causes very slow sluggish performance and looks on importing as if the songs never import. Therefore an initial place to check is to disable your security system (make sure you are not connected to the internet and remember to enable upon completion!)and try to import. In many many cases users find that this corrects their problem. I have found that this is the issue 80% of the time when helping people with import issues from CD's. For some reason this is a much more prevalent issue with iTunes 6.0 than previous versions. Try it - You may like it.
    HP Pavilion 7905   Windows XP  

    Read the comment!

  • Issue with Importing and Backups

    I am trying to organize all of my photos using a simple scheme which is the following:
        1) import all photos into a new Aperture library.
        2) using the Aperture Import setting to automatically put a backup of each picture on an external hard drive.
    This way, I can let Aperture manage everything, but I still have a raw copy of all of my original photos and they are not tied to any specific app so I can easily do whatever I want with them in the future.
    If I just do a normal Import (i.e. Command -I) this works great.  However, if I import any other way the files are not copied to my external hard drive.  For example, if I drag a picture or folder onto the Aperture window it will import it but it doesn't make a backup copy.  Or if I choose the Import Folders as Projects it doesn't make a backup copy
    Please help!  Thanks.

    Unfortunately the bricks in the Import window (of which the backup you are referring to is one) only get run when you import through the import window.
    No way around that that I know of. You'll need to setup another backup scheme for the images you import via other methods.
    regards

  • Having issues with SP9 and IDMUI5/IDMREST SCA files

    Hello,
    I've been working through an upgrade to SP9 and have run into two issues related to some SCA files. I'm hoping others might be able to shed some light on how to resolve them. The issues primarily focus on unresolved dependencies for files I'm unable to locate.
    *Prior to performing this upgrade I downloaded all relevant SP9 files.
    In performing this upgrade, I've followed these steps:
    1) update database schema. completed successfully
    2) upgrade the runtime components. completed successfully
    3) upgrade the management console. completed successfully
    4) deploy IDM user interface on NW 7.3. This is where I ran into problems.
    Problem #1 - the IDMUI5 SCA file does not pass the validation check.
    - it states there is an unresolved dependency.
    - sap.com/tc~idm~rest~ear was not found
    Problem #2 - the IDMREST SCA file does not pass the validation check.
    - it states there are two unresolved dependencies
    - sap.com/tc~odata4j~primary was not found
    - sap.com/tc~jax~rs~primary was not found
    What I'd like to understand is where the files required by IMDUI5 and IDMREST exist and how to complete the upgrade for them.
    Thanks, Paul

    I think this is the odata4 that you need for 7.3
    SCA
    ODATACXFEXT11_0-10012140.SCA
    SP11 for SAP ODATA4J+CXF-REST LIB 7.30
    0
    Info
    10352
    26.02.2014
    This might be the only package you need; it might be in your best interest to avoid manually downloading files and rely upon Solution Manager's MOpz feature to query your IdM system and let it track down all the needed packages.

  • Issue with Reading and Writing to a File

    Hello all,
    I'm having trouble when I run the following example;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.BufferedReader;
    import java.io.PrintWriter;
    import java.io.IOException;
    public class ReadWriteTextFile {
        private static void doReadWriteTextFile() {
            try {
                // input/output file names
                String inputFileName  = "README_InputFile.txt";
                String outputFileName = "ReadWriteTextFile.out";
                // Create FileReader Object
                FileReader inputFileReader   = new FileReader(inputFileName);
                FileWriter outputFileReader  = new FileWriter(outputFileName);
                // Create Buffered/PrintWriter Objects
                BufferedReader inputStream   = new BufferedReader(inputFileReader);
                PrintWriter    outputStream  = new PrintWriter(outputFileReader);
                outputStream.println("+---------- Testing output to a file ----------+");
                outputStream.println();
                String inLine = null;
                while ((inLine = inputStream.readLine()) != null) {
                    outputStream.println(inLine);
                outputStream.println();
                outputStream.println("+---------- Testing output to a file ----------+");
                outputStream.close();
                inputStream.close();
            } catch (IOException e) {
                System.out.println("IOException:");
                e.printStackTrace();
        public static void main(String[] args) {
            doReadWriteTextFile();
    }Im getting the error
    java.io.FileNotFoundException: README_InputFile.txt (The system cannot find the file specified)However the file README_InputFile.txt is definately in the same folder as the class file. So why is this not working?
    Any help would be greatly appreciated.
    Jaz

    Sorry you've lost me. All I get are error messages
    when I try to compile that statement. What am I
    missing?I don't know, it should work:
    import java.io.*;
    public class Test {
    public static void main(String[] args) throws
    IOException {
    System.out.println(new
    File(".").getCanonicalPath());
    Sorry I forgot to add the "throws IOException" bit. It works and told me that the path is;
    C:\Documents and Settings\Jaz\workspace\Tutorial
    I've amended the code so it now looks like this;
    String inputFileName  = "C:/Documents and Settings/Jaz/workspace/TutorialREADME_InputFile.out";
                String outputFileName = "C:/Documents and Settings/Jaz/workspace/TutorialReadWriteTextFile.out";but I still get the error below even though the files are present in that directory;
    IOException:
    java.io.FileNotFoundException: C:\Documents and Settings\Jaz\workspace\TutorialREADME_InputFile.out (The system cannot find the file specified)

  • Photo file issues with iWeb and Aperture....also too much duplicating!!

    A little background, before I get into my iWeb issue.....
    Years ago I tried iPhoto, but I didn't like how it duplicated all my photo files and I wasn't very fond of the file structure it created. Years later (last month) I got Aperture. Aperture (still has a long way to go) also duplicates all your files and places them in their own file structure. If I can get along with Aperture (and if it will get along with my other programs), I won't mind putting all my files into the file structure it creates. But for now, I still have my original files in the original file structure I have had for many years as a back up.
    On to my issue with iWeb and Aperture....
    To add photos to iWeb, you can either go into the iWeb media center or you can drag and drop photos from other locations.
    1st: iWeb media center
    To get my photos into the media center, I would have to load them into iPhoto (iP 6 does allow you to keep your original file structure, but it still creates .jpg files, which fills up your hard-drive. More duplicates I don't need or want). So that is out for me. iP6 will let you view and use your Raw files.
    Another way is to drag and drop your file structure directly into the media center window. I don't think this duplicates any files (at least I haven't been able to find any), but it takes an awfully long time to thumbnail all your photos (several hours and still waiting for 22K + files). Also, it won't show any Raw files. Again, out for me.
    Aperture won't let you drag and drop its library into the media center at all. So if I was to move all my files into the Aperture Library, I wouldn't be able to access them for iWeb at all.....Out for me.
    2nd: Drag and Drop
    I was able to drag and drop Raw files directly into iWeb from C1 Pro, Adobe Bridge and Adobe Lightroom.
    As I said before, I am trying to move over to Aperture. However, Aperture won't let me drag and drop photos. What is the deal here??? These are both Apple programs and they won't play nice with each other. Very annoying.
    Anyway, I put a link below to my iWeb test webpage I made. All the photos were Raw files that I did a drag and drop from C1 Pro, Adobe Bridge and Lightroom. There were no problems with the publishing.
    http://web.mac.com/phil_navarro/iWeb/Site%202/Drag%20and%20Drop%20test.html
    So, does anyone know if they can get photos from Aperture to work?? Thanks for any responses.
    Phil
    G5 Desktop   Mac OS X (10.4.4)  

    Jedi,
    Perhaps you are right.
    I am not a web developer and I will never be. I don't feel like spending countless hours learning how to use Dreamweaver or some other Pro web app. iWeb looked like a way to start making websites of my photos for my friends and family (much easier and better than Home Page on .Mac). All I was asking was for a way to drag and drop my photos (especially Raw files) with Aperture. Which I can do with Lightroom, Adobe Bridge and C1 Pro, and without using iPhoto.
    I am not a Pro photographer either, but I purchased Aperture based on what was advertised on the Apple website. From that ad, Aperture fit my photo needs almost to a tee. I am looking to adjust Raw files, Crop, Archive and keep my use of Hard Disk space down to a minimum. I can use Photoshop for the other 5% of things I do. However, Aperture has some issues (if you own it, then you already know. If you don't, you can read the Aperture Forum) This is one of the reasons I never went to iPhoto for archiving. I didn't like the way it duplicated all my files, taking up more disk space and its file structure. So even though Aperture won't play nice with other programs, I was surprised that it wouldn't play nice with any Apple programs.
    After reading your post and based on what you are saying, everyone either needs to have/learn/use Pro apps only or have/learn/use iApps only. Don't Cross the Streams!!
    I guess that means Apple will need to fix DVD Studio Pro. It uses photos that are in your iPhoto library and music from iTunes (iApps in a Pro app??....for shame...."it was never intended"). Also, DVD SP won't read the Aperture library. Does that mean there are 3 platforms? Pro, iApp and Mediocre??
    Now I have 2 questions:
    1. Can someone please tell me which apps are Pro and iApp, or if there is Mediocre? I don't want to mix them up and "Cross the Streams".
    2. Again....is there anyway to use Aperture with iWeb?
    TIA,
    Narvon

  • I've been using LR with my Nikon D3200 for a year or so. Shooting in RAW/NEF no issues with import etc until I updated LR and now I can't get LR to allow me to select when I try to import. It does show the images but they're grayed out and not able to be

    I've been using LR with my Nikon D3200 for a year or so. Shooting in RAW/NEF no issues with import etc until I updated LR and now I can't get LR to allow me to select when I try to import. It does show the images but they're grayed out and not able to be selected. Any thoughts? TIA

    Greyed imaged in the Import dialog box mean you have already imported the photos into Lightroom, so there is no need and no benefit to importing them a second time.
    Just go to the Library module, search for the desired photos, and resume working on these photos.

  • I am having an installation failure issue with my itunes 11 software.  File is corrupted and i don't know what to do.  I've un-install and re-installed the software three times and continue to get the same error message.  It states that "This copy of ITun

    I am having an installation failure issue with my itunes 11 software.  File is corrupted and i don't know what to do.  I've un-install and re-installed the software three times and continue to get the same error message.  It states that "This copy of ITunes is corrupted or is not installed correctly.  Please reinstall Itunes"
    iMac, iOS 6

    HI,
    If your old version of iTunes is still working - then I sugest you stick with that.
    iTunes 11 is a lousy update - It will not retain your playlists, you can't find and delete duplicates... and a whole arry of oyher issues. (have a look around this forum to see how many issues IT11 gives people)
    Just a friendly advise and warning :-)

  • Anyone having issues with importing CR2 files into lightroom 5 as error message comes up saying "Some import operations were not performed". please advise what is a solution please

    Urgent please
    anyone having issues with importing CR2 files into lightroom 5 as error message comes up saying "Some import operations were not performed". please advise what is a solution please

    Sounds like the folder Write permissions issue described here with a solution:
    "Some import operations were not performed" from camera import

  • Issues with importing from excel

    I have been running into a several issues with importing from Excel.
    First my configuration
    I am running SQL Developer ver 1.5.5 Build MAIN-5969
    I am on a Windows XP Professional Version 2002 with Service Pack 3
    I am importing into an Oracle 10g database.
    1. SQL Developer doesn't work on Excel 2007, I have to save all my files into Excel 97-2003 format before I can use them.
    2. If I run into an error loading and stop the process, SQL Developer doesn't release the Excel file and I get a sharing violation if I try to save the spreadsheet without closing SQL Developer.
    3. I have found that I have to set print area to the area I want to work with, otherwise the import wizard tries to keep adding rows.
    4. When using the Import wizard, it keeps adding commas on fields with numerics unless I specify the column in excel as text. Currently the column is formatted as General in the spreadsheet or I can change the wizard format to say the column is an integer, but it actually is just a code field with numeric characters so it may have leading zeroes that I need to keep.
    This might be related,
    I have a column in excel defined as text but only contains numerics. It is of length 4, but the wizard sets a precision of 5 with a datatype of VARCHAR2. If I try to change it to 4, I get an error saying the field is not large enough. Yet, when I do a LEN on the column, it only gives me a 4. I have other fields in the same sheet that a 3 position numeric and 2 position numeric and those are fine. I am thinking this is related to the comma being inserted in a numeric field for anything greater than 3 positions.
    5. Importing excel dates to oracle dates doesn't work. I have to convert the excel date column to text then import as a VARCHAR, then convert to Date once in the database.
    6. The default of nullible is not set on any columns and I have to set them before the import. (I would prefer it set to nullible and I have to uncheck the box to make it not nullible. I would prefer to import all of the data and then deal with the nulls after they have been pulled in)
    7. When I select header columns included it uses that as the column names. Is it possible to do the name length check then? It has bit me a few times where I try to import and forget to check the name length and then I get an error when I start running the import.
    8. If one of the columns to import has all nulls, then the precision comes out to 0 and if it isn't changed an error occurs on import. Could this situation default to a precision of 1?
    9. It would be nice if there was a completion message displayed and a cancel option while running.

    On point 3.
    I have a column in excel that consists of numbers. 4 digit numeric codes. Ex, 1111, 2345, etc
    The column's format is general. It displays as just 4 numbers.
    When I start the wizard initially, the column appears with data as 1,111, 2,345, etc, on the Data Preview screen.
    It determines the precision to be 5 on the column definition screen.
    If I change the precision to 4 then continue, that field will error out when I verify with "not big enough to hold the data in source columns"
    If, I change the excel column to a TEXT column.
    Excel still displays as 1111, 2345, etc
    The wizard then displays the same data 1111, 2345 on the Data Previeiw screen
    Yet, when I get to the column definition screen it still sizes it as a 5
    If I change it to a 4, I get the same error when verifying.
    If I leave them alone as 5, then it processes just fine.

  • A strange issue with importing avi video

    I have a rather strange issue with importing avi files (which playback normally in other programs) into CS4. When I import an avi recorded from my camera into CS 4 in the preview the sound is played back normally, but the video itself is weird. Pretty much roughly first 5% of it are stretched over the whole spand and slowed down to fit. So the video of 4 minutes will play sound normally for 4 minutes, but replay only 10 seconds of video VERY slowly. I'm a bit puzzled because I've used the same camera with CS3 and never encountered this problem. breaking apart and speeding up the video obviously didn't work because the video only displays the first 5 recorded seconds no matter the speed, tweaking with presets didn't work either.

    subtlemolotov wrote:
    I obviously know it's a photo camera, I own it.
    The point is it's something we needed to know to answer your question.
    subtlemolotov wrote:
    Well I've found a very unprofessional solution.
    "An unprofessional solution?" Kind of like shooting video with an still camera.....

  • Problem with DMGs and error: "No Mountable File Systems"

    Problem with DMGs and error: "No Mountable File Systems"
    The files are not corrupt. The problem is occurring with all DMGs that are apparently formatted in MS-DOS FAT16. No the file will not mount with Disk utility or any other disk mounter programs I have found.
    This is now the second time this occurred and now effects my MBP and my iMac. First time i spent days with Apple support and the only solution was ultimately back up the data, reformat the HD, start over from scratch and reload everything. That lasted about a month before the problem resurfaced and is now an issue on both iMac and MBP.
    I tried to identify all the programs I installed immediately before the error, as I am convinced it is the result of a software conflict.
    Recent programs includes:
    1) upgrading from Parallels 5.5 to 6.0 on both machines.
    2) using an HP secure II usb drive and setting up a secure disk.
    3) installing new itunes 10
    4) new update to Flip For Mac.
    The files affected are downloaded dmgs, including personal brain and google earth, both which are formatted in FAT16.
    Any help or thoughts? Apple has now spent hours trying and they say i now have to reformat and wipe and start over. That is unacceptable and based on pasted experience the problem is likely to repeat itself. having to wipe and rebuild a HD ever month is not an solution. i need to fid the root problem.
    In the meantime, anyone got a real solution on how to extract the data for a DMG using a different method?
    Message was edited by: remaia

    Where you able to find the solution, i am having the same problem, all was fine till i install some programs only same one i saw did we both did was flip4mac i uninstalled it but the problem is still there, i also restored and erased the hardrive but im not up to doing that all over again. If you found anything out let me know i would greatly appreciate it

  • JDev 10.1.3.3 - issues with imported Business Components

    Hi,
    I have got some issues with importing Business Components in JDev 10.1.3.3.
    I cannot discover/use the imported components.
    What I did is the folowing:
    1. In a existing project I extended the default base-classes to create our own layer
    2. created a project called ModelShared
    2a. configured the project to use the base-classes I created in step 1
    2b. created an entitybased-viewobject (RefCodesByDomain)
    2c. created bc deployment-descriptors
    3. created a project called RelatieModel in the same workspace as ModelShared
    3a. added dependencies to the deployment-descriptors as well as the project created in step 2
    3b. configured the project to use the base-classes I created in step 1
    3c. imported business components
    Although I did not recieve any errors during the import of business components, I am unable to add the vo (RefCodesByDomain) to a service.
    I do see the package which contains the vo but is has no entries.
    Importing the business components to a new BC Project in a seperate workspace did succeed (I could reuse the vo).
    I tested a little further and the folowing occurred:
    4. I created a new vo in the ModelShared Project
    5. I deployed the ModelShared
    6. Restarted JDeveloper
    7. Got the folowing error message in the console window when expanding a service in my datacontrol pallette:
    INFO: oracle.adf.share.config.ADFConfigFactory No META-INF/adf-config.xml found
    1-sep-2008 13:23:27 oracle.adf.dt.controls.DataControlsTreeWillExpandListener treeWillExpand
    FINER: THROW
    java.lang.NullPointerException
            at oracle.adf.dt.objects.JUDTViewReferenceAccessorDefinition.init(JUDTViewReferenceAccessorDefinition.java:108)
            at oracle.adf.dt.objects.JUDTViewReferenceAccessorDefinition.<init>(JUDTViewReferenceAccessorDefinition.java:98)
            at oracle.adfdt.internal.meta.bc4j.BC4JDataControlDefinition.createViewObjectDefinition(BC4JDataControlDefinition.java:228)
            at oracle.adfdt.internal.meta.bc4j.BC4JDataControlDefinition.addViewObjects(BC4JDataControlDefinition.java:208)
            at oracle.adfdt.internal.meta.bc4j.BC4JDataControlDefinition.loadStructure(BC4JDataControlDefinition.java:110)
            at oracle.adfdt.internal.meta.bc4j.BC4JDataControlDefinition.getStructure(BC4JDataControlDefinition.java:407)
            at oracle.adf.dt.controls.treemodel.jsr227.JSR227DataControlTreeNode.loadChildNodes(JSR227DataControlTreeNode.java:129)
    8. In my other "fresh" bc project I was able to use the newly created vo.
    9. When I added a VO to my shared project, all projects that are refering to the shared project loose their vo's in the data-controlpannel
    Do you have any suggestions?
    Regards,
    Romano

    Hi,
    since this appears to be a WebCenter related issue, I suggest to try the Webcenter forum WebCenter Portal or to log a bug
    Frank

  • Known compatibility issues with 2008 and 2008 R2

    For some reason i am not able to make remote connections from VS 2013 to my current installation of SQL server 2008 so i thought to uninstall it and install another edition i got from MSDN but i the uninstall process keeps failing saying theres a known
    compatibility issues with 2008 and 2008 R2. it also gave me the option to seek solution online but when i click on it it is unable to get a solution online and i am never able to uninstall it. please help me here. i need to get SQL server up and running. thanks

    Hi FLORENCEOKOSUN,
    According to your description, you encounter a compatibility issue when uninstalling SQL Server 2008. For further analysis, please help to post the full error message and
     SQL Server summary log. By default, the log can be found in: C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log.
    There is also a KB article about known issues of installing SQL Server 2008 on Windows Server 2008 R2 for your reference.
    https://support.microsoft.com/en-us/kb/955725 
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Are there any compatibility issues with Captivate and OS X Yosemite?

    Has anyone noted any compatibility issues with Captivate and Yosemite?

    I had the same issue. Updating resolved this as well.
    I tested with Captivate 7 and almost everything seemed to work fine. I tested with an existing project file containing TEB's, Motion recording, a third party drag 'n drop widget, and a playbar with a TOC. This all seemed to work fine both in preview mode as after publishing. I also tested with Captivate 6 although I didn't publish anything. Here, everything seemed to work fine as well. However this was only SWF.
    As jpm226 described for 8, previewing HTML5 doesn't seem to work with Captivate 6 and 7 either. Chrome gives a "This webpage is not available" notification. Publishing however, does seems to work.
    Fortunately, the client we work for that asks us to use Captivate 7, also asks for SWF output. So I'll continue to use Yosemite for now.

Maybe you are looking for

  • Can I transfer an e-mail to a microsoft word document and how

    I have an e-mail that I want to transfer or copy to Word. Is that possible and how can I do it if it is?

  • 'No bootable disk' error message when installing Windows7 with Bootcamp

    Hey, It seems so many people have had this problem which I am having now, I've tried searching for a solution that works but to no avail. So I'll give as much detail to this problem in the hope that someone knows the answer! When running bootcamp ass

  • Song won't add to my library on Itunes 11

    I've added songs to my itunes but they won't show up in the library. I can play them from the "Recently Added" playlist but the library has no idea they exist. Any help would be great

  • How to activate 3G on iPhone 3 please help

    I have an iPhone 3G and no matter what I do I cannot connect to 3G whenever I try to go on the Internet it says you are not connected to a cellular data service please help someone

  • Changing HD format

    Greetings everyone, I have recently noticed that my HD format is Mac OS Extended (Case-Sensitive, Journaled), but in order for me to use Autodesk's AutoCAD I need a Mac OS Extended (Journaled) HD format. How can I change the format? I do have a Time-