Problem with corrupted images in flash file

Hey people, i've been searching around and this is the best place I could find to post th
is.
I was wondering if there was anyone out there who could help me with some corrupted files.
Apparently its a random error where when saving some images may not save properly, I originally saved the file in CS3 and am now working on it where I only have CS4 and 5 available to me.
The file can open in CS5 but not CS4 for some reason however there are certain scenes containing certain symbols which obviously haven't saved properly and so are missing and "corrupted"
I also copied the original SWFs from testing and the symbols which are corrupted just show up as red shapes in those as well.
I am unable to save the file due to these symbols causing it to crash when saving in any available formats and unable to delete the corrupted files as when I attempt to access them flash crashes as well
I was wondering if there's anyone who would be able to access the file or even anyone willing to attempt to solve the problem as I am on a deadline of a week after christmas and am worried I may not be able to complete it by then with these problems.
Thanks for any help you can give me.
(Also I have no idea how to attach the files if anyone can tell me how it would be great or I could upload them elsewhere and post a link)

Create a URLRequest object with the URL of your image. Pipe
that URLRequest into a new Loader Object. When the Loader Object
finished loading (add an Event.COMPLETE-Listener to the loader for
that), you are free to do whatever you want with that Loader. Maybe
you'll want to draw it in a BitmapData-Object and then go
on.

