Problem loading swf file in flash player 9.0.47.0

Hi all!
I have a really strange problem and couldn't find any information over the internet.
The problem only occurs in flash player 9.0.47.0. It works in all the others players, newer and older..
I try to load a swf file to my web application and get the following error: "This content requires Adobe Flash Player 10.2. Would you like to install it now?"
the log file shows:
*** Security Sandbox Violation ***
SecurityDomain 'http://10.1.1.84:8080/app/jsp/flex/bin-release/LP_FLEX_project.html' tried to access incompatible context 'http://fpdownload.macromedia.com/pub/flashplayer/update/current/swf/autoUpdater.swf?0.5087 71003223956'
Warning: Reference to undeclared variable, 'out'
Warning: Reference to undeclared variable, 'out'
Warning: 'out' has no property 'text'
Warning: Reference to undeclared variable, 'cameraSettings'
Warning: 'System' has no property '_visible'
Warning: Reference to undeclared variable, 'microphoneSettings'
Warning: 'System' has no property '_visible'
Warning: Reference to undeclared variable, 'privacy'
Warning: checkPort is not a function
Warning: Reference to undeclared variable, 'xOffset'
Warning: Reference to undeclared variable, 'yOffset'
Warning: Reference to undeclared variable, 'cameraSettings'
Warning: 'System' has no property '_visible'
Warning: Reference to undeclared variable, 'microphoneSettings'
Warning: 'System' has no property '_visible'
Warning: Reference to undeclared variable, 'privacy'
Warning: checkPort is not a function
Warning: Reference to undeclared variable, 'cameraSettings'
Warning: 'System' has no property '_visible'
Warning: Reference to undeclared variable, 'microphoneSettings'
Warning: 'System' has no property '_visible'
Warning: Reference to undeclared variable, 'privacy'
Does anybody has a solution??
Thanks alot!
Assaf

Maybe FP9 does not support your application / swf file?  How did you develop it?

