Can't open flash/fla files (with CS4) - might be version issue

Hi,
I am trying to edit a website for a friend (built with Flash and XML) and i can't seem to get into any of the .Fla files.
I don't know if it is my version of Flash (CS4) or the files and not sure how i could test it. Could also just be a CS5 file hence i can't open it.
Any help or suggestions would be great. Please help i don't know what to do, haha.
Here is an upload of one of the files i am talking about
http://www.2shared.com/file/kb2NKm0i/book-verification.html
I wasn't sure which hosts were allowed so if i messed up please let me know.
Thanks
Asher

Hi Asher,
You  cannot open a file which is saved in future version such as CS5  version  in Flash CS4 .This is as designed .
If you need to open a CS5 file in CS4 , You need to save the file as CS4 file  and then open in Flash CS4 .
Thanks
Sukhbir
Flash Authoring

Similar Messages

  • How can I open raw CRF files with CS4

    I have just purchased the olympus M1 and I have always used photoshop CS4.
    I found that the raw files are CRF files and I cannot open them in photoshop
    Do I have to download a plug in for CRF or is there another way
    sandy

    http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    http://helpx.adobe.com/x-productkb/global/camera-raw-compatible-applications.html
    Mylenium

  • Can't open PC .fla file on Mac

    I have searched archived messages and although there have
    been posts about this, no one seemed to have any answers. So, I
    thought I would ask again. Oh, and please don't laugh!
    My company had a web site built back in 1998-1999. The
    outside person they hired to do the site created a Flash animation.
    I do not know what version was used or for sure what platform (PC
    or Mac). I do have the .fla files as well as the .swf files to work
    with, but when I try to open them I get this error message.
    "This document contains embedded objects that were created
    with Microsoft Windows version of Flash. These embedded objects
    must be deleted before opening on a Macintosh."
    I am trying to open the .fla files using an old Mac version
    of Flash 4. (Yes, I said please don't laugh!) My company will not
    allow the resources to buy an upgraded version. Can anyone tell me
    why I am getting this message? How I can open these files? or
    ANYTHING I can do? Thanks for the help.

    i think your company's lack of resosurces allocated to
    software updates has finally caught up with
    them :p
    The only thing you can do is find flash 4 - install it on a
    pc - open the FLA and well...come to
    think of it - i have no idea what that error could mean - FLA
    files are cross-platform. Original
    author must have embeeded windows video files or something -
    i cant even remember what flash 4 did
    or did not support. Flash 4 didnt have a dependant files
    feature (i dont think).
    chances are the error is generic and the real issue is that
    the file is old and possisbly corrupt. I
    dont have flash 4 anymore but you could post the fla to see
    if it can opened at all - on PC and/or
    MAC - then try downloaded the 30-day trial of flash and
    editing it - or search ebay for flash 6 or
    even 7 at a cheap cost.
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    Jalk67 wrote:
    > I have searched archived messages and although there
    have been posts about
    > this, no one seemed to have any answers. So, I thought I
    would ask again. Oh,
    > and please don't laugh!
    >
    > My company had a web site built back in 1998-1999. The
    outside person they
    > hired to do the site created a Flash animation. I do not
    know what version was
    > used or for sure what platform (PC or Mac). I do have
    the .fla files as well as
    > the .swf files to work with, but when I try to open them
    I get this error
    > message.
    >
    > "This document contains embedded objects that were
    created with Microsoft
    > Windows version of Flash. These embedded objects must be
    deleted before opening
    > on a Macintosh."
    >
    > I am trying to open the .fla files using an old Mac
    version of Flash 4. (Yes,
    > I said please don't laugh!) My company will not allow
    the resources to buy an
    > upgraded version. Can anyone tell me why I am getting
    this message? How I can
    > open these files? or ANYTHING I can do? Thanks for the
    help.
    >

  • I can't open a PDF file with password with my iphone app

    I can't open a PDF file with password with my iphone app, the app send me an error, but the password is correct. This only happend in the new version of iphone. In the latest version I didn't have this problems.

    Can you please share the file with us at [email protected]? Also, can you please confirm that you are viewing the PDF in the Adobe Reader app rather than an app like dropbox, Mail or Safari?

  • I can't open or save file with Java Web Start

    Hi,
    i can't open or save file with Java Web Start:
    import java.io.*;
    import java.util.*;
    public class MetaDataFileCreator {
    public String fileNameSpace = null;
    public String fileName = null;
    protected Properties file = null;
    public MetaDataFileCreator(String fileNameSpace, String fileName) {
    this.fileNameSpace = fileNameSpace;
    this.fileName = fileName;
    public void createMetaDataFile() {
    try {
    System.out.println("file METADATA");
    ClassLoader cl = this.getClass().getClassLoader();
    String nameFileMetaData = fileNameSpace + fileName + ".txt";
    FileOutputStream fileOS = new FileOutputStream(cl.getResource(nameFileMetaData).getFile());
    file = new Properties();
    file.setProperty("aaaaa", "aaaa");
    file.store(fileOS, "");
    fileOS.close();
    } catch (Exception e) {
    System.out.println("Error writing metadata-file: " + e);
    System.exit(1);
    e.printStackTrace();
    I have try also to open a file like this:
    ClassLoader cl = this.getClass().getClassLoader();
    file.load(cl.getResourceAsStream(nameFile));
    also like this:
    try {
    fos = (FileOpenService)ServiceManager.lookup("javax.jnlp.FileOpenService");
    fss = (FileSaveService)ServiceManager.lookup("javax.jnlp.FileSaveService");
    } catch (UnavailableServiceException e) {
    fss = null;
    fos = null;
    System.out.println("Error with JNLP");
    System.exit(1);
    if (fss != null && fos != null) {
    try {
    // get a FileContents object to work with from the
    // FileOpenService
    FileContents fc = fos.openFileDialog(null, null);
    //FileContents newfc2 = fss.saveAsFileDialog(null, null, fc);
    // get the OutputStream and write the file back out
    if (fc.canWrite()) {
    // don't append
    os = fc.getOutputStream(false);
    } catch (Exception e) {
    e.printStackTrace();
    also like this:
    File f = new File((System.getProperty("user.home")+"x.txt").toString());
    FileOutputStream fileX = new FileOutputStream(f);
    OutputX = new PrintWriter(new BufferedWriter(new OutputStreamWriter(fileX, "UTF8")));
    OutputX.println(....
    but it doesn't work with Java Web Start.
    Can someone help me?
    How can I open or save file?
    thank you.
    Sebastiano

    Did you specify <all-permissions/> in your JNLP file? Did you sign your code? What error are you getting?

  • HT204382 I can't open a .wmv file with quicktime player.  Shouldn't I be able to?

    I can't open a .wmv file with quicktime player.  Shouldn't I be able to?

    No. To do so you need to install Flip4Mac WMV Player 2.4.4.2.

  • I can't open D7200 NEF file with Photoshop CS6. I checked the updates and there are no updates available. What do I do?

    Hi,
    I can't open D7200 NEF files with Photoshop CS6.I checked the updates and there are no updates available.What do I do?
    Nitin

    For the time being, shoot JPEG images. At this time there is no support for NEF files from the D7200 in any Adobe product. It was released at such a time that it wasn't included in the last Camera Raw update. And Lightroom hasn't been updated either. Consequently, there is no DNG converter available at this time. We will have to wait and see what programs will be able to accommodate the D7200 when Adobe releases updates or upgrades that support the camera.

  • I' can't open images or files with trial version of Photoshop cc

    I' can't open images or files with trial version of Photoshop cc. Photoshop starts, it seems ok, but don't work.
    Illustrator cc works very well. Why?

    1. I open Photoshop cc Trial version
    2. I click "continues with the trial version" (in italian version)
    3. File>Open> psd (cs5) or jpeg files
    I can't even open a new document. (File>New> etc..)
    All files can be opened by Paint, Ilustrator etcc.  Only Photoshop doesn't work.
    I just see this

  • How can I open a cpr- file with snow leopard ?

    How can I open a " cpr " file with my Mac OS X 10.6.8. ?

    Thank you for your fast reply ! The recommended software referes to video data. I received the cpr file from the ALDI fotobook software, if a want to secure a footobook layout. Therefor cpr must be a foto file.

  • Help - can't open a fla. file

    I have created a fla file and I was working on it today when
    flash crashed and since then every time I open that fla file, flash
    crashes again! any ideas? I have been working on this file for more
    then a week and I was just about to finish it!!! HELP!

    Don't mean to sound bad but you should have backed up your
    file during the week, also save as new file with V2 at the end of
    name just so that if it gets screwed up you always have the other .
    In terms of fixing your file, have you tried opening another
    fla file and seeing if it is just flash prog that has a problem and
    not file. Also if possible can you try opening the fla on another
    computer?
    jon

  • Open Flash CS5 file in CS4

    Hey all,
    I think I know the answer to this, but ... Is there any way I can open a CS5 file in CS4? A designer I'm working with created some files using her CS5. She's on vacation for 2 weeks (so I can't have her edit or resend the files as CS4) and I just got an email that the client needs a couple tweeks and all I have is CS4. Is there any way (or any program) that can backwards convert a CS5 file?
    Thx.

    If you had access to CS5 you could save as CS5 or save as CS4 (but not CS3 or below).  But opening a CS5 Flash file in Flash CS4 produces a "unexpected file type" error.

  • Can't open canon raw files in cs4

    I recently had to rebuild my pc after a problem that stopped a few of my programs working (I'd installed xampp so I could use wordpress on the pc but it stopped cs4, firefox, video studio and a bunch of other stuff working - removal and reinstalling did no use, I had to build a new disc).
    I reinstalled cs4 and got all the updates but now I find I can't open can raw files with cs4 or bridge. I tried replacing the Camera Raw.8bi file with the latest file from adobe as per their web instructions but it still doesn't work. So I tried the adobe dng convertor (version 8.3) and ran the files through that, still no luck, I can't open the files.
    I could open them wwith canons own software and save as a tiff, but then I'm losing a lot of information.
    I'm still running vista home premium - no I can't upgrade to windows 8.1 and use the latest photoshop and lightroom software because 8.1 doesn't work with my nikon scanner or my epson large format printer. It doesn't like a few other items I have either.
    I remember I had to download a few files a couple of years ago when I first bought the pc (a whole 3 years ago) as I was having trouble with photoshop and raw files then but I can't remember the name of the file or where I got it from.
    Anyone able to help? much appreciated if you can.

    Hi John,
    Adobe told me to replace the relevant file, which I did. The trouble is that went I do this then 'camera raw' disappears from the 'help / plugins' list and there doesn't seem to be any way of getting back other than uninstalling and reinstalling cs4, and once I do this it overwrites the files again...
    I can't remember having this trouble when I first installed it a couple of years ago but I do seem to remember having to replace a file somewhere but that may have been on an earlier version.
    I have an old EOS 5d mk1 & a 7d mk1, so it's not as though the camera is unknown to cs4.
    Regards,
    Doug

  • The Quicktime manual indicated that .pdf is an acceptable format yet I can't open a pdf file with Quicktime?

    The Quicktime manual indicates that .pdf is an acceptable format, however I can't open a pdf file in Quicktime.  Any suggestions?

    QuickTime7_User_Guide.pdf is the on-line document that makes the reference.  Under Welcome to Quicktime, Types of Files, note the following:
    Types of Files QuickTime Supports
    You can open (import) dozens of types of media with QuickTime. Some of the formats
    you can open in QuickTime include the following:
    Â Video formats: MOV, MPEG-1, MPEG-2,1 MPEG-4, 3GPP, 3GPP2, JPEG, DV,
    Motion JPEG, AVI, MQV, H.264
    Â Audio formats: AIFF/AIFC, Audio CD, CAF, MOV, MP3, MPEG-4, AU, WAV, iTunes audio
    Â Still-image formats: BMP, GIF, JPEG/JFIF, JPEG 2000, PDF, MacPaint, PICT, PNG,
    Photoshop (including layers), SGI, Targa, FlashPix (including layers), TIFF (including
    layers)
    Â Animation formats: Animated GIF, FLC, Flash, PICS
    Â Other formats: KAR (Karaoke), MIDI, QuickDraw GX, QuickTime Image File,
    QuickTime VR, Text

  • I Can't Open a ".fla" File

    I was sent a flash file via email and now I cant open it. My computer is asking for an application to open it. What do I do? It was probably created on a pc. Thanks in advance!
    Message was edited by: DJ FROM CALI

    An FLA file is a Flash source file that contains all the animation and graphics. To manage this file you should have Macromedia Flash MX 6 or higher installed on your computer.
    To open an FLA file in Macromedia Flash editor you should select "File/Open" from the top menu and browse to the location of your FLA file. A simpler way to open your file is just to drag and drop it from your file browser to your Macromedia Flash editor window. Also, if FLA files on your computer are based on the Macromedia Flash software, you can just double click it in your file browser and this file will be opened and ready to use.
     Cheers, Tom

  • I can't open my pdf files with adobe reader, adobe is not default

    I can't open my pdf file and when i select default program nothing happens, I try repair adobe reader, I try reinstall it, I installed older version, i try fix default programs but when I select my adobe reader nothing happens, there is still only windows media player (he is set as default). Please help me. I am already try all of those steps http://helpx.adobe.com/acrobat/kb/cant-open-pdf.html

    If Reader ISN'T in the list of prpgrams to open with, click "Browse"
    In the "Browse window" go to C/Program files [or Program Files (x86)]/Adobe/Reader 11/Reader
    Select "AcroRd32.exe" and click "Open"
    Make sure "Always use the selected program to open this kind of file" is checked and click "OK".

Maybe you are looking for

  • CS 3.0.1 will not open InDesign files created in 2008  - it says a plug-in may be missing.

    My CS 3.0.1 will not open InDesign files created in 2008.  It says a plug-in may be missing.  I did have a computer crash since I last opened it.  I've tried changing the extension to inx, but that doesn't work.  I cannot get the file to open.  Can s

  • Installing Logic 8 plus 9 upgrade  plus content on OS10.7.4

    I have previously successfully installed - on two Macs running 10.5.8 - my boxed Logic 8 with all the content disks plus the 9 upgrades to 9.1.7. However, my new studio Mac runs OS 10.7.4 (has to run 10.7.4 because it also runs Pro Tools 10) The ques

  • Embedding VC 240 video in a webpage

    I have installed a VC 240 at my kid's school to record their new high school being built. It's behind a firewall so I can NAT the inside camera IP (which is static) to the outside ip/port. Is there any document on how to go about getting the video st

  • Is it possible in InDesign to repeat previous command?

    I am eager to know is there a way to repeat the previous command in your ID file using keyboard shortcuts? For example in Word you can use F4 to do this.

  • Iphone 3GS is disabled

    How do i unlock, i have connected to itunes and it is asking for a passcode but my iphone is only allowing emergency calls. Please advise how i can unlock the Iphone so i can use it?