Importing transparent PNG files from PS CS5 to Flash CS5 for animation.

Hey all, just signed up specifically to try and find a solution to this problem!
Im using PS CS5 to build the parts of animation i am making in Flash CS5. Im not using PS for the animation as the GIF quality is horrendous, and also rotating layers for animation is a no go!
Anyway, im saving the individual layers in (Save for Web) as PNG-24 files with transparency. Then importing them 'To Stage' in Flash. That side is all good.
When ive made the animation in Flash and go to 'Publish Preview' there is a 'background' there. Also there is a border around the files on the stage. This appears to be the size of the 'background' in the animation. Transparency is set in the GIF settings.
This is beyond frustrating, and I havent been able to forget about it all weekend!

So are you trying to export this aninamtion as a .gif and not a .swf?
Either way I would suggest you re-test a couple of steps in the whole process to see if you can isolate where the problem is.
To start with in PS, are you working on a transparent background? or a white background? must be transparent....
For testing, create a couple of images with a transparent background in PS. Or use just one or two of your layers, save the file, import to Library in Flash, place on your stage, give you Flash doc a non-white color and test. . There should be no border or background around the image...
And if you use wmode of transparent in the html, even the background of the Flash doc will be transparent.
Best wishes,
Adninjastrator

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 ;

  • 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.

  • Png file won't appear in flash!

    Hi ... I'm trying to import a png file from Illustrator into flash and just the 'blue box' is appearing in flash and not the actual image its like its there but invisible !! when i preview it (cmd enter) you can see its there! but not when you're actually in he flash file! HELP

    You might have the outline mode turned on for the timeline layer that you are on.  Try clicking that colored rectangle in the timeline layer near the layer name.  It should be a solid color filled rectangle.
    If that does not change it then look in View -> Preview Mode -> and make sure Outlines is not selected

  • How do you import a .png file into the Final Cut Pro X and at the same time keep the file's original transparency settings?

    How do you import a .png file into the Final Cut Pro X and at the same time keep the file's original transparency settings?

    Go to the Info inspector for the still image and in settings select the alpha type.

  • I am not being able to play sound when I import a .MTS file from my folder

    I am not being able to play sound when I import a .MTS file from my folder on my sequence bar of my Premiere Pro CS6. Even if I use my Media Browser to import the file, the video plays fine, but the audio is disabled it seems. I don't know what to do since I have used .MTS files before without hassle on CS5.5. It is quite frustrating. What can I do?

    Hi debesh05,
    Please mention the Operating System that you are using and also make and model of the Camera that was used to capture those clips. Also, try to make another folder with the same name in the same location where the .MTS files are and move all the clips into the new folder and then try to import the files again using Media Browser in Premiere Pro CS6. If this doesn't work then make a copy of one file and rename it as .M2TS and then import that single file into Premiere Pro CS6. Please update if either of the solution works for you.
    Regards,
    Vinay

  • Importing All the files from a folder at a time

    Hi....
    Can any body tell me how to import set of files from a folder into IDM.
    It is becoming very difficult to import the files one after other....
    Waiting for Reply....
    Thanks in advance..........

    We used an ant script to build an XML file that will contain the files. The script is configured to use the folder structure of our CVS repository.
    We'd checkout our XML module and then run the build script and import the resulting init file.
    Code to the script is below -- caveat emptor. You'll need to change the folder structure to suit your own environment.
    <?xml version="1.0" encoding="UTF-8"?>
    <project basedir="." default="all" name="MyInit">
        <target name="init">
            <property location="." name="src.dir"/>
            <property location="." name="dest.dir"/>       
            <property name="project.name" value="${ant.project.name}"/>
            <property location="${dest.dir}/MyInit.xml" name="MyInit.output"/>
            <property name="source.configuration" value="${dest.dir}/configuration"/>       
            <property name="source.emailTemplate" value="${dest.dir}/emailTemplate"/>
            <property name="source.forms" value="${dest.dir}/forms"/>
            <property name="source.reports" value="${dest.dir}/reports"/>               
            <property name="source.resource" value="${dest.dir}/resource"/>          
            <property name="source.rules" value="${dest.dir}/rules"/>
            <property name="source.workflow" value="${dest.dir}/workflow"/>
            <!-- get the source path -->
            <path id="configuration.path">
                <fileset dir="${source.configuration}" >
                   <include name="*.xml" />
                </fileset>
             </path>
             <property name="cp" refid="configuration.path" />
             <path id="emailTemplate.path">
                <fileset dir="${source.emailTemplate}" >
                   <include name="*.xml" />
                </fileset>
             </path>
             <property name="ep" refid="emailTemplate.path" />
             <path id="forms.path">
                <fileset dir="${source.forms}" >
                   <include name="*.xml" />
                </fileset>
             </path>
             <property name="fp" refid="forms.path" />
            <path id="reports.path">
                <fileset dir="${source.reports}" >
                   <include name="*.xml" />
                </fileset>
             </path>
             <property name="rptp" refid="reports.path" />                 
            <path id="resource.path">
                <fileset dir="${source.resource}" >
                   <include name="*.xml" />
                </fileset>
             </path>
             <property name="rep" refid="resource.path" />        
            <path id="rules.path">
                <fileset dir="${source.rules}" >
                   <include name="*.xml" />
                </fileset>
             </path>
             <property name="rp" refid="rules.path" />
            <path id="workflow.path">
                <fileset dir="${source.workflow}" >
                   <include name="*.xml" />
                </fileset>
             </path>
             <property name="wp" refid="workflow.path" />
            <!-- get the path prefix -->
             <path id="source.path">
                <pathelement location="${src.dir}" />
             </path>
             <property name="sp" refid="source.path" />       
        </target>
        <target depends="init"  name="win_init">
            <!-- change the path of xml files to windows path -->
            <property name="importfile.path" value="${sp}"/>                            
        </target>              
        <target depends="init" name="make">
        <!-- using XML character entity references to escape
        <  <
        >  >
        '  &apos;      -->    
            <echo file="${MyInit.output}" append="false"><?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE Waveset PUBLIC 'waveset.dtd' 'waveset.dtd'>
    <Waveset>
    ${cp}
    ${ep}
    ${fp}
    ${rptp}
    ${rp}
    ${wp}
    </Waveset>
            </echo>
         <!-- replace path prefix with ImportCommand -->
         <replace file="${MyInit.output}"
                  token = "${sp}"
                  value = "<ImportCommand name='include' file='${importfile.path}" />
         <!-- deal with file and path separators in an os independent way -->
         <replace file="${MyInit.output}"
                  token = "${file.separator}"
                  value = "/" />        
        <replace file="${MyInit.output}"
                  token = "${path.separator}"
                  value = "${line.separator}" />
        <replace file="${MyInit.output}"
                  token = ".xml"
                  value = ".xml'/>" />
        </target>
        <target depends="init,win_init,clean,make" description="Build everything." name="all"/>
        <target depends="init" description="Clean all build products." name="clean">
            <delete file="${MyInit.output}"/>
        </target>
    </project>

  • When importing an MXF file from a CF card, I can only get :30 of the original clip. What am I doing wrong?

    When importing MXF video file from a CF card to Final Cut 6, I can only import :30 of it. Why am I limited to :30 and how do I get the entire clip?

    That's the WRONG WAY!  You have to use Log and Transfer, like Michael says.  Here's A tutorial on how to deal with Tapeless in FCP
    <a href=http://library.creativecow.net/ross_shane/tapeless-workflow_fcp-7/1 target=_blank>Tapeless Workflow for FCP 7 Tutorial</a>
    BUT NOTE!  If this is MXF from a CANON camera...their new 305 camera...you not only need a plugin to get it to work (they either include it with the camera, or you have to go to the website... the Canon Log and Transfer plugin), it also might only work with FCP 7.  Because the camera is brand spankin new.  Try the plugin first...well, if this is from that Canon camera.

  • After I import a movie file from the camera memory card, Imovie 10.0.1 acts as if the memory card is empty though I know it isn't.... I can't import that file to iMovie again.. is that the way it worksnow?  Thank you, Filippo

    On IMac 10.9  After I import a movie file from the camera memory card to Imovie 10.0.1 it acts as if the memory card is empty though I know it isn't.... I can't import that file to iMovie again.. is that the way it works now?  Anyone know?  Thanks, Filippo

    I would like to know this too. I imported a lot of files, then Imovie crashed. I went back in and they are not in imovie at all.
    I reconnected the camcorder to import again and though they are still on the camcorder, I no longer see them in the available list of files to import. I'm sure there is some sort of simple setting somewhere that reveals all files even if it thinks they are imported.
    Thanks

  • How do I import a .png file to iPhoto?

    How do I import a .png file to iphoto?

    The Save to iPhoto was fixed in yesterday's iPhoto update: iPhoto 9.4.3
    OT

  • How do I import my video files from old iPhoto - in time machine - to new iPhoto?  Photoes came across, video said incompatible.

    how do I import my video files from old iPhoto - in time machine - to new iPhoto?  Photoes came across, video said incompatible.
    i have moved from a mac pro to a mac mini,
    Mini now has mavericks and latest iLife stuff, I clicked import, was all good, then at end, no videos came across.
    Is Mavericks,/iPhoto having a compatibiltiy issue with some video formats....???
    Your help is appreciated gang.: )

    Please describe exactly what you did. In moving to a new machine no importing is involved. The best way is to simply connect the two computers together and drag the iPhoto library from the old one to the pictures folder go the new one and launch iPhoto
    LN

  • Can't open raw files from Nikon d800 in PS CS5 and can't update Camera Raw plug-ins

    Can't open raw files from Nikon d800 in PS CS5 (Win7 64-bit). It says, the model not supported by Camera Raw. Tried updating Camera Raw plug-ins for d800 but keep getting error message: Update failed, Adobe Application Manager may be damaged. Re-install the latest application manager but still the same error message. How to fix?

    These links may help
    Adobe - Photoshop : For Macintosh
    Adobe - Photoshop : For Windows
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • How to import a png file to imovies ?

    hey guys!
    if someone could help me on this.
    I have managed to import a png file by drag and dropping in on top of my video and having the advanced tools on i have the choice of placing my png within the picture. that works fine and plays smooth. however when i add another png file to another frame the parts with a png layer on top do not play...
    does anyone met this as well?
    any suggestions?what do i do wrong?
    it would mean a lot if someone could help i have a deadline tmr morning!!
    thanks,
    Anna

    You can tell the aspect ratio of your project by clicking FILE/PROJECT PROPERTIES.
    You can tell the dimensions of your PNG file by right-clicking it in the Finder and selecting Get Info. You should see the dimensions of the PNG. You can divide the longest dimension by the shortest dimension to find the aspect ratio. For example, 1920 divided by 1080 is the same as 16 divided by 9, which can also be written as 1.78

  • How to import SQLite .db file from AIR project

    hi friends..
    how to import SQLite.db file from AIR project. and i want use this in my application.
    after importing can i update and delete the recordS?

    There's no import needed. You just open it using the AIR SQL APIs. If this database file was created outside AIR, it's not necessarily compatible, though. There are SQLite features and extensions that aren't supported in AIR.

  • Import an FLV file from Adobe Connect into Premiere Elements 12?

    The Adobe Connect support staff recommended that we use Adobe Premiere Elements to edit the FLV file that we exported out of their software.  We purchased Adobe Premiere Elements 12 based on that advice.  Now we see that FLV files are not on the list of supported import files. 
    How can I import an FLV file from Adobe Connect into Adobe Premiere Elements 12 for editing?

    Welcome to the forum.
    Over the years, I have used Moyea's Flash Importer plug-in for PrPro, and it has worked perfectly. With about PrPro CS 4, IIRC, Adobe did add an FLV Importer, so Moyea began to suspend development of that plug-in. Then, with the release of the CC version of PrPro, they dropped FLV completely.
    Now, Moyea does have other programs, but I do not know if any of them are plug-ins for PrE. However, many of their programs can create, edit and output FLV.
    There is also a (free, if memory serves) FLV converter, FLV to AVI, which I used to convert FLV files, before I discovered the Moyea plug-in for my PrPro.
    I would look into Moyea, to see if there is anything, that will work as a plug-in to PrE, http://www.video-to-flash.com/products/, and if not, explore a program, such as FLV to AVI: http://www.pazera-software.com/products/flv-to-avi-converter/
    Good luck,
    Hunt