Similar Messages

  • Saving a swf-file for flash player older than 10.3 in Flash CC

    Hi,
    I am working with Flash CC and need to save my swf-files for Flash Player older than 10.3.
    Is there any chance to do so?
    Besides working with CS6 again ;-)
    Thanks for every help!

    In the meantime I found a very good answer myself.
    For anyone who might need it, too:
    Re: Can Flash Pro CC publish to flash player 9??

  • Link .swf files to Flash Player

    Hello,
    I have recently noticed that my .swf files are not opening with flash player. I installed flash and it does not open .swf by default.
    I also tried to open these files with  the .dll file that runs the Flash Player but it does not work.
    Is there someone that could help me to open by default .swf files with Flash Player?
    Thank you,
    Olon

    What operating system are you using?

  • Downloading .swf files-standalone Flash player

    I have the most recent Adobe Reader X, and I have no problem playing .swf files on a browser.  However, I am trying to download a .swf file onto my computer and play it with Adobe Reader X.
    The people on the site that has the .swf file say that I need a standalone Flash player.  What I need is a link to this standalone Flash player so I can open the .swf file without the use of my browser.
    A little more info: When I try to open the .swf file, it says:
    "Adobe Reader could not open 'FileName.swf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)."
    I have tried to do this on Chrome and Firefox using Windows 7 and tried it on a Mac with Safari and Camino; I get the same result each time.
    Many thanks for any info, and especially the standalone Flash player, that you can give me.   If I should move this thread to the Flash Player section, just let me know.

    The standalone Flash Player (Projector) can be downloaded from http://www.adobe.com/support/flashplayer/downloads.html
    Note that the download is the player, not an installer, so you'll need to make the file association manually.

  • SWF File on Flash Player

    I have a SWF File that I got from another computer so when I open it in Adobe Flash CS5 I get the output error:
    Error opening URL 'file:///media/flash/360/image.jpg'
    Clearly it is trying to open the image from that location that no longer exists on this computer.
    How am I able to change this path in the SWF file to a new path so that it will load these images?? I tried replicating this path on my macbook but was unable as "Users" was automatically added after file like so: file:///Users...

    Thanks for your reply.
    The issue not related to AS 2, application running on flash player 10.3 in all browsers but updated flash player 11.1 getting problem.
    "AS 2 code .SWF file run on Flash Player 11.1.102.55". this is true/false ?
    please guide me about this issue.
    sorry about my english.

  • Unable to load swf files in flash

    Hi,
    since creating all the animation in one flash file will
    produce a big file i tried to split and create small flash files
    and load these files in the main flash movie using the image and
    swf loader component.
    eg.
    main.swf, sub1.swf, sub2.swf.
    In the main swf , buttons are created to load sub1.swf and
    sub2.swf.
    The action script on button 1 is
    on (release) {
    //Movieclip GotoAndStop Behavior
    this.gotoAndStop("sub1");
    //End Behavior
    where sub1 is frame label. the image loader loads the
    sub1.swf file starting from this label. Everything works fine
    locally but the swf files are not loading when i test in my server
    or remotely.
    can anyone please help
    thanx in advance

    I am also having a problem with action scripts. I upload
    everything and still get the error message how can I solve this
    problem? It's killing me.

  • Problem loading SWF file in FlashIsland

    Hey,
    I am trying to use FlashIsland for ABAP WebDynpro.
    Unfortunately the SWF File is not loading. When I type the URL to the SWF File directly to the browser, the SWF file loads correctly.
    In the header I have posted the statement: initialize="initApp()". My initApp I have implemented, too (see below).
                   import sap.FlashIsland;
                   public function initApp():void
                        FlashIsland.register(this);
    What can be the problem there?
    First I thougt it might be a problem of my Internet Explorer configuration or the customizing of the SAP System. But when I execute the WDR_TEST_FLASH_ISLAND application everything works fine there.
    Thanks in advance for your help.
    Kind Regards,
    Thomas Weber

    So,
    I installed Flex Builder 3 with the Standard SDK 3.2.
    Now i implemented a very simple Flex Project again:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" initialize="initApp()">
         <mx:Script>
              <![CDATA[
                   import sap.FlashIsland;
                   public function initApp():void
                        FlashIsland.register(this);
              ]]>
         </mx:Script>
         <mx:Label x="166" y="115" text="TEEEEESSSSSSSSSTTTTTT" width="399" height="161" id="LBL_TEST" enabled="true"/>
    </mx:Application>
    I get the same behavior like explained before. The Flash is not loading at all!
    And again I cant do any right click on the page. I get an empty page loaded...
    Please help me! What can be the problem?
    Nice regards,
    Thomas

  • Opening an .swf file with flash player

    Is there any way to open a .swf in flash player ? When I
    click on a .swf it will open in flash player on my system (I have
    Fash CS3 installed) but when I am on another system without Flash
    CS3 installed, I have to right click and use open with, but I need
    it to open in flash player on its own, like an .exe. (I have flash
    player and shockwave player installed on the other system)
    I need to be able to open a .swf in flash player, like an
    .exe. How i can do this ?

    > I am new to the Captivate world as well as the new
    window options within
    > html
    > code.
    >
    > Currently I am using Captivate to re-create and update a
    DemoShield CBT
    > and
    > woudl like to call the .swf file the same way the
    DemoShiled file is
    > called
    > within the HTML. The DemoSheild file is called using a
    javascript
    > function
    > within a href tag.
    >
    > Is it possible to do the same with Captivate files?
    Create a link that
    > will
    > open a new browser window with the .swf being played by
    flash player?
    > (similar
    > to simply double clicking the file within the folder).
    >
    You should be able to use very similar code - buy instead of
    pointing to the
    swf directly, it's likely you need to point, instead, to the
    html file that
    is usually published with the swf.
    Without seeing the exact code you are talking about with
    DemoShield, I'm
    reluctant to offer you any alternative. Simply put, a
    standard link pointing
    to the correct html file should work. You can get clever and
    use JavaScript
    if you have specific needs, but the standard HTML link should
    be fine for
    your needs.
    Oh - maybe you should look at Captivate's Manu builder, as
    perhaps this will
    offer what you are looking for.
    Steve
    Adobe Community Expert: eLearning, Mobile and Devices
    European eLearning Summit - EeLS
    Adobe-sponsored eLearning conference.
    http://www.elearningsummit.eu

  • Cannot import swf files of flash player 8 into  director

    Since I upgraded to Flash 8 the swf files generated canot be
    seen in Macromedia Director unless I am saving them as Flash 7. I
    have updated both Flash and Director and the problem is persistent,
    please help.

    ANY SUGGESTIONS PLEASE
    I suggest there's no need to shout.
    Try linking the Director cast member to the external swf file instead of fully importing it. You also should have the 10.1.1 update in place - this is particularly important.

  • SWF file and flash player

    Quite a few people said that they cannot see my movie clip
    swf file on their browser even I asked them to go to Flash player
    download center and install the latest flash player.
    I made this file with Flash 8.
    I have read a little bit something about the stand alone
    player which call projector.
    Can anybody tell me why people cannot see my file even they
    installed the flash player 9 and also how can I study about stand
    alone something which I have no idea at all?
    My website is www. theartoftaichi.co.uk. The swf file is the
    black and white ball in the center of the first page .

    Thank you very much for your message.
    But 50% of viewer can open it but others cannot see it even
    they downloaded the Flash player 9.
    I wonder if I am asking them to download the wrong Flash
    player.

  • HREF to open Captivate swf file with Flash Player

    Hello all,
    I am new to the Captivate world as well as the new window
    options within html code.
    Currently I am using Captivate to re-create and update a
    DemoShield CBT and woudl like to call the .swf file the same way
    the DemoShiled file is called within the HTML. The DemoSheild file
    is called using a javascript function within a href tag.
    Is it possible to do the same with Captivate files? Create a
    link that will open a new browser window with the .swf being played
    by flash player? (similar to simply double clicking the file within
    the folder).

    > I am new to the Captivate world as well as the new
    window options within
    > html
    > code.
    >
    > Currently I am using Captivate to re-create and update a
    DemoShield CBT
    > and
    > woudl like to call the .swf file the same way the
    DemoShiled file is
    > called
    > within the HTML. The DemoSheild file is called using a
    javascript
    > function
    > within a href tag.
    >
    > Is it possible to do the same with Captivate files?
    Create a link that
    > will
    > open a new browser window with the .swf being played by
    flash player?
    > (similar
    > to simply double clicking the file within the folder).
    >
    You should be able to use very similar code - buy instead of
    pointing to the
    swf directly, it's likely you need to point, instead, to the
    html file that
    is usually published with the swf.
    Without seeing the exact code you are talking about with
    DemoShield, I'm
    reluctant to offer you any alternative. Simply put, a
    standard link pointing
    to the correct html file should work. You can get clever and
    use JavaScript
    if you have specific needs, but the standard HTML link should
    be fine for
    your needs.
    Oh - maybe you should look at Captivate's Manu builder, as
    perhaps this will
    offer what you are looking for.
    Steve
    Adobe Community Expert: eLearning, Mobile and Devices
    European eLearning Summit - EeLS
    Adobe-sponsored eLearning conference.
    http://www.elearningsummit.eu

  • Differences between the 2 ways to play local swf files in flash player

    There are 2 ways to allow the flash player to play local swf files:
    Add the directory/file of the swf to the Global Flash Player Trust directory. http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7c95.html
    Add the directory/file of the swf to the Trusted Location Settings in the Local Settings Manager.http://help.adobe.com/en_US/FlashPlayer/LSM/WS6aa5ec234ff3f285139dc56112e3786b68c-7ff0.htm l#WS6aa5ec234ff3f285139dc56112e3786b68c-7fea
    Adobe doesn't mentioned in the document what's the differences between these 2 methods, and they look has the same effect. But when I'm doing it on OS X, Safari 6.1, the first method doesn't work (It was working when I was using Safari 6.0). And then I tried method 2, it works…
    So I'd like to ask what are the differences between these 2 methods to play local swf files?

    For playing local SWF files, Download the Macintosh Flash Player 11.9 Projector
    It's a standalone app. Just copy it to your Applications folder. Launch it, and drag the SWF to the Dock icon. It'll play.

  • How to play a .swf file with Flash player 9

    How do I open a .swf movie I have on my computer with the
    Adobe Flash Player 9 (OSX) I downloaded off the adobe website?
    Thank you for your help.

    You can also download Adobe Flash Player 9 — Standalone
    Players (Projectors) for Macintosh
    New Universal Binary Flash Player 9 Projectors are available
    for users of Intel-based Macintosh computers.
    Download the Flash Player 9 Standalone players:
    http://www.adobe.com/support/flashplayer/downloads.html

  • HT5271 Downloaded latest Apple updates that informed me old versions of Adobe Flash Player were disabled and advised me to go to Adobe and down load latest version of Flash Player. Did that, but Flash Player won't play swf files, which it did before.

    Downloaded latest Safari update that informed me that older versions of Adobe Flash Player were being disabled and then advised me to go to Adobe and down load latest version of Flash Player. Did that, but Flash Player won't play swf files, which it did before. (Instead of opening, it comes up as a page of code).

    Hi..
    Quit Safari.
    Open System Preferences > Flash Player then select the Advanced tab.
    Click:  Delete All
    Now select the Storage tab.
    Click Delete All
    Relaunch Safari to test.
    edited by:  cs

  • How to load ai file in flash CS4 using code(Like loading swf or images )

    Hi,
    I have to load AI file in flash CS4 and provide the interaction with user.
    Can any body help?
    Thanks

    Hi.
    No you cannot  import Eps, wmf, emf,  ai, cdr files in swf dynamically using Action Script 3.

Maybe you are looking for

  • How do I close window on opening a new one from a button on the first window

    I want to close my existing window when opening a new one. I have used a roll-over from Fireworks and the page is created using Macromedia Dreamweaver. I'd like to close the page that I am coming from and open a new one in its place. Thanks for looki

  • IPod classic will not sync...

    I plug in my iPod, it starts downloading the songs, says "synching iPod, do not disconnect..." Then it just stops synching, and the computer says "attempting to copy to the disk Kirstin's iPod has failed. unknown error, error (-53)". Then says "iPod

  • Value mapping in Syndicator

    Hi, I would like to syndicate my  source data to 3 remote systems. Could you please help me to how to value map for a field to 3  remote systems. like for the same field Phone if remote system ABC then it should P123 if remote system BCD then it shou

  • Chrome and Opera- Aw Snap/ Crashing Error on Literally Everything!

    I bought the new Mac Pro this past summer and have never been able to get Chrome or Opera (latest versions of each) to work. I have performed the steps suggested in the Google Help Center, including renaming the "Default" folder in Application Suppor

  • Kodo extension under JBuilder7 causes it to hang

    Hi, I'm using JBuilder7 with Kodo 2.3.2 and it seems like the IDE freezes or hangs when I'm compiling code. If I run JBuilder with the -verbose enabled I see the following: Tue Oct 08 14:12:53 EDT 2002: + JDOEnhancerTask.build (jdoFileUrl=file:///D%|