Extracting resourse like .ai & png files from a flash project

Hi! I have been assined the task of extracting the images from old flash projects and am having a devil of a time doing so.
There are lots of programs that you can extract info out of the swf files, but these don't give you the original .ai Ilustrator files that may have been used to create the presentation with, or png files with transparent backgrounds.
Is there a plug-in in Flash that allows you to capture these items in the document?  when I drag the item from the library (lets say a .ai file) to the stage and right click and copy it, it only gives me part of the item when I paste it back into illustrator... and when I drag the PNG resource to photoshop I get it with a background I do not want.
any help on this would be great!!!!
I have both cs3 and cs4 so a solution in either one would be great!

Well that is kinda what I've been doing, only its not quite that simple as doing it that way makes an image of what is on the entire stage.  What I have to do is create a new project copy over all my library items to the new project, and pull over each one individually and do it that way.... if you have a lot of items in your library (which I do a lot of times since these contain a lot of animation sequenced into individual frames) this process can be quite tedious.  Yes you can save out to .ai illustrator files this way as well.
I was hoping for something a little more... automatic or at least where I don't have to drop each item individually on a stage, reposition, ect...
But yes, the previous post is one way of doing it with some fooling around with.

Similar Messages

  • Taking the transparent png files from net into Photoshop. It coming as flat not transparent. How can i do ?

    Hi,
    i want to take some transparent png files from internet into photoshop. The files originally transpernt on internet.
    Im copying that image and paste into photoshop but it won't transparent. therefore im saving the files my mac and using like that.
    But i dont want do this. Because this isn't problem in illustrator. Can anybody help me how can i use transparent png files as transparent in photoshop without save file?
    hope could explain my problem.

    If you can right click on the image and copy its utl to the clipboard you may ne able to open that in Photoshop with this old  Photoshop script.
    // OpenImageFromWeb.jsx
    // Copyright 2006-2009
    // Written by Jeffrey Tranberry
    // Photoshop for Geeks Version 3.0
    // modified by MLH
    // modified by JJMACK 2010
    Description:
    This sample script shows how to download images from a web server using the
    Socket object.
    // Note: Socket.read() parameter & behavior
    // Socket.read() will read or time out. It may not read all data fromserver. <---------------
    // Socket.read(999999) will read 999999 bytes, or timeout, or socket will be
    // closed by the server.
    // enable double clicking from the
    // Macintosh Finder or the Windows Explorer
    #target photoshop
    // Make Photoshop the frontmost application
    app.bringToFront();
    // SETUP
    var html = "";
    var request = "";
    var url = "";
    var binary = "";
    var requesthtml = "";
    var socket = new Socket;
    var domain = "www.mouseprints.net" // the domain for the file we want
    var sImg = "/old/dpr/JJMack8btiSrgb.png"; // the rest of the url for the file we want
    var port = ":80"; // the port for the file we want
    // MAIN
    var url = prompt("Enter the image's full URL http://domain/full image path",url);   // prompt for domain name
    if (url != null && url != ""){
      if ( (url.indexOf("http://") != -1)  || (url.indexOf("HTTP://") != -1)  ) {
      domainPathLength = url.length - "http://".length;
      domainPath = url.substr(7, domainPathLength);
      pathOffset = domainPath.indexOf("/");
      domain = domainPath.substr(0, pathOffset);
      sImg = domainPath.substr(pathOffset, domainPath.length - pathOffset );
      // Isolate Image name
      var Name =  sImg
      var imagePath = "";
      while (Name.indexOf("/") != -1 ) { // Strip Path
      imagePath= imagePath + Name.substr(0, Name.indexOf("/") + 1);
      Name = Name.substr(Name.indexOf("/") + 1 ,);
      //alert("domain = " +  domain + " , Image = " + sImg + " Image File Name = " + Name);
      if ( domain != "" && sImg != "" && sImg != "/" && Name.indexOf(".") != -1 ) {
      var f = File("~/" + Name); // Image file name
      f.encoding = "binary"; // set binary mode
      f.open("w");
      if (socket.open(domain + port, "binary")){
      //alert("GET " + sImg +" HTTP/1.0\n\n");
      requesthtml ="\n\nDmain:" + domain + " Port" + port + " binary\n"
      //request ="GET " + sImg +" HTTP/1.0\n\n"
      request ="GET " + sImg +" HTTP/1.0\nHost: " + domain + "\nAccept: image/gif, image/x-xbitmap, image/png, image/jpeg, */*\n\n";
      socket.write(request); // get the file
      var binary = socket.read(99999999);
      binary = removeHeaders(binary);
      f.write(binary);
      socket.close();
      else { alert("Connection to Domain:" + domain + " Port" + port + " Failed   ");}
      f.close();
      if (binary.length != 0) {
      //alert ("file length = " + binary.length );
      if(app.documents.length == 0) {
      //app.documents.add([width] [, height] [, resolution] [, name] [, mode] [, initialFill] [,pixelAspectRatio] [, bitsPerChannel] [,colorProfileName])
      app.documents.add(new UnitValue(1600,'px'), new UnitValue(1200,'px'), 72, null, NewDocumentMode.RGB, DocumentFill.WHITE, 1,BitsPerChannelType.EIGHT, "sRGB IEC61966-2.1" );
      placeSmartObject( f );
      f.remove(); // Remove temporary downloaded files
      else { alert("Invalid Image URL: " + url ); }
      else { alert("Invalid URL: " + url ); }
    else { if ( url == "" ) alert("No URL Entered"); }
    // FUNCTIONS
    function placeSmartObject(fileRef){
      //create a new smart object  layer using a file
      try {
      var desc = new ActionDescriptor();
      desc.putPath( charIDToTypeID( "null" ), new File( fileRef ) );
      desc.putEnumerated( charIDToTypeID( "FTcs" ), charIDToTypeID( "QCSt" ),charIDToTypeID( "Qcsa" ));
      desc.putUnitDouble( charIDToTypeID( "Wdth" ),charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Hght" ), charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Angl" ), charIDToTypeID( "#Ang" ), 0 );
      desc.putBoolean( charIDToTypeID( "Lnkd" ), true );
      executeAction( charIDToTypeID( "Plc " ), desc, DialogModes.NO );
      activeDocument.activeLayer.resize(100 ,100,AnchorPosition.MIDDLECENTER);
      activeDocument.revealAll();
      } catch (e) { alert("Placeing file: '" + fileRef + "' failed"); }
    // Remove header lines from HTTP response
    function removeHeaders(binary){
      var bContinue = true ; // flag for finding end of header
      var line = "";
      var httpheader = "";
      var nFirst = 0;
      var count = 0;
      while (bContinue) {
      line = getLine(binary) ; // each header line
      httpheader = httpheader + line;
      bContinue = line.length >= 2 ; // blank header == end of header
      nFirst = line.length + 1 ;
      binary = binary.substr(nFirst) ;
      if (httpheader.indexOf("Bad Request") != -1 || httpheader.indexOf("Not Found") != -1) {
      alert (requesthtml + request + httpheader);
      var binary = "";
      //alert (requesthtml + request + httpheader + "\nFile length = " + binary.length);
      return binary;
    // Get a response line from the HTML
    function getLine(html){
      var line = "" ;
      for (var i = 0; html.charCodeAt(i) != 10; i++){ // finding line end
      line += html[i] ;
      return line ;

  • HT2518 i would like to copy files from an external hard drive to my Mac. I intend to do this several times. Does Mac identify this files which have already be copied over or does it re- copy them every time?

    i would like to copy files from an external hard drive to my Mac. I intend to do this several times. Will Mac copy the same files every time or can it segregate and only copy new files from the external hard drive?

    Only copies the file or files you select. The selection will remain unless you change it in case you wish to repeat the same copy to another location. Multiple and different copy operations can be run simultaneously.

  • Opening Fireworks .png file from Dreamweaver

    Anybody have problems with the connectivity between Fireworks
    and Dreamweaver? I have a Retail version of Macromedia Studio 8.
    I've been designing a new site and noticed that my fireworks .png
    file is not updating from my changes in Dreamweaver (probably
    because I cannot open from the edit button in Dreamweaver.) When I
    try to open the .png file from the Edit button at the bottom of the
    Properties Panel in Dreamweaver it gives me an Error Message :
    Unable to Launch. Please be sure that the application exists and
    that there is enough memory.
    Obviously the only benefit of Macromedia suite is the
    connectivity. Well, since I don't have it it is sucking. Was it a
    misinstallation on my part? Anybody know what's happening here or
    how to fix?
    Thanks,
    JP

    Copy the file off the server, then open it?
    And what version of Photoshop are you using?  On what OS version?
    Most likely this is a bug in the OS or server software that just shows up because of the asynchronous file IO used by Photoshop (to improve performance).

  • Do anybody know how to change a PNG file from 1760 width by 1369 height to 800 x 600?

    Do anybody know how to change a PNG file from 1760 width by 1369 height to 800 x 600?

    Crop to 4x3 aspect ratio, then resize to 800x600

  • Hey, its impossible to move jpeg or png files from my pc (w7) to my iphone (4g, latest firmware), tried everything, even 5,99 € app and 20 hrs of googling, pls help

    its impossible to move jpeg or png files from my pc (w7) to my iphone (4g, latest firmware), tried everything, even 5,99 € app and 20 hrs of googling, pls help

    20 hours of googling?  It's in the user guide on p.117 and 53..
    http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf
    and here... http://support.apple.com/kb/HT1296

  • How do I import music files from a flash drive to my iTunes library on my laptop

    How can I import music files from a flash drive to my iTunes library? I put the flash drive into my laptop, selected " add file to library", selected the songs I wanted from the flash drive, and it looked like they were added as the names show under " recently added". Then I removed the flash drive from my laptop But when I select one of the songs and try to play it a message saying "the song could not be used because the original file could not be found. Would you like to locate it?"  So it seems the actual files did not transfer. What do I do? I have done this. With a cd in the past with nsomproble,.

    Suncadia wrote:
    Thank you!! This worked. It does seem there should be an easier way but this did work.
    Dragging the files to "Automatically Add..." is pretty easy once you know where to look.  Just make sure iTunes is running when you do it; otherwise the files will just sit there until the next time you open iTunes.
    (Interestingly, the way you originally tried to do would have worked fine except for one little detail:  you have to first go into Edit > Preferences > Advanced, and check the box for "Copy files..."  If that is not done, iTunes will reference the files on the flash drive, which of course are not accessible once the drive is removed, as you saw.)
    Anyway, glad that all is now sorted.  Enjoy the music!

  • Toshiba 40SL733g - How to play video files from USB flash memory

    When I plug my USB flash memory in USB port, Media Player menu shows up with two options : Photos and Settings.
    How do I make my TV recognize and play video files from USB flash memory?
    Flash is on FAT32.
    I have tried to play avi, mp4 and mkv files but nothing happens. It looks like flash is empty.
    Could you please help me solve this problem.
    Thanks!

    bzunic, have you updated the firmware for your model?.
    With my own set, (32RL900A), the instruction manual said that certain buttons on the remote control were "unused", however, after the first firmware update, the previously "unused" buttons were used, (In our case, Time Shift, Record, and so on).
    The reason I talk about this is, these features became available after a firmware upgrade, and were not mentioned in the user manual, in our case, and a later download of the instruction manual for our model actually gave the instructions for the use of these features, which were shown as "not available", in the original instruction manual supplied with the TV, but became available after the firmware upgrade.
    Let us know how it all works out ............
    donhe7

  • I want to write and read a hex file from the flash buffer of the microcontroller through the USB serial port

    hello sir,
    I am developing a GUI screen from that i want to write and read a hex file from the flash buffer of the microcontroller through the USB serial port. the driver i am using is FTDID2XX driver.if anyone having examples of loading file through serial port.Please reply me .
    Thanks

    Looks like you should post your request in the LabVIEW forum, this one here preferentially is for LabWindows/CVI...

  • Trying to delete some files from a flash template (.fla file) in flash

    Hi I am trying to delete some files from a flash template I purchased,  when I open the .fla file in flash and go into the library, I would like  to delete the contact box and the mp3 player, when I locate those files  in the library and delete the files, the website no longer opens up (it  will not work when I delete those files from the library) what am I  doing wrong ? please help, I am fairly new to flash.

    Ned - Nice to have guys like your good self giving the advice you do!
    Hope the chap sorts out his mp3 library Problems!
    For my part, I don't want to even try come to terms with FLASH - great as it is.
    If you would like to have the job of making changes for me @  Footballtipping.co.uk/ - let me know. Contact - [email protected]
    You will be rewarded to your liking! -
    Regards all & keep at it!
    Mike Roche

  • How can I access files from a flash drive that were previously saved using a Windows computer? When I attempt to open the file on MacBook Pro, it is asking to "convert file to"; I also have Microsoft Word installed on the Mac as well.

    How can I access files from a flash drive that were previously saved using a Windows computer? When I attempt to open the file on MacBook Pro, it is asking to "convert file to"; none of the options I choose work. I also have Microsoft Office (with Word) installed on the Mac as well.

    Format the external drive as FAT32 or ExFAT. Both computers will then be able to read and write to it.

  • How do I transfer files from a flash drive to iMac. I get a folder with "no name" which I can live with but I can't find any way to make the actual physical transfer of the files to the iMac.

    How do I transfer files from a flash drive to my new iMac?  I get a folder with "no name" that I can live with but I can't find a way to transfer the flass drive files to to iMac hard drive.

    What happens when you try to drag & drop the files?
    ~Lyssa

  • Extract XML output to a file from a Query

    Hi Gurus,
    I want to know how can I achieve this. Please post some sample code.
    i want to extract output of following query into xml
    select customer_name,address,phone,email
    from tn_customers
    where rownum <1001
    here i wil get 1000 records.
    Is there any way to generate mxl into a file from the above query?
    Please help

    First you must have defined a output directory:
    create directory OUTPUT_DIRECTORY as 'c:\work'
    Then you need a function which creates the xml for you, for example:
    function create_xmltype
    return xmltype
    is
    queryctx dbms_xmlquery.ctxtype;
    result clob;
    begin
    -- set up the query context...!
    queryctx := dbms_xmlquery.newcontext ('select customer_name,address,phone,email from tn_customers where rownum <1001');
    -- get the result..!
    result := dbms_xmlquery.getxml (queryctx);
    -- Now you can use the result to put it in tables/send as messages..
    dbms_xmlquery.closecontext (queryctx); -- you must close the query handle..
    return xmltype(result);
    end;
    And last but not least you must create the file. This is shown in next code:
    procedure write_file
    is
    cursor c_cur
    is
    select primary_id, clob_stuff
    from table;
    l_output_directory varchar2 (200) := 'OUTPUT_DIRECTORY';
    output_file utl_file.file_type;
    l_xml xmltype;
    l_blob blob;
    l_data_length number;
    l_offset number default 1;
    l_chunk constant number default 4000;
    l_csid number;
    l_csid_value varchar2 (100);
    begin
    -- make sure we are using correct character set id
    select value
    into l_csid_value
    from nls_database_parameters
    where parameter = 'NLS_CHARACTERSET';
    select nls_charset_id (l_csid_value)
    into l_csid
    from dual;
    for r_cur in c_cur
    loop
    l_xml := xmltype (r_cur.clob_stuff);
    l_blob := l_xml.getblobval (l_csid);
    l_data_length := dbms_lob.getlength (l_blob);
    -- Open the file
    output_file := utl_file.fopen (l_output_directory, r_cur.primary_id || '.xml', 'wb', l_chunk);
    loop
    -- Exit when our file offset is bigger than our file
    exit when l_offset > l_data_length;
    -- Write the output chunk by chunk
    utl_file.put_raw (output_file, dbms_lob.substr (l_blob, l_chunk, l_offset), true);
    -- Increment the offset by the amount written
    l_offset := l_offset + l_chunk;
    end loop;
    -- Close the file and reset offset
    utl_file.fclose (output_file);
    l_offset := 1;
    end loop;
    end write_file;

  • I can't import *.psd *.png file from Creative Cloud

    i want to import transparent background image in new layer
    but, i can't do it after update to iOS7
    i can import *.jpg *.gif files from Creative Cloud. but not in *.psd *.png files
    when import *.psd *.png from Creative Cloud it show blank object..
    please tell me how to fix it
    thank you.
    iPad with Ratina Display
    iOS 7.0.2
    Photoshop Touch 1.5.0

    Hi, Ignacio
    i tried to paste watermark in my picture.
    i show you step by step my produce it..
    file for paste upper on picture (tiger)
    i open first layer (tiger) in photoshop touch
    and than, select *.psd (backgound transperant) file in Creative Cloud.  Click Add.
    is show in blank picture. Click done
    new layer paste upper in tiger paper. but can't saw it.
    help me please..
    thank you.

  • Animation with .png files - from Maya 3D

    I need to import an 3-second animated sequence (created in Maya 3D by someone else) into FCP Studio sequence.
    I have been given a folder with 90 .png files. Is there quick/easy way to do it?
    The individual .png files open up fine.
    They only have experience with premiere, and thought I should be able to import it as sequence?
    Any suggestions? Do I force them to output as .mov file? They don't know if they can preserve alpha channel (we need to keep background transparent).
    Thanks for any suggestions or help!

    The iPad expects the photos to be in a folder named DCIM, and have names 8 characters long plus the extension. i.e. image001.png
    Do your png files meet this criteria?

Maybe you are looking for

  • BW modelling Infoobjects ques

    hi i am working on a project where we are evaluating the trsnaportation costs and revenue when we ship goods from one vendor to another . The R/3 custom table with this information has 2 fields - from vendor , to vendor . these vendors are a part of

  • Archive log full frequently

    hi , i have been getting the ORA-00257 : archiver error connect internal only, until freed is it possible to monitor this archive log to see when it might be filling up ? pls advise

  • Image Processor does not work correctly

    Two problems and one suggestion here: 1. When using the Image Processor Script to resize images only the first image in a folder will get resized correctly. Subsequent files just get coppied at their original size. 2. The script ignores the width set

  • Please help bbm chat history

    Hi, I'm new to this forum and I'm hoping you can help me. I have been having a conversation with one of my messenger contacts and wanted to check something that was mentioned earlier in the day but was unable to do so. I have history turned on and se

  • IMac freezes randomly sometimes with pixelated freeze

    My iMac is running 10.7.5 from mid 2007, from time to time it will freeze and then I restart it and sometimes it will start up real pixelated and I will have to go through a series of restarts and disk utility verifications and it will work for about