Maybe you are looking for

  • For an Organization unit, unable to assign Business partners in devlopment box

    Dear All, For an Organization unit, unable to assign Business partners in development-box , when i click on assign button its navigating to organization unit only (choose relation ship) But for production system i can assign the BP with out any issue

  • ITunes upgrade (v6 - 7.6) on 10.4.2 not working.

    Hmmmm... so I"m going from the default iTunes (v.6) on OS 10.4.2 and trying to upgrade to the downloaded version of iTunes 7.6(.1) and though the documentation says minimum system requirements of 10.3.9, here I am running a newer operation system, bu

  • Iphone is not mounting

    Hi there, My phone doen't seem to be mounting when plugged into my imac. I ran a software update not too long ago and the ituens interface looks a bit different. Not sure if I'm overlooking something.... I need to run a back up desperately so any hel

  • Changing hierarchies in BeX

    Hello I've two SAP FI/CO hierarchies in use that show different structures of cost elements. Now, I'd like to give users the possibility to change the hierarchies directly in BeX (e.g. in a drop-down) instead of using to different queries. Is that po

  • Value based reports

    Hi friends, I have column which contains 3 values , ex :Column A contains values 1,2,3. and i have 3 reports.like Rep1,Rep2,and Rep3. If i click on value 1 , it should go to Rep1........ How can i give? Thanks....