Similar Messages

  • Big Problem With Corrupted Image Library - Need Help Please

    I recently updated my Aperture 2 (2.1) with the latest update. Upon doing so, most images in my library now show up in the 'ole maroon box with the message "Unsupported Image Format." This only began after the update. I've spent hours reading threads on here, but no real solution can be found. I've spent a few hours on the phone with Apple Support and in my local store at the Genius Bar. What they're telling me is that my library file has become corrupted. That my preview/thumbnails have become "diconnected" from the actual full size image file. I've tried holding down option + command while starting Aperture in order to "rebuild" it. That's made matters worse in that most, but not all, of my previews/thumbnails now are not showing up. When I go into my home folder and right click on the aperture library icon and keep burrowing in until I get to each image folder, everything seems to be there: the original RAW file, the preview file, the thumbnail file, the edits/changes files. I can even drag the original RAW file out and re-import it and then its fine. But I can't seem to also drag out the edits/retouching/changes. So even if I take each of my 1,300 images out one by one and reimport them, I still lose some 300+ hours of retouching. I can't even bare the thought of this. Does anyone know what the heck is really going on and whether there is some kind of fix for this? I'm just trying to get my library back to where it was before all the trouble started. Unfortunately, I do not have a back up from before I updated the software. Oh, we also tried removing Aperture and reinstalling to go back to 2.0, but the same problem is still there. Lastly, I cannot export any "versions" or "masters" in order to print, upload or email the images. So I'm really stuck here.

    Welcome to club. This just happened to me also in a very similar fashion: Upgrade - upgrade works for awhile - and then the maroon screen and unsupported file message.
    At least you are still somewhat functional. Very quickly the problem spread to my non Aperture JPEGS (I use Canon software to download from two Canon Cameras and then import into Aperture). At first all was ok with these files despite the issue with Aperture. Then they are started having the same problem once I shutdown the computer and restarted. This quickly spread to killing Aperture where it would not start at all. Then I lost Microsoft Entourage due to a corrupted data base. Rebuilding this data base via Disk Utility Verify and Repair Permissions made Entourage workable (but I lost my data and setup - it created a new instance.
    Two calls to Apple made everything worse as every time we went back into Disk Utility, we would only fix problems to have them re-appear when the laptop was restarted.
    Went to Genius Bar (twice). They archived and did a reinstall. They had to do this twice. Everything now works except for Aperture which will not launch at all.
    Genius Bar told me to use Time Machine to reload Aperture. Three tries using three different backups have now resulted in nothing. I am about to try a clean install using my Aperture Disk. I will report back on this.
    One thing I noticed before all this started - I had done a bunch of usual weekly software updates about two weeks ago. I was going on a trip so I let everything run (no issues). Time Machine did all the usual things including giving me the really useful message that my BackUp Disk was now full (meaning it is wiping old versions out). However, I then went to shutdown the machine and FileVault whirled for over 30 minutes before it allowed the machine to shutdown. Usually this is under 3-5 minutes if that long. FileVault has yet to make a re-appearance on any shutdown I have had in past two weeks regardless of changes on HD. Therefore I am wondering if there is a connection here.
    I use a MacBook Pro with upgraded memory and HD.

  • Problem with loading images in flash

    Hi all,
    I am new to flash.
    How can we get .jpeg/.gif/.swf files present in server onto
    the stage dynamically?
    Reply me as soon as possible.... It's urgent.....
    Thanks in advance...
    Srihari.Ch

    Create a URLRequest object with the URL of your image. Pipe
    that URLRequest into a new Loader Object. When the Loader Object
    finished loading (add an Event.COMPLETE-Listener to the loader for
    that), you are free to do whatever you want with that Loader. Maybe
    you'll want to draw it in a BitmapData-Object and then go
    on.

  • For the last 2 days whenever I try to upload photos from my iPhoto page to facebook I get an error message: Bad Image There was a problem with the image file.  I haven't knowingly changed any settings on iPhoto or facebook. Can anyone help, please ?

    I need help with uploading photos from iPhoto to facebook. I could do it till 2 days ago. Now any new photo I try to upload gives me an error message:
    Bad Image
    There was a problem with the image file. 
    Please help.

    Can you drag it to the Desktop?

  • I have problems with uploading images to my printing company have the images have been manipulated through CS6 i have saved images as jpeg but the printer company tell me they are not j peg, they will not upload images save from a camera are fine

    I have problems with uploading images to my internet printing company when  the images have been manipulated through CS6 and  i have saved images as jpeg  the printer company tell me they are not j peg,
    but images saved from my phone or camera images that have not been manipulated upload fine, What am i doing wrong?

    Save/Export them as JPG. Photoshop defaults to PSD, so make sure you select JPG and not just rename the file to .jpg.
    There are two ways to save them as JPG: Regular Save as option or Save for Web & Devices
    Take your pick.

  • I am facing a Problem with reading images from database

    Hi everybody..
    any help will be most appreciated, I am facing problem with reading images from database. I am pasting my code... 
                    string connect = "datasource = localhost; port = 3306; username = root; password = ;"; 
                    MySqlConnection conn = new MySqlConnection(connect); // creating connecting string
                    MySqlCommand sda = new MySqlCommand(@"select * from management.add_products ", conn); //creating query
                    MySqlDataReader reader; 
                    try
                        conn.Open(); // Opening Connection
                        reader = sda.ExecuteReader(); // Executing my Query..
                        while (reader.Read())
                            byte[] imgg = (byte[])(reader["Picture"]);
                            if (imgg == null)
                                pc1.Image = null;
                            else
                                MemoryStream mstream = new MemoryStream(imgg);
                                pc1.Image = System.Drawing.Image.FromStream(mstream);
    It says Parameter not Valid... i am reading all the images from database

    I agree with Viorel. You are getting the error because the format of the data is incorrect probably because the data was modify. It may not be the reading of the database the is incorrect, but the application that wrote the data into the database. You need
    to compare the imgg array data with the data before it was written to the database to see if the data matches.  I usually start by comparing the number of bytes which is easier to check then compare the actual to isolate which function is changing the
    byte count.
    An image is binary data.  The standard VS methods for reading and writing data (usually stream classes) default to ASCII encoding which will corrupt binary data.  The solution usually is to use UTF8 encoding instead of the default ascii encoding. 
    Ascii encoding with stream often aligns the data and adds extra null bytes to the end of the data which can produce these type errors.
    jdweng

  • Problem with displaying images exported to PS

    This is slightly different than the post about TIFF files not displaying properly.
    In Aperture 1.2, when I exported an image to PS and did extensive work on it, and then saved back to Aperture, it would appear in Aperture just as it looked in PS when I saved it.
    However, in 1.5, that does not happen. After I save the image, and then go back to Aperture, all of the changes I made in PS don't appear! However, if I again open the image in PS a second time, it will change to the PS version even before the image gets to PS (I can see it change right when I click "open with external editor").
    Is this a difference with how 1.2 and 1.5 handle the files? I'm guessing it has something to do with image previews, because I chose not to have Aperture generate previews when I installed 1.5 due to the slow-down issues I saw reported here.
    I'm starting to wonder what the point of upgrading to 1.5 was for me... if I can't take advantage of previews (accessing my Aperture library from other apps like Keynote, etc) and if the PS files I work on don't display properly, I'd rather go back to 1.2. This is a major problem in my workflow, since I often spend a lot of time working on images in PS, and I need to be able to see them that way when I return to Aperture.
    I'm hoping there's some setting somewhere I can use to fix this. Is there?

    David,
    I really appreciate your offer to help. However, I have the problem with all images in my library in all projects, so I'm not sure how useful it would be for you to work with a single image I upload to a server.
    I'm having the same problem on my MacBook too, though for some unknown reason there are certain projects on my MacBook that the process works fine with. I cannot tell any difference between those projects (that work) and those that don't.
    What's even more strange... if I quit Aperture, and re-open it, and then go through the process (open a file in PS2, save, return to Aperture) - it works fine! But ONLY ONE TIME. If I try the same process again, on that same image, or any other image in my library, it will not work. It only works the FIRST TIME I do it after opening Aperture. I tested this several times and got the same result.
    I am completely stumped here. I've tried generating previews for a project and turning all of the preview options on, but that doesn't solve the problem either.
    Anyone out there have a clue what might be happening? This is more than a minor inconvenience... if my image management system can't display the image as it should appear, it's unusable.
    Chris

  • Problems with importing images into Lightroom cc

    Problems with importing images into Lightroom cc
    I have installed lightroom cc and having trouble imortera images from my Canon 1DX.
    Lightroom starting the capture, but then nothing happens more, if I turn off the camera, I get error message photo 100-200 could not be loaded.
    Now I have left lightroom 5 and where the input port works fine.
    What happened to the upgrade from Lightroom 5 to lightroom cc?
    The camera has the latest software.

    I've now tested in various ways.
    First, I have images on both memory cards in the camera.
    Test1) Selects Not all of the photos in the camera at the input port bearings, it seems to work fine.
    Test 2) selects all cards in the camera and then get the following, Lightroom starts inportera short but stops and nothing happens (Fig.1).
    I turn the camera off after a while and get the next meddelnade (picture 1)
    Which can be translated:
    "The following files were not imported because they could not read (351)
    Property 1-100
    etc. "
    Picture 1.
    Picture 2

  • Problem with Gif image

    Having a problem with gif image not showing up. It will show up in netscape6.2, but not in IE 5.0. Both are using the java 1.4 plugin. They are basic buttons (zoom in, zoom out, etc) and they actions work, just the icons aren't showing. Any help would be great! Below is a snip of code:
    JPanel toolBarsPanel = new JPanel();
    javax.swing.JToolBar toolbar = new javax.swing.JToolBar();
    JButton zoomin = new JButton(new ImageIcon("tut/zoomin.gif"));
    JButton fullext = new JButton(new ImageIcon("tut/fullextent.gif"));
    JButton identify = new JButton(new ImageIcon("tut/identify.gif"));
    JButton btn = new JButton(new ImageIcon("tut/addtheme.gif"));
    toolbar.add(zoomin);
    toolbar.add(fullext);
    toolbar.add(identify);
    toolbar.add(btn);
    add(toolbar, BorderLayout.NORTH);
    Thanks again for any help!

    I used to do a lot of work in this sort of thing. After a while we were able to convince our bosses to use generated HTML (JSPs, etc.), so the problem moved to porting JavaScript to different platforms! (Platforms in this context means the different browser/OS combinations, etc.).
    The only two things I can recommend are:
    - complete control over you code. You will have to fix it! (Tried you apps on a Mac yet?)
    - assume a minimal install. Don't assume users are going to have any fancy tools installed on their PC, unless you are developing an Intranet app, where you know the spec of the machines that are going to be using it.
    As regarding getting IE to use a relative address, I don't think you are going to have any luck their, I'm afraid! (Although I am curious. It has been some time, but I though it did use relative addresses. Are you absolutely sure about this, did you check this out with System.outs and that?
    HTH,
    Manuel Amago.

  • How to upload a image or flash file as blob object in a table.

    How to upload a image or flash file as blob object in a table.
    What are all the possible ways we can do it.

    Searching the forum (or google) would be my first choice, as this question pops up every now and then.
    Next without knowledge of your environment (jdev version and technology stack) it's hard to give a profound answer.
    All I can say is that it's possible.
    Timo

  • I have a problem with vertical images burned on a cd

    I have a problem with vertical images burned on a cd either from a Mac or a stand alone burner. What happens is the images come from the card and are put on the cd. Also note the the camera has been set for the computer to automatically show images vertically when shot that way. The images look good on my Mac, but are horizontal on windows computers. Both XP and Vista. What can be done?
    John

    Hi, thank you for the response... not sure looks that the battery its ok, I'm not sure.
      Charge Information:
      Charge remaining (mAh):    4356
      Fully charged:    Yes
      Charging:    No
      Full charge capacity (mAh):    4356
      Health Information:
      Cycle count:    813
      Condition:    Normal
      Battery Installed:    Yes
      Amperage (mA):    0
      Voltage (mV):    12571

  • Problem with displaying image

    Hello!
    Sorry, I'm a beginner in APEX and have some problems with displaying images in my application. I have read the same topic but unfortunately didnt find the solution.
    So.. I have the interactive report
    table test (
    NAME NOT NULL VARCHAR2(4000)
    ID NUMBER
    BLOB_CONTENT BLOB
    MIME_TYPE VARCHAR2(4000))
    I need to display the column blob_content.
    Thnks a lot.

    1009316 wrote:
    Hello! Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your forum profile with a real handle instead of "1009316".
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    Sorry, I'm a beginner in APEX and have some problems with displaying images in my application. I have read the same topic but unfortunately didnt find the solution.
    So.. I have the interactive report
    table test (
    NAME NOT NULL VARCHAR2(4000)
    ID NUMBER
    BLOB_CONTENT BLOB
    MIME_TYPE VARCHAR2(4000))
    I need to display the column blob_content.This is described in the documentation: About BLOB Support in Forms and Reports and Display Image. There's an OBE tutorial that followed the introduction of declarative BLOB support in 3.1 as well.

  • Problems with multiple idocs in one file ( Inbound file )

    HI,
    Thanks in Advance for your suggestions.. Highly appreciated.
    We have problems with multiple IDocs in one file.
    We are using XIB ( Amtrix ) as Middleware to receive the files.
    Curretenly When the file contains one IDoc then there is no problem. IDoc is created and everything is ok.
    If file contains two IDocs ( for example two messages ORDERS and DELVERY ) then it is creating two IDocs but both IDocs contains ORDERS plus DELIVERY segements information. That is the problem. Some how SAP unable to differentiate the IDocs in the file.. But it knows that how many idocs are there in the file..because it is creating exact number of idocs.
    We are using TRFC port ... Do I need to change it to File port..
    When we have more than one idoc do we need set any parameter in the file ...

    Thanks for the swift response. Always ideas are useful.
    As of now , Middleware cannot split the file.
    Thing is SAP is creating two Idocs with different message types. Problem is First IDoc contains ORDERS message type but also DELIVERY segments as well. Second IDoc with DELIVERY message tyoe but ORDERS segments as well... This is the problem... I think we are missing some field activation in file for EDIDC record.
    As far as I know file port supports the number of IDocs in one file.. Hope TRFC port also supports that

  • Problem with scramb image MULTI DISTORTION COLOR

    PROBLEM WITH IMAGE,  SOMETIMES ITS DISTORTIONATED, AND SLOW

    Are you writing of problems with the image displayed on your screen? Anyway that you can post a screenshot (to make a whole screenshot, hold down the Shift, Command and 3 keys at the same time). Upload your screenshot using the camera icon in the composition bar above.
    It would also help to know which model MacBook Pro you have - 15" late 2011, for example.
    Clinton

  • Problem with Atf, Image distortion

    I got a problem with image Distortion
    Here my atf in atf viewer: [IMG]http://i.imgur.com/d75aU.png[/IMG]
    Heres my atf in FLashPlayer using 11.4.402.287: [IMG]http://i.imgur.com/H2vEV.png[/IMG]
    notice the red pixel in the green part of the texture.
    Im using png2atf with no parameters.

    Are you writing of problems with the image displayed on your screen? Anyway that you can post a screenshot (to make a whole screenshot, hold down the Shift, Command and 3 keys at the same time). Upload your screenshot using the camera icon in the composition bar above.
    It would also help to know which model MacBook Pro you have - 15" late 2011, for example.
    Clinton

Maybe you are looking for

  • I'm not able to sync my Iphone 4.  It doesn't show up as a device in iTunes.

    I'm in need of help getting my IPhone 4 to sync with my pc.  I have downloaded the latest update for iTunes.  When I connect my IPhone using the USB cord, it is not recognized in iTunes.  There is no "devices" tab on the left and I don't see any opti

  • Defining a variable help

    What's it mean when variables are defined with boolean operators? I've seen it before but can't find any help on it in the Java Tutorial so I don't really know what it means. e.g. int var1 = (var2 & var3) | var4

  • IChat AV 3.1.8 to PC with AIM

    I want to set up iChat AV (my version is 3.1.8) with my daughters PC (Win xp) using AIM. Which version of AIM should she use (5.9 or the current 6.5) or is there a better IM to connect my iMAC (OS x 10.4.11) to a Win XP PC. Thanks for your help. JB

  • Updates and locks-up

    Hi, I looking for some help with my shuffle. Ever since I upgraded to itunes, i've been having problems. As itunes is updating my tunes and podcasts, itunes suddenly locksup in mid stream. my only option is to manually force itunes to end and it does

  • Mass Change Vendor

    Dear all, we need to do mass changes for the vendor. We need to change the fields LOEVM and SORT2. The LOEVM is possible via MASS but how Do I change the SORT2 field ? Any ideas ? Thanks Marc