Png Illustrator Live Trace Flash

I'm rather new to Illustrator CS2 but I had a plan to take
png images (with transparent backgrounds) into it from Photoshop
and then using Live Trace convert them to vectors. I would then
export them into Flash as swf files. (AI and AEP are huge. Or maybe
I am missing something) It all worked great until I noticed that
the swf files had a white background(like when you save a
transparent psd as a jpeg and not a png.)
My question is, is there a way to make and preserve
transparent backgrounds from placed png images in Illustrator and
Live Trace so that when I move them into Flash I have a "vector
png" to work with? Thanks

Found solution -After you have done the Live Trace In
Illustrator CS2 , click on the background white object and go to
the Select menu > Same > Fill Color. With all your white
object selected, press the Delete key on your keyboard. Export as
an .swf. Import into Flash and you have a vector copy (with
transparent background) of your bitmap .png to play with. A "vector
png"!
Embarrassed by how little I know about Illustrator... But
this might help someone

Similar Messages

  • Illustrator Live Trace Tips

    Hi guys,
    I have to make a colorful image into a black and white or at least one color silhouette for printing on a T-shirt. I tried Illustrator Live Trace which look nice -here is the sample-
    http://www.pixentral.com/show.php?picture=1F4NmH9Q0D7IVqUDUeGPegdwKETC1
    but when doing a close zoom the interesting texture has some bizarre effects like this one and all the
    http://www.pixentral.com/show.php?picture=1NPI8WpLvPBttbbMCe3LmiKuZjcj4
    This image will be printed in an A4 Size and i am worried that the detail could look strange. The other option is to use Photoshop.
    Any special tips when using Live Trace, exporting a PDF and Printing?
    Thanks for any info!
    Cheers,
    Sebs

    As far as I know, that is conversion artifact inherent to Illustrator.
    You have to put the work in if you want to avoid your art looking like it was done via Live Trace.
    It can be tedious, but using the eraser tool, the direct selection tool to select/delete (is there, or will there ever be a keyboard shortcut for this?)
    to delete some of those artifact, makes a huge difference.
    You might try to bring it into Photoshop, throw a median over it, bring back into Illy, and retrace. Play with the 'smallest pixel detail that will be traced' thingy. Depends on the image, but either way, it is rare to convert a detailed image and have it perfect.
    I'll follow this thread for any additional tips!

  • Script to Perform Live Trace then in Illustrator Run Action... Please Help

    Hello Everyone, I am brand new to scripting and need some help... I would like to create an inter-application javascript (.jsx) file that will perform the following steps in sequence:
    1) Target Bridge CS3 and:
    a) Automatically select files (thumbnails) (the names of, and path to these files never change so scripting them is no problem). Path & Files are: C:\files\1.psd, C:\files\2.psd and C:\files\3.psd.
    b) Run Tools > Illustrator > Live Trace [Live Trace Dialogue Box Settings (Tracing Preset: Color 16, Save & Close Results (checked), Document Profile: "Basic RGB", Width: "576", Height: "720", Units: Pixels, Destination: "C:\files\, File Naming: Document Name + .ai)].
    After Live Trace finishes, C:\files\1.ai, C:\files\2.ai and C:\files\3.ai are created.
    and then....
    2) Target Illustrator CS3 and:
    Run my Illustrator precreated Action: "Add Border". This action adds a precreated border to the files. The action is coded with the paths and file names of the .ai files as well as saving instructions.
    To summarize:
    1) In Bridge, run Live Trace on precreated .psd files
    2) In Illustrator run an action on the files that were live traced
    That's it. It seems straight forward when I write it out but trying to figure out how to script it is boggling my mind.
    Thank you for your help!

    I will go check that error meantime try this… The Photoshop export looks OK to me but I have no idea about SVG files as I don't use them… This should be getting closer… You will need to make the same 2 typo changes…
    #target illustrator
    while (app.documents.length) {
      app.activeDocument.close(SaveOptions.PROMPTTOSAVECHANGES);
    var traceFolder = new Folder ('~/Desktop/Live Trace/');
    var fileList = traceFolder.getFiles(/\.psd$/i);
    if (fileList.length > 0) {
         var svg = new Folder(traceFolder.fsName+'/SVG Files');
         if (!svg.exists) svg.create();
         var psd = new Folder(traceFolder.fsName+'/PSD Files');
         if (!psd.exists) psd.create();
         var ai = new Folder(traceFolder.fsName+'/AI Files');
         if (!ai.exists) ai.create();
         main(fileList);
    } else {
         alert('This Folder contained NO Photoshop PSD files!');
    function main(fileObjs) {
         with (app) {
              var orginalUIL = userInteractionLevel;
              userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
              for (var i = 0; i < fileObjs.length; i++) {
                   if (fileList[i] instanceof File) {
                        var fileName = fileList[i].name.slice(0, -4);
                        var docRef = documents.add(DocumentColorSpace.RGB, 576, 720);
                        with (docRef) {
                             var thisPlace = placedItems.add();
                             thisPlace.file = fileObjs[i];
                             var thisImage = placedItems[0].trace();
                             redraw();
                             thisImage.tracing.tracingOptions.loadFromPreset('Color 16');
                             thisImage.tracing.expandTracing();
                             redraw();
                             var svgOptions = exportAsSVGFile();
                             svgFilePath = new File(svg.fsName + '/' + fileName + '.svg');
                             exportFile(svgFilePath, ExportType.SVG, svgOptions);
                             var psdOptions = exportAsPSDFile();
                             psdFilePath = new File(psd.fsName + '/' + fileName + '.psd');
                             exportFile(psdFilePath, ExportType.PHOTOSHOP, psdOptions);
                             var aiOptions = saveAsAiFile();
                             aiFilePath = new File(ai.fsName + '/' + fileName + '.ai');
                             saveAs(aiFilePath, aiOptions);
                             close(SaveOptions.DONOTSAVECHANGES);                         
              userInteractionLevel = orginalUIL;
    function exportAsSVGFile() {
         var svgOptions = new ExportOptionsSVG();
         with (svgOptions) {
                compressed = true;
              coordinatePrecision = 3;
              //cssProperties = SVGCSSPropertyLocation.ENTITLES;
              documentEncoding = SVGDocumentEncoding.UTF16
              //DTD = SVGDTDVersionSVG1_0;
              embedRasterImages = true;
              fontSubsetting = SVGFontSubsetting.ALLGLYPHS;
              fontType = SVGFontType.CEFFONT;
              includeFileInfo = false;
              includeVariablesAndDatasets = false;
              optimizeForSVGViewer = true;
              preserveEditability = true;
              slices = true;
              sVGAutoKerning = true;
              sVGTextOnPath = true;
         return svgOptions;
    function exportAsPSDFile() {
         var psdOptions = new ExportOptionsPhotoshop();
         with (psdOptions) {
              antiAliasing = true;
              compatibility = PhotoshopCompatibility.PHOTOSHOP8;
              editableText = true;
              embedICCProfile = true;
              maximumEditability = true;
              resolution = 150;
              warnings = true;
              writeLayers = true;
         return psdOptions;
    function saveAsAiFile() {
         var aiOptions = new IllustratorSaveOptions();
         with (aiOptions) {
              compatibility = Compatibility.ILLUSTRATOR12;
              compressed = true;
              embedICCProfile = true;
              embedLinkedFiles = true;
              flattenOutput = OutputFlattening.PRESERVEAPPEARANCE;
              fontSubsetThreshold = 0;
              overprint = PDFOverprint.PRESERVEPDFOVERPRINT;
              pdfCompatible = true
         return aiOptions;

  • I am using Illustrator CS5, how do I remove white outline after live trace?

    I am working on a image that will be used as a sticker. I did all the painting in Photshop CS5. Now I want to create a cleaner image by making it a vector. My problem is when using Live Trace it comes out amazing. But this is in Illustrator. When i go and save it as a PDF or TIFF. It has a white line surrounding all the individual vectors.
    how do i remove these?
    I already did the Ignore White. I did not use the expand button, which is what the saved image looks like when i do press expand. Thats a No NO!
    All my settings are at 300 res. I also rasterized the image too. it still came out the same way.
    The image on the left i how it looks in illustrator. The left image is how it looks when it is opened as a jpeg or saved as a adobe PDF or Tiff.
    Thank you,
    Trojan

    These could be
    gaps due to differences in adjacent fill areas
    antialaising issues across adjacent items
    general trapping issues
    I'm afraid you'll have to do some reading up on all of that and invest some time in manuall cleaning up your documents to fix these problems. Though I honestly don't see the relevance. Your image being quite detailed eitehr way it would be printed using inkjet or classical CMYK processes and beyond the die line for the cutout there would be no need to use any vector data.
    Mylenium

  • Illustrator CS4 - Batch Live Trace all images in one directory?

    Hello everyone
    I have 200 pages or so scanned at the same resolution from a notepad, which I would like to vectorize.
    Since they're all pretty much similar I'd imagine the trace settings can be consistant for all of them
    I'd rather not Live trace each one in illustrator, would take ages..
    Is there a batch command for this or a recommended alternative method?
    Thank you!

    Yes, Bridge can do it as well, but as of CS5 it ignores the "Ignore White" option, and another user was advised to use Illustrator. I see this as a bug that needs to be repaired in Bridge. Else, why have the command? There are some other bugs associated with this and other batch commands that need to be fixed up. AI doesn't record "Live Trace" button action (you have to go to the menu item.) And it ignores "Fit Artboard to Artwork Bounds" as well.
    They really need to come up with an all-round universal solution to batch processing for the different products.

  • How can I simplify very complex illustrator file, multiple embedded live traces

    Hello!
    If anyone has any advice on this I'd be very grateful! I have created a piece of artwork in illustrator which is to be printed 4x3m for a wall mural. Therefore the file I am working with must either be a vecor or a large enough raster to be printed at such as size. I have set it up at 1 to 10 so its currently A3ish size. Each component of the collage is a separate ai file and contains many points as they are all live traces. It was no problem linking in all these initially but I now need to embed them so as I can give the printers a complete file. I have succeeded embedding every image apart from one last complex one which is crashing the whole thing. Are there any settings I may be able to change to reduce the file size or simplify the graphic (whilst remaining vectors.) Below is the file with the linked images and also the outline of the embedded version so far. The problem I am having is basically because of the final output size required.
    The only thing I can think of doing is opening each separate component and saving as a raster then relinking these - but will this be even more problematic for illustrator that thousands of vector points? I can do it in photoshop if needs be but as the final image is to be printed 4x3m will this be too large to handle? The ai file with all images linked was 25MB but now 500MB with the sky still to embed.
    Thank you!

    Rosie,
    4x3m is quite large, and the comfortable/relevant viewing distance is so much larger than the one you use to read this that you should be bold here, bolder than just saying 150DPI which may be used at normal reading distance depending on printing method.
    You may (literally) see it this way: the viewing angle is important: when you look at a larger image, you move back until you have a comfortable viewing angle, and at the same viewing angle, the viewing distance is proportional to the size. This means that you can determine how the actual final size in  pixel x pixel looks under a certain viewing angle at normal reading distance.

  • Flash 9 and Adobe Live Trace

    Do you guys think that the next version of flash will include
    Adobe's live
    trace instead of the usual flash trace bitmap feature?

    I figured you would say that.
    "urami_" <[email protected]>
    wrote in message
    news:e9c7n4$cqg$[email protected]..
    >
    >
    > GG wrote:
    >> Do you guys think that the next version of flash
    will include Adobe's
    >> live trace instead of the usual flash trace bitmap
    feature?
    >
    > No idea but I would believe that beside the regular kind
    of changes in
    > flash
    > like action script performance, small tune ups in IDE,
    there won't be
    > actually
    > any northing between adobe and x-macromedia tools. They
    might try to make
    > them
    > cross file format compatible so it will be easy for you
    to move file
    > around but
    > making more features reduces chances of you buying
    additional tools :)
    > Thy catch as to make sure you get bunch of products
    cause each has
    > something
    > the other doesn't.
    >
    >
    > --
    > Regards
    >
    > Urami
    >
    >
    > --
    >
    >
    >
    > Happy New Year guys - all the best there is in the 2006
    >
    >
    >
    >
    > <urami>
    >
    http://www.Flashfugitive.com
    > </urami>
    >
    > <web junk free>
    >
    http://www.firefox.com
    > </web junk free>

  • Illustrator cs3 unresponsive after live trace

    after placing an .psd image into illustrator and using
    live trace function, illustrator will only let me save the file. after saving i have to quit
    and restart to work on the file again. this process continues on certain lar
    ge files. what gives? thanks in advance!

    w/ 2gb ram
    Not particularly much. Even if AI itself as a 32bit application never uses more than 2GB, it doesn't have it all on your system. You know, operating system and other stuff taking memory, too.... Quite clearly on a heavy live trace with lots of anchor points and paths this could be too much. If it's an option, you might consider a selective approach, i.e. working at lower image resolutions if something is only a large area or by extracting specific features in Photoshop by turning the image into greyscale/ limited color palette images. while there, you may also use selections and convert them into paths, which you then could copy&paste into AI.
    Mylenium

  • Does Photoshop Elements have a live trace tool like Illustrator?

    I use Illustrator at school but annoyingly only have Elements at home, and six weeks of school holidays in which I need to use the Live Trace tool... Does anyone know where the equivilent tool would be in either Elements or Photoshop, or if one even exists?

    It doesn't exist in PSE (or any image editing program).  Tracing is a feature of vector editing programs because it creates vector shape(s).
    Ken

  • Can Live Trace be added back for complex B&W illustration vectorizing?

    Image Trace might work great for vectorizing color photos, but it is terrible at vectorizing complex B&W illustrations. Live Trace in CS2-CS5 was great at this. It's crazy that a new feature would break a previous functionality.
    This is a pen & ink style illustration I was going to vectorize so that it would be easier to set up for a t-shirt:
    As you can see from this comparison image, Live Trace does a much better job at converting this illustration to vector. It's very close to the original and has a very clean appearance. After trying every setting possible, this is the best result I could manage in Image Trace:
    It seems like Image Trace can't handle the complexity that Live Trace used to work so well with. I noticed if I cropped out just the chicken, Image Trace did a better job with just that part of it. Live Trace could handle the entire thing, though, and cropping an image in to sections just adds more steps and more work.
    Whatever engine Live Trace used to have, please please please add it back in for B&W art vectorizing. Right now I have to keep my old copy of CS4 installed just so I can use Live Trace. It seems like this is a problem that people have been mentioning: http://forums.adobe.com/message/5908553

    Thanks for taking the time to comment, rcraighead.
    Your version does look better, I agree, but the higher threshold is filling in a lot of details with black (like the eyes). The feathered lines are also rounding off at the ends, which happens in Image Trace, but never was a problem in Live Trace. It kind of gives it a "stamped" feel, like the ink is bleeding over.
    The original image is about 8.5 x 11, 300 ppi. I guess I'll just have to keep CS4 installed to use Live Trace. I tweeted at Adobe Illustrator with my issue and they told me to post here

  • Illustrator CS5 Live Trace stuck at "Tracing"

    I'm trying to "Live Trace" an image and AI says "Tracing" in the layers pane and just sits there forever. See image below:
    Any help will be greatly appreciated. Thanks!

    What do you expect it to do? Have you tried using Expand from the object menu?

  • Importing any PNG freezes and crashes Flash CS4

    After being able to import multiple large PNG files into my Flash project, Flash CS4 now freezes and crashes whenever I attempt to import any PNG image, regardless of size or transperancy. This happens on any flash project, even brand new ones.
    Importing a PNG file into the library freezes flash and I have to open the task manager to close it. Interestingly, when I try to end the task, flash still asks if I want to save changes, as attempting to import the PNG results in a new, blank symbol added to the library. I can re-open the file with the blank symbol but because it is blank this doesn't help me.
    Dragging and dropping a PNG file straight onto the project crashes Flash straightaway and prompts me to send an error message to Adobe.
    Computer Specs:
    OS: Windows 7 Professional 64-bit (6.1, Build 7600)
    BIOS: Phoenix - AwardBIOS v6.00PG
    Processor: Intel Core 2 CPU 6700 @ 2.66GHz (2CPUs), ~2.7GHz
    Memory: 6144MB RAM
    Graphics Card: NVIDIA GeForce GTX 460
    Direct X Version: Direct X 11
    Any and all help is greatly appreciated.
    Here is the crash data.
    Crash Data
    <?xml version="1.0"?>
    <!DOCTYPE AdobeCrashReport SYSTEM "AdobeCrashReporter.dtd">
    <crashreport version="1.1" crVersion="2.5.0.01052007" applicationName="Adobe Flash CS4" applicationVersion="10.0.2" build="10.0.2.566">
    <time year="2014" month="2" day="10" hour="12" minute="47" second="59"/>
    <user guid="ff613cfb-0495-46bd-94c3-773ca73e2516"/>
    <system platform="windows" osversion="6.1.7601 SP 1.0" applicationlanguage="English (United States)" userlanguage="en_US" oslanguage="en_US" ram="6142" machine="Intel(R) Core(TM)2 CPU          6700  @ 2.66GHz" model="Intel64 Family 6 Model 15 Stepping 6" cpuCount="2" cpuFreq="2666 MHz" busFreq=""/>
    <crash exception="EXCEPTION_UNKNOWN" instruction="0x7732482b">
    <backtrace crashedThread="0">
    <thread index="0">
    <stackStatement index="0" address="0x7732482b" symbolname="RtlUlonglongByteSwap"/>
    <stackStatement index="1" address="0x75856d91" symbolname="GetThreadDesktop"/>
    <stackStatement index="2" address="0x758577c4" symbolname="CharPrevW"/>
    <stackStatement index="3" address="0x7585788a" symbolname="DispatchMessageW"/>
    <stackStatement index="4" address="0x592982cf" symbolname="unknown"/>
    </thread>
    </backtrace>
    <registerSet>
    <register name="EAX" value="0x0018fd84"/>
    <register name="EBX" value="0x0018fe04"/>
    <register name="ECX" value="0x00000000"/>
    <register name="EDX" value="0x01939368"/>
    <register name="ESI" value="0x00000000"/>
    <register name="EDI" value="0x019107d0"/>
    <register name="ESP" value="0x0018fec0"/>
    <register name="EBP" value="0x00000000"/>
    <register name="EIP" value="0x592982cf"/>
    <register name="EFL" value="0x00000246"/>
    </registerSet>
    <binaryImageSet>
    <binaryImage start="0x00400000" end="0x01894000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Flash.exe"/>
    <binaryImage start="0x772a0000" end="0x77420000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;ntdll.dll"/>
    <binaryImage start="0x6eac0000" end="0x6eaff000" type="__TEXT" path="C:&#92;Program Files&#92;AVAST Software&#92;Avast&#92;snxhk.dll"/>
    <binaryImage start="0x74fe0000" end="0x750f0000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;kernel32.dll"/>
    <binaryImage start="0x74f00000" end="0x74f47000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;KERNELBASE.dll"/>
    <binaryImage start="0x10000000" end="0x10309000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;amtlib.dll"/>
    <binaryImage start="0x74d20000" end="0x74d77000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;shlwapi.dll"/>
    <binaryImage start="0x75a60000" end="0x75af0000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;gdi32.dll"/>
    <binaryImage start="0x75840000" end="0x75940000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;user32.dll"/>
    <binaryImage start="0x75350000" end="0x753f0000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;advapi32.dll"/>
    <binaryImage start="0x752a0000" end="0x7534c000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;msvcrt.dll"/>
    <binaryImage start="0x75820000" end="0x75839000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;sechost.dll"/>
    <binaryImage start="0x75e80000" end="0x75f70000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;rpcrt4.dll"/>
    <binaryImage start="0x74cc0000" end="0x74d20000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;sspicli.dll"/>
    <binaryImage start="0x74cb0000" end="0x74cbc000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;CRYPTBASE.dll"/>
    <binaryImage start="0x75810000" end="0x7581a000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;lpk.dll"/>
    <binaryImage start="0x75200000" end="0x7529d000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;usp10.dll"/>
    <binaryImage start="0x6f580000" end="0x6f591000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;netapi32.dll"/>
    <binaryImage start="0x6f570000" end="0x6f579000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;netutils.dll"/>
    <binaryImage start="0x6f550000" end="0x6f569000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;srvcli.dll"/>
    <binaryImage start="0x6f540000" end="0x6f54f000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wkscli.dll"/>
    <binaryImage start="0x75a20000" end="0x75a55000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;ws2_32.dll"/>
    <binaryImage start="0x75f70000" end="0x75f76000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;nsi.dll"/>
    <binaryImage start="0x73930000" end="0x73ace000" type="__TEXT" path="C:&#92;Windows&#92;winsxs&#92;x86_microsoft.windows.common-controls_6595b64144ccf1d f_6.0.7601.17514_none_41e6975e2bd6f2b2&#92;comctl32.dll"/>
    <binaryImage start="0x71e80000" end="0x71ed8000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;winhttp.dll"/>
    <binaryImage start="0x71e30000" end="0x71e7f000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;webio.dll"/>
    <binaryImage start="0x750f0000" end="0x7516b000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;comdlg32.dll"/>
    <binaryImage start="0x76250000" end="0x76e9a000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;shell32.dll"/>
    <binaryImage start="0x74be0000" end="0x74be9000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;version.dll"/>
    <binaryImage start="0x74a50000" end="0x74a82000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;winmm.dll"/>
    <binaryImage start="0x6e080000" end="0x6e099000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;avifil32.dll"/>
    <binaryImage start="0x75470000" end="0x755cc000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;ole32.dll"/>
    <binaryImage start="0x73d30000" end="0x73d44000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;msacm32.dll"/>
    <binaryImage start="0x5be20000" end="0x5be41000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;msvfw32.dll"/>
    <binaryImage start="0x75af0000" end="0x75af5000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;psapi.dll"/>
    <binaryImage start="0x74d80000" end="0x74de0000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;imm32.dll"/>
    <binaryImage start="0x75f80000" end="0x7604c000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;msctf.dll"/>
    <binaryImage start="0x12000000" end="0x121cb000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;xerces-c_2_6.dll"/>
    <binaryImage start="0x6edf0000" end="0x6ee8b000" type="__TEXT" path="C:&#92;Windows&#92;winsxs&#92;x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.619 5_none_d09154e044272b9a&#92;msvcr80.dll"/>
    <binaryImage start="0x32100000" end="0x321b4000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Workspace.dll"/>
    <binaryImage start="0x72a90000" end="0x72c20000" type="__TEXT" path="C:&#92;Windows&#92;winsxs&#92;x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.76 01.18120_none_72d2e82386681b36&#92;GdiPlus.dll"/>
    <binaryImage start="0x01a10000" end="0x01b4e000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;dvacore.dll"/>
    <binaryImage start="0x75980000" end="0x75a0f000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;oleaut32.dll"/>
    <binaryImage start="0x5b180000" end="0x5b207000" type="__TEXT" path="C:&#92;Windows&#92;winsxs&#92;x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.619 5_none_d09154e044272b9a&#92;msvcp80.dll"/>
    <binaryImage start="0x01b50000" end="0x01d84000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;dvaui.dll"/>
    <binaryImage start="0x01d90000" end="0x01ecc000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AdobeOwl.dll"/>
    <binaryImage start="0x59230000" end="0x5933f000" type="__TEXT" path="C:&#92;Windows&#92;winsxs&#92;x86_microsoft.vc80.mfc_1fc8b3b9a1e18e3b_8.0.50727.619 5_none_cbf5e994470a1a8f&#92;mfc80u.dll"/>
    <binaryImage start="0x73cc0000" end="0x73cc5000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;msimg32.dll"/>
    <binaryImage start="0x00340000" end="0x00353000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AlcidDLL.dll"/>
    <binaryImage start="0x00370000" end="0x0037e000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;ahclient.dll"/>
    <binaryImage start="0x003a0000" end="0x003ad000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;CrashReporter.dll"/>
    <binaryImage start="0x67220000" end="0x6730b000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;dbghelp.dll"/>
    <binaryImage start="0x003c0000" end="0x003cf000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;LogUtils.dll"/>
    <binaryImage start="0x003e0000" end="0x003f8000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;LogTransport.dll"/>
    <binaryImage start="0x018b0000" end="0x018ca000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;LogSession.dll"/>
    <binaryImage start="0x018e0000" end="0x018f6000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;LogTransport2.dll"/>
    <binaryImage start="0x75b00000" end="0x75c9d000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;setupapi.dll"/>
    <binaryImage start="0x76220000" end="0x76247000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;cfgmgr32.dll"/>
    <binaryImage start="0x75940000" end="0x75952000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;devobj.dll"/>
    <binaryImage start="0x76050000" end="0x76214000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;wininet.dll"/>
    <binaryImage start="0x75970000" end="0x75974000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;api-ms-win-downlevel-user32-l1-1-0.dll"/>
    <binaryImage start="0x75800000" end="0x75804000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;api-ms-win-downlevel-shlwapi-l1-1-0.dll"/>
    <binaryImage start="0x75960000" end="0x75964000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;api-ms-win-downlevel-version-l1-1-0.dll"/>
    <binaryImage start="0x755d0000" end="0x755d3000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;api-ms-win-downlevel-normaliz-l1-1-0.dll"/>
    <binaryImage start="0x75430000" end="0x75433000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;normaliz.dll"/>
    <binaryImage start="0x755e0000" end="0x757f5000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;iertutil.dll"/>
    <binaryImage start="0x77270000" end="0x77275000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;api-ms-win-downlevel-advapi32-l1-1-0.dll"/>
    <binaryImage start="0x75cf0000" end="0x75e15000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;urlmon.dll"/>
    <binaryImage start="0x75a10000" end="0x75a14000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;api-ms-win-downlevel-ole32-l1-1-0.dll"/>
    <binaryImage start="0x6e0b0000" end="0x6e0be000" type="__TEXT" path="C:&#92;Windows&#92;winsxs&#92;x86_microsoft.vc80.mfcloc_1fc8b3b9a1e18e3b_8.0.50727. 6195_none_03ce2c72205943d3&#92;mfc80ENU.dll"/>
    <binaryImage start="0x04390000" end="0x0442d000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;amtservices.dll"/>
    <binaryImage start="0x046c0000" end="0x046f7000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;adobe_caps.dll"/>
    <binaryImage start="0x72350000" end="0x723d0000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;uxtheme.dll"/>
    <binaryImage start="0x75170000" end="0x751f3000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;clbcatq.dll"/>
    <binaryImage start="0x6e450000" end="0x6e545000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;propsys.dll"/>
    <binaryImage start="0x74b50000" end="0x74b71000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;ntmarta.dll"/>
    <binaryImage start="0x75ca0000" end="0x75ce5000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;Wldap32.dll"/>
    <binaryImage start="0x04f30000" end="0x04f50000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;asneu.dll"/>
    <binaryImage start="0x05030000" end="0x06297000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;en&#92;Configuration&#92;FlashResources.dll"/>
    <binaryImage start="0x74b80000" end="0x74bd1000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;winspool.drv"/>
    <binaryImage start="0x749e0000" end="0x74a1c000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;oleacc.dll"/>
    <binaryImage start="0x6ebb0000" end="0x6ebc3000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;dwmapi.dll"/>
    <binaryImage start="0x74de0000" end="0x74f00000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;crypt32.dll"/>
    <binaryImage start="0x75420000" end="0x7542c000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;msasn1.dll"/>
    <binaryImage start="0x73920000" end="0x7392b000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;profapi.dll"/>
    <binaryImage start="0x5e8a0000" end="0x5e8ce000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;mlang.dll"/>
    <binaryImage start="0x736f0000" end="0x73729000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;MMDevAPI.dll"/>
    <binaryImage start="0x5b220000" end="0x5b250000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wdmaud.drv"/>
    <binaryImage start="0x736b0000" end="0x736b4000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;ksuser.dll"/>
    <binaryImage start="0x73ca0000" end="0x73ca7000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;avrt.dll"/>
    <binaryImage start="0x71b30000" end="0x71b66000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;AudioSes.dll"/>
    <binaryImage start="0x6e180000" end="0x6e188000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;msacm32.drv"/>
    <binaryImage start="0x6e0a0000" end="0x6e0a7000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;midimap.dll"/>
    <binaryImage start="0x6f2c0000" end="0x6f2c8000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;credssp.dll"/>
    <binaryImage start="0x6efe0000" end="0x6f01f000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;schannel.dll"/>
    <binaryImage start="0x5b120000" end="0x5b176000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;PlugPlug.dll"/>
    <binaryImage start="0x5b0d0000" end="0x5b11a000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;BIB.dll"/>
    <binaryImage start="0x59180000" end="0x5922a000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AXEDOMCore.dll"/>
    <binaryImage start="0x07e30000" end="0x07e74000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Common Files&#92;Adobe&#92;CS4ServiceManager&#92;CSI-Launcher.dll"/>
    <binaryImage start="0x72180000" end="0x721cc000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;apphelp.dll"/>
    <binaryImage start="0x5be50000" end="0x5be7f000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;shdocvw.dll"/>
    <binaryImage start="0x6c590000" end="0x6c600000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;ntshrui.dll"/>
    <binaryImage start="0x6ebe0000" end="0x6ebeb000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;cscapi.dll"/>
    <binaryImage start="0x6ea50000" end="0x6ea5a000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;slc.dll"/>
    <binaryImage start="0x6f8f0000" end="0x6f906000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;cryptsp.dll"/>
    <binaryImage start="0x6f8b0000" end="0x6f8eb000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;rsaenh.dll"/>
    <binaryImage start="0x71af0000" end="0x71afe000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;RpcRtRemote.dll"/>
    <binaryImage start="0x5b080000" end="0x5b0c1000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;BIBUtils.dll"/>
    <binaryImage start="0x089c0000" end="0x08ab1000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;ACE.dll"/>
    <binaryImage start="0x51fa0000" end="0x52573000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AGM.dll"/>
    <binaryImage start="0x5af70000" end="0x5afc2000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;ARE.dll"/>
    <binaryImage start="0x08d70000" end="0x091a6000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;MPS.dll"/>
    <binaryImage start="0x51cf0000" end="0x51f9e000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;CoolType.dll"/>
    <binaryImage start="0x54850000" end="0x54933000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;FileInfo.dll"/>
    <binaryImage start="0x5ae20000" end="0x5ae8d000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AdobeXMP.dll"/>
    <binaryImage start="0x59100000" end="0x59176000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;riched20.dll"/>
    <binaryImage start="0x53ba0000" end="0x53caa000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;pdfport.dll"/>
    <binaryImage start="0x51720000" end="0x51ce7000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AdobePDFL.dll"/>
    <binaryImage start="0x53af0000" end="0x53b97000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;JP2KLib.dll"/>
    <binaryImage start="0x73820000" end="0x73832000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;mpr.dll"/>
    <binaryImage start="0x5b050000" end="0x5b07e000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AXE8SharedExpat.dll"/>
    <binaryImage start="0x6d060000" end="0x6d06c000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;atmlib.dll"/>
    <binaryImage start="0x72810000" end="0x72986000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;Wintab32.dll"/>
    <binaryImage start="0x6ff90000" end="0x6ff9d000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wtsapi32.dll"/>
    <binaryImage start="0x72670000" end="0x72803000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;Wacom_Tablet.dll"/>
    <binaryImage start="0x73b70000" end="0x73ca0000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;WindowsCodecs.dll"/>
    <binaryImage start="0x6bf70000" end="0x6bfa6000" type="__TEXT" path="C:&#92;Users&#92;t2wave&#92;AppData&#92;Local&#92;Microsoft&#92;SkyDrive&#92;17.0.2 003.1112_1&#92;SkyDriveShell.dll"/>
    <binaryImage start="0x6bee0000" end="0x6bf65000" type="__TEXT" path="C:&#92;Users&#92;t2wave&#92;AppData&#92;Local&#92;Microsoft&#92;SkyDrive&#92;17.0.2 003.1112_1&#92;msvcp110.dll"/>
    <binaryImage start="0x6be00000" end="0x6bed2000" type="__TEXT" path="C:&#92;Users&#92;t2wave&#92;AppData&#92;Local&#92;Microsoft&#92;SkyDrive&#92;17.0.2 003.1112_1&#92;msvcr110.dll"/>
    <binaryImage start="0x6a1e0000" end="0x6a267000" type="__TEXT" path="C:&#92;Users&#92;t2wave&#92;AppData&#92;Local&#92;Microsoft&#92;SkyDrive&#92;17.0.2 003.1112_1&#92;Telemetry.dll"/>
    <binaryImage start="0x6e940000" end="0x6e94a000" type="__TEXT" path="C:&#92;Users&#92;t2wave&#92;AppData&#92;Local&#92;Microsoft&#92;SkyDrive&#92;17.0.2 003.1112_1&#92;logging.dll"/>
    <binaryImage start="0x6a140000" end="0x6a192000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;Faultrep.dll"/>
    <binaryImage start="0x73760000" end="0x73767000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wsock32.dll"/>
    <binaryImage start="0x6e160000" end="0x6e175000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;cabinet.dll"/>
    <binaryImage start="0x6dd20000" end="0x6dd4f000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;xmllite.dll"/>
    <binaryImage start="0x67310000" end="0x67332000" type="__TEXT" path="C:&#92;Users&#92;t2wave&#92;AppData&#92;Roaming&#92;Dropbox&#92;bin&#92;DropboxExt. 22.dll"/>
    <binaryImage start="0x722c0000" end="0x7234e000" type="__TEXT" path="C:&#92;Windows&#92;winsxs&#92;x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.616 1_none_50934f2ebcb7eb57&#92;msvcp90.dll"/>
    <binaryImage start="0x73770000" end="0x73813000" type="__TEXT" path="C:&#92;Windows&#92;winsxs&#92;x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.616 1_none_50934f2ebcb7eb57&#92;msvcr90.dll"/>
    <binaryImage start="0x66ef0000" end="0x66f21000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;EhStorShell.dll"/>
    <binaryImage start="0x09b00000" end="0x09b4f000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Common&#92;Configuration&#92;External Libraries&#92;EnvBrush.dll"/>
    <binaryImage start="0x09f00000" end="0x09f64000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Common&#92;Configuration&#92;External Libraries&#92;EnvCollision.dll"/>
    <binaryImage start="0x098c0000" end="0x098d7000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Common&#92;Configuration&#92;External Libraries&#92;EnvPointGrid.dll"/>
    <binaryImage start="0x0c520000" end="0x0c5d8000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Common&#92;Configuration&#92;External Libraries&#92;FlashIK.dll"/>
    <binaryImage start="0x09da0000" end="0x09deb000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Common&#92;Configuration&#92;External Libraries&#92;FLBridge.dll"/>
    <binaryImage start="0x09b50000" end="0x09b67000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Common&#92;Configuration&#92;External Libraries&#92;FLfile.dll"/>
    <binaryImage start="0x0c5e0000" end="0x0c629000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;en&#92;Configuration&#92;External Libraries&#92;FLAir1_1.dll"/>
    <binaryImage start="0x0c630000" end="0x0c67c000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;en&#92;Configuration&#92;External Libraries&#92;FLAir1_5.dll"/>
    <binaryImage start="0x65700000" end="0x65833000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;msxml3.dll"/>
    <binaryImage start="0x6d6c0000" end="0x6d85b000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;JVM&#92;bin&#92;client&#92;jvm.dll"/>
    <binaryImage start="0x6d280000" end="0x6d288000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;JVM&#92;bin&#92;hpi.dll"/>
    <binaryImage start="0x6d690000" end="0x6d69c000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;JVM&#92;bin&#92;verify.dll"/>
    <binaryImage start="0x6d300000" end="0x6d31d000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;JVM&#92;bin&#92;java.dll"/>
    <binaryImage start="0x6d6b0000" end="0x6d6bf000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;JVM&#92;bin&#92;zip.dll"/>
    <binaryImage start="0x04fc0000" end="0x0500c000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;DisplayFusion&#92;Hooks&#92;AppHookWIN6032_C09CFE01-EAA7-4608-B84A-E18434AB5A05 .dll"/>
    <binaryImage start="0x51190000" end="0x5171a000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Common&#92;Configuration&#92;authplay.dll"/>
    <binaryImage start="0x6d1c0000" end="0x6d239000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;mscms.dll"/>
    <binaryImage start="0x6ffa0000" end="0x6ffb7000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;userenv.dll"/>
    <binaryImage start="0x73910000" end="0x73918000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;secur32.dll"/>
    <binaryImage start="0x221e0000" end="0x22463000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AdobeLM_libFNP.dll"/>
    <binaryImage start="0x71c00000" end="0x71c1c000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;IPHLPAPI.DLL"/>
    <binaryImage start="0x71bf0000" end="0x71bf7000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;winnsi.dll"/>
    <binaryImage start="0x6d070000" end="0x6d079000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;snmpapi.dll"/>
    <binaryImage start="0x6efd0000" end="0x6efe0000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;nlaapi.dll"/>
    <binaryImage start="0x6efc0000" end="0x6efd0000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;NapiNSP.dll"/>
    <binaryImage start="0x6e650000" end="0x6e65a000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wbem&#92;wbemprox.dll"/>
    <binaryImage start="0x6a070000" end="0x6a0cc000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wbemcomn.dll"/>
    <binaryImage start="0x75440000" end="0x7546e000" type="__TEXT" path="C:&#92;Windows&#92;SysWOW64&#92;wintrust.dll"/>
    <binaryImage start="0x6efa0000" end="0x6efb2000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;pnrpnsp.dll"/>
    <binaryImage start="0x6ff30000" end="0x6ff6c000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;mswsock.dll"/>
    <binaryImage start="0x6f5a0000" end="0x6f5e4000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;dnsapi.dll"/>
    <binaryImage start="0x6ef90000" end="0x6ef98000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;winrnr.dll"/>
    <binaryImage start="0x6f280000" end="0x6f2a1000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Bonjour&#92;mdnsNSP.dll"/>
    <binaryImage start="0x6f250000" end="0x6f277000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Common Files&#92;Microsoft Shared&#92;Windows Live&#92;WLIDNSP.DLL"/>
    <binaryImage start="0x6ef80000" end="0x6ef8d000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wshbth.dll"/>
    <binaryImage start="0x6f210000" end="0x6f248000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;FWPUCLNT.DLL"/>
    <binaryImage start="0x6de80000" end="0x6de8f000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wbem&#92;wbemsvc.dll"/>
    <binaryImage start="0x673d0000" end="0x67466000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wbem&#92;fastprox.dll"/>
    <binaryImage start="0x6f6e0000" end="0x6f6f8000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;ntdsapi.dll"/>
    <binaryImage start="0x6f4d0000" end="0x6f4d6000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;rasadhlp.dll"/>
    <binaryImage start="0x6f2b0000" end="0x6f2b6000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;wship6.dll"/>
    <binaryImage start="0x6ff20000" end="0x6ff25000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;WSHTCPIP.DLL"/>
    <binaryImage start="0x66fa0000" end="0x66fa3000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;icmp.dll"/>
    <binaryImage start="0x11f20000" end="0x11fbb000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;registration.dll"/>
    <binaryImage start="0x719d0000" end="0x719ec000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;oledlg.dll"/>
    <binaryImage start="0x547c0000" end="0x54843000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AdobeUpdater.dll"/>
    <binaryImage start="0x23b70000" end="0x2486a000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AdobePSL.dll"/>
    <binaryImage start="0x22770000" end="0x2282c000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;en&#92;Configuration&#92;Importers&#92;AICS3Importer.dll"/>
    <binaryImage start="0x25b00000" end="0x26b79000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AILib.dll"/>
    <binaryImage start="0x0abb0000" end="0x0abbe000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;SPBasic.dll"/>
    <binaryImage start="0x26b80000" end="0x26f24000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AdobeLinguistic.dll"/>
    <binaryImage start="0x4a900000" end="0x4a9c2000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;icuin36.dll"/>
    <binaryImage start="0x4a800000" end="0x4a8d8000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;icuuc36.dll"/>
    <binaryImage start="0x4ad00000" end="0x4b6b3000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;icudt36.dll"/>
    <binaryImage start="0x26f30000" end="0x270cf000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;WRServices.dll"/>
    <binaryImage start="0x40000000" end="0x40262000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AIRes.dll"/>
    <binaryImage start="0x11c70000" end="0x11ccc000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Additional&#92;Plug-ins&#92;Illustrator Filters&#92;Photoshop Adapter.aip"/>
    <binaryImage start="0x22e70000" end="0x22efa000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Required&#92;Plug-ins&#92;ADMStubPlugin.apl"/>
    <binaryImage start="0x11fc0000" end="0x11fce000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Required&#92;Plug-ins&#92;FrameworkS.aip"/>
    <binaryImage start="0x22670000" end="0x226aa000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Required&#92;Plug-ins&#92;BRSPencilTool.aip"/>
    <binaryImage start="0x226c0000" end="0x226e1000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Required&#92;Plug-ins&#92;FOConversionSuite.aip"/>
    <binaryImage start="0x233a0000" end="0x233e2000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;AIPort.dll"/>
    <binaryImage start="0x31060000" end="0x3108f000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Required&#92;Plug-ins&#92;PathfinderS.aip"/>
    <binaryImage start="0x23a70000" end="0x23afa000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Required&#92;Plug-ins&#92;PDFSuite.aip"/>
    <binaryImage start="0x233f0000" end="0x23444000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;FilterPort.dll"/>
    <binaryImage start="0x22830000" end="0x2284b000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Required&#92;Plug-ins&#92;Rasterize.aip"/>
    <binaryImage start="0x24870000" end="0x248d5000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Additional&#92;Plug-ins&#92;Illustrator Filters&#92;Deform.aip"/>
    <binaryImage start="0x23060000" end="0x2306b000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Required&#92;Plug-ins&#92;ExpandS.aip"/>
    <binaryImage start="0x270d0000" end="0x2712d000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Additional&#92;Plug-ins&#92;Illustrator Formats&#92;PhotoshopImport.aip"/>
    <binaryImage start="0x23b40000" end="0x23b47000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Additional&#92;Plug-ins&#92;Illustrator Formats&#92;MPSCommon.aip"/>
    <binaryImage start="0x28680000" end="0x28694000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Additional&#92;Plug-ins&#92;Illustrator Filters&#92;Transform.aip"/>
    <binaryImage start="0x28130000" end="0x2814f000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Additional&#92;Plug-ins&#92;Illustrator Filters&#92;Pathfinder.aip"/>
    <binaryImage start="0x281b0000" end="0x281d3000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Additional&#92;Plug-ins&#92;Illustrator Filters&#92;ExpressView Support.aip"/>
    <binaryImage start="0x282a0000" end="0x28515000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Additional&#92;Plug-ins&#92;Illustrator Filters&#92;3D.aip"/>
    <binaryImage start="0x286a0000" end="0x28754000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Illustrator&#92;Required&#92;Plug-ins&#92;PDFFormat.aip"/>
    <binaryImage start="0x28760000" end="0x288ee000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;en&#92;Configuration&#92;Importers&#92;FhDbRdr.dll"/>
    <binaryImage start="0x288f0000" end="0x28d6f000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;Common&#92;Configuration&#92;Importers&#92;Fireworks Library.dll"/>
    <binaryImage start="0x28e70000" end="0x290b2000" type="__TEXT" path="C:&#92;Program Files (x86)&#92;Adobe&#92;Adobe Flash CS4&#92;en&#92;Configuration&#92;Importers&#92;PhotoshopReader.dll"/>
    <binaryImage start="0x74a20000" end="0x74a45000" type="__TEXT" path="C:&#92;Windows&#92;System32&#92;powrprof.dll"/>
    </binaryImageSet>
    </crash>
    <reproSteps>
    </reproSteps>
    </crashreport>

    Thanks Anton for your reply!
    I'm 100% sure that the PNG file is not the problem.
    I can donwload any PNG file on google and they all freeze Flash.
    I noticed that the program won't react to any mouse command. I hear the
    generic windows "ding!" sound when I click on something, but my keyboard
    shortcuts still works. I can close or save the file, change tools, etc.
    It happens since the middle of February, I'm not sure when.
    Before that, I've never had any problems with importing PNG.
    Also, I haven't installed any new program recently.

  • How can I live trace a hand sketch line work and cut from background to apply to new coloured backgr

    I placed a hand drawn scanned photo of artwork to illustrator cs4 in an attempt to trace the lines and remove from paper and add the line drawing to a brochure artwork. this to give illusion of an old artist's manuscript with drawings. first attempt with the psd file in trying to apply trace as a "hand drawn " method crashed illustrator. I tried again and used ink drawing which came out blotchy. Tried simple trace and got a warning that the file was too large. I'm thinking that the drawing itself is very soft and the paper around it is grainy and dim. I had tried to brighten   and lighten in the scan mode.I did get it as far as a trace at one point and used outline stroke but then couln't fill in the lines or cut it out. I have taken it to photoshop and drew a pen selection around the soft lines and used a transparent background on it, hoping to stroke it in illustrator and drag it off over to the brochure template .But didn't try it yet. I also just made the resolution 250 and the size document to 6 x 9 in approx. But now am fearful of another experiemental attempt. Am I on the right track or is there another method to bringing in a line drawing that is not defined well and getting it to trace and remove from it's background to apply onto the illustrator document being worked on. I have done placing and tracing before but not a line work. Any suggestions that won't crash my program would be welcome. As an artist I will want to do this again and again so want to know the proper method or what I am missing. I've been using illustrator for 7 months now.

    Maybe Li[ve trace] is not t]he way[ to go
    I have some suggestion one leave it as is and use a blending mode of multiply to give it a color background like this
    leave it as is make it a grayscale tiff import int Illustrator and color it it in Illustrator like this
    Or trace over it with the brush tool aand then give it a color ground.
    Or do the original over and do a cleaner job with no tone or a minimum of tone. Then Live trace.

  • Stroking and filling doesn't work in paths expanded from Live Trace

    I’m using Adobe Illustrator CS4. I’m a complete beginner, though I’ve done a bit of reading about the basics. 
    After tracing a bitmap image (of black letters on a transparent background, in pdf format) using Live Trace, expanding it, and editing the paths with the pen tool to my satisfaction, I find neither fills nor strokes appear -- I can change the fill settings or stroke settings, but the paths just stay the colour of all unfilled paths on that layer. (I’m viewing the document in preview mode.) Also, when selecting paths with either the Selection tool or the Direct Selection tool and then trying to use Live Paint, I get a notification that "the selection contains objects that cannot be converted. Live Paint groups can only contain paths and compound paths. Clipping paths are not allowed." When I go to the Object Menu, under Clipping Mask the only available option is "Make Mask", and "Release" and "Edit Mask" are greyed out, which suggests to me there are no clipping masks present. 
    I’ve created a separate, nearly identical document where strokes, fills and Live Paint work fine. The only difference is that when I used Live Trace on the bitmap image, for the non-working document I selected "Outlines" for the Vector section of the View options (in the Tracing Options dialogue box), and in the working one I selected "Tracing Result" instead. For both, I used the same original document settings, placed the same bitmap image, used the Live Trace preset "Black and White Logo" with all the default settings except that I checked the "Ignore White" box, and then clicked Expand.
    Obviously, I know what I did wrong, though I don’t know why it made a difference. But since I spent many hours editing the paths in the screwed-up document before I realized stroking and filling wouldn’t show up, is there a way to fix it? How can I make the paths "valid" for stroking, filling, and Live Paint -- or, failing that, is there a way to somehow copy or automatically trace the shape of the paths, so I don’t have to do all that editing again? 
    This is kind of urgent, since I’m creating a logo for a project that needs to be finished soon. Any help would be greatly appreciated! I could send someone the document by e-mail if you wanted to look at it properly -- since I’m a beginner, I don’t know what I need to describe.

    Never mind! I fixed it. For anyone else who has this same problem -- apparently, I’d made it so the paths were actually guides, which can look like and possess the properties of paths but which don’t show when you print. After going to View, Guides, Release Guides, the fills and strokes manifested, and the paths became "valid".

  • How can I select and delete the fill color (white background) of a live trace (B&W) with in an actio

    How can I select and delete the fill color (white background) of a live trace (B&W) with in an action set?
    Illustrator CS4 in windows XP.

    Maybe Li[ve trace] is not t]he way[ to go
    I have some suggestion one leave it as is and use a blending mode of multiply to give it a color background like this
    leave it as is make it a grayscale tiff import int Illustrator and color it it in Illustrator like this
    Or trace over it with the brush tool aand then give it a color ground.
    Or do the original over and do a cleaner job with no tone or a minimum of tone. Then Live trace.

Maybe you are looking for

  • How do I find out who 'owns' my line?

    I have just moved into a rented house.  The previous tenants have said they were with Sky, but have confirmed they have cancelled everything and Sky says the line isa free to be taken.  When I've called BT, they've told me it will take until 20 Sep t

  • I just got a new computer and I'm trying to sync my Ipod to the new computer not all of my items are coming over to the new computer

    I'm having trouble getting all of my apps and photos to sync to the new computer and only about half of my music will copy over.  What am I missing?

  • Final Cut Pro and Compressor not working

    I know this has been asked before, but I didn't find a solution to my problem yet. Ever since I upgraded to Mavericks, I can't export any movies. I get the following message: The operation couldn't be completed. (com.apple.Compressor.CompressorKit.Er

  • Excel 2013 RTD links / macro stopped working

    I have a new laptop with Windows 8.1 and Office 2013 that was pulling in data via an RTD link into excel without problems until a couple of days ago.  The same system works perfectly with XP and Excel 2010.  I reinstalled the application (Prophet X)

  • Pages Hang on 6.0 Beta Update

    Once again, Firefox pushed an update that causes all of my pages to hang unless I move the mouse around the page. It doesn't matter if I click a link on a page, a bookmark, enter the URL in the address bar or enter a search, unless I wiggle the mouse