Unable to load some swf's

I am unable to load some swf's (find the link). Any Help!
Loader Link
http://www.mediafire.com/?fbfei0qulcisxqa
Swf Link
http://www.weebly.com/uploads/6/6/7/0/6670875/kingoftherocks.swf

People generally will not download files so it is to your benefit to include all information in your posting.
What code are you using to load the swf's?  Does it work for some and not others?  Are you getting any error messages?  What is the folder structure relative to the files that you are trying to load and the files that try to load them and any html page involved?

Similar Messages

  • Unable to load style(SWF is not a loadable module)

    While devoloping an App voor iOS we decided to use several StyleSheets.
    We are implementing the loading of Stylesheets as:
    event_dispatcher:IEventDispatcher = this.styleManager.loadStyleDeclarations2("assests/styles/default.swf");
     event_dispatcher.addEventListener(StyleEvent.COMPLETE, OnStyleLoaded);
    event_dispatcher.addEventListener(StyleEvent.ERROR, OnStyleError);
    running the app on the desktop simulators work fine.
    packaging the app with package method fast, and running the app on an iphone4 works fine.
    packaging the app with package method standaard, and running the app on an iphone4 gives an error:
    Unable to load style(SWF is not a loadable module): assets/styles/default.swf.
    Is there something im missing? Why does it work when packaging as Fast, and not as Standard?

    Hi,
            The source file is .swf ie(.css is converted to .swf).
             Main swf is running from local.
             Style module is from server.
    I set security domain. But it throws security sanbox violation.
    What should i do. Even some time if a use the local url means it thorws the same error Unable to load style(SWF is not a loadable module).
    thanks,
    Jayagopal.

  • Error: Unable to load style(SWF is not a loadable module)

    Hi,
            While i am trying to load theme dynamically from server, i am getting an error like this
         Error: Unable to load style(SWF is not a loadable module)
    Can anybody help me.
    regards,
    Jayagopal.

    Hi,
            The source file is .swf ie(.css is converted to .swf).
             Main swf is running from local.
             Style module is from server.
    I set security domain. But it throws security sanbox violation.
    What should i do. Even some time if a use the local url means it thorws the same error Unable to load style(SWF is not a loadable module).
    thanks,
    Jayagopal.

  • I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    OS is Windows7. I'm using the latest version of Mozilla Firefox
    I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • Unable to load some websites after an update to IOS6

    I am unable to load some websites in both Safari and Google Chrome. This did not bother me until I found at that I cannot access some websites I can access before and frequent. I am unsure if this was caused by the update to ios6, but this incident only happened after the update. I am unsure as well if this is related to the problem of me unable to connect to itunes and app store after the update. I've fixed those by changing my DNS to 8.8.8.8 and changing the time trick. I've also noticed that twitter and some apps crashed a lot. I have no problem connecting to the wifi though. Thank you in advance.  

    Some additional details I have also noticed. Some images will not show or appears as a blue and white question mark in some websites. Even here in apple website.

  • Unable to load external swf which has runtime sharing with another swf.

    Hi,
    I am getting issues on loading external swf say "importer.swf" file into another swf file say "loader.swf" for second time like
    ReferenceError: Error #1065: Variable testSymbol is not defined. VerifyError: Error #1014: Class testClass could not be found.
    at global$init()
    In the external swf "importer.swf", i am trying to import the symbol "testSymbol" from another swf file say "exporter.swf", which exports through runtime sharing option for the symbols.
    I am having some buttons in loader.swf file and on each button click i am loading different swf files into the loader.swf after unloading the previous one.
    I am able to load and unload different swf files but unable to load the importer.swf file which is sharing symbols from external swf and that too for the second time i.e., when i click the button twice.
    When trying to debug with flash debugger, all the other swf files are being unloaded before loading of another swf but the swf which is sharing symbols/classes with another swf is not getting unloaded.
    Output when i am trying to load two files example and importer files into loader.swf file on two different button clicks. On first button click example.swf is loaded. On second button click , example.swf is unloaded and importer.swf is loaded which is successful. On first button click again importer.swf is unloaded and example.swf is loaded. On second button click again, example.swf is unloaded and importer.swf is loaded, here i am getting issues shown above.
    Attemping to launch and connect to Player using URL D:\runtime issue\loader.swf
    [SWF] D:\runtime issue\ loader.swf - 8181 bytes after decompression
    [SWF] D:\runtime issue\example.swf - 441708 bytes after decompression
    [UnloadSWF] D:\runtime issue\example.swf
    [SWF] D:\runtime issue\importer.swf - 1920 bytes after decompression
    [SWF] D:\runtime issue\importer.swf - 441708 bytes after decompression
    [SWF] D:\runtime issue\ example.swf - 441708 bytes after decompression
    [UnloadSWF] D:\runtime issue\ example.swf
    [SWF] D:\runtime issue\importer.swf - 1920 bytes after decompression
    ReferenceError: Error #1065: Variable xxxxxx is not defined.
    Debug session terminated.
    Code i am using
    b1.addEventListener(MouseEvent.CLICK, b1Clicked);
    b2.addEventListener(MouseEvent.CLICK, b2Clicked);
    var ldr:Loader;
    function b2Clicked(e:MouseEvent)
        if(ldr != null)
            ldr.unloadAndStop(true);
        ldr = new Loader();
        ldr.load(new URLRequest("importer.swf"));
        addChild(ldr);
    function b1Clicked(e:MouseEvent)
        if(ldr != null)
            ldr.unloadAndStop(true);
        ldr = new Loader();
        ldr.load(new URLRequest("example.swf"));
        addChild(ldr);
    If i try to open the swf using IE, i am not getting any issues at all. But i need to open this loader.swf in a air application. Also when i use loaderContext for the loader instance i am able to get rid of this issue but i cant use it in my application.
    So, please help me in resolving this issue.
    Thanks

    I got my answer. I had to append the photo url to the 'movie' value of the javascript embed method. Like this:
    <script language="JavaScript" type="text/javascript">
       AC_FL_RunContent(
          'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
          'width', '550',
          'height', '400',
          'src', 'lesson2',
          'quality', 'high',
          'pluginspage', 'http://www.adobe.com/go/getflashplayer',
          'align', 'middle',
          'play', 'true',
          'loop', 'true',
          'scale', 'showall',
          'wmode', 'window',
          'devicefont', 'false',
          'id', 'lesson2',
          'bgcolor', '#ffffff',
          'name', 'lesson2',
          'menu', 'true',
          'allowFullScreen', 'false',
          'allowScriptAccess','always',
          'movie', 'lesson2?photo=http://www.flash-mx.com/images/image1.jpg',
          'salign', ''
          ); //end AC code
    </script>
    Thanks,
    srb.

  • Unable to load some pages on Macbook but can on G4

    Can someone suggest a solution to my problem. On the iMacG4 which is connected direct to the BT Homehub (UK), there is no problem in connecting to the web and loading pages. On my Macbook, most of the time it is OK but there are the occasional sites that it will not connect and load to ,yet the iMac will ! The Macbook uses the same hub but wireless connection. The Macbook just times out and flashes up the unable to connect message. I have tried both Firefox and Safari but neither will open the page. So what is set different on the Macbook to the iMac ? Any suggestions please ?
    Thanks
    Brian

    No further forward. Dealer techie is baffled. I have now deleted all Firefox files and am just using Safari. Have used original install disc to do a hardware check..all OK. ..disc repair .. all OK and permissions ..all OK
    The iMac loads the pages but the macbook won't. !!!!
    Techie thinks it may be a OS fault and to try a full reload of that.... not too keen yet on this step, might just wait a few days to ponder and see if anyone on this forum has some good ideas.
    Brian

  • Unable to load Some Budget Expense lines

    I am unable to upload budget for some expense lines. When I try to upload for these affected expense lines the system is displaying a message u201CBudget for 2009 exceededu201D.
    Can anyone help me on how to resolve this problem.
    regards
    Davies

    Dear Harmees,
    Unfortunately T.Code IM32 does not exist in the version I am using i.e SAP R/3 Version 4.6c.
    What else can I try to resolve this problem?
    regards,
    Davies

  • Unable to load next swf file in the browser.

    Hi,
    Im facing problem while loading the next swf file in the
    browser.
    I have divided my files and named it as 1.swf, 2.swf, and so
    on and i wrote the script 4 calling next swf.
    It is working when i called thru HTML in local system. When i
    upload into my server and called thru php, next file is not
    loading.
    Code in the button : :
    on (release)
    { loadMovie("2.swf", 0);
    Any ideas or suggestion?
    Help would be appreciated.
    thnq.

    I'd suggest looking that these notes
    1045941 - HTTP Client: Incorrect request URI II
    Note 1144511 - Blank screen when starting CRM WebClient or IC WebClient
    1244321 - Simplifying error analysis in CRM WebClient UI
    1242835 - IDES CRM 2007
    1168941 - Simplifying system setup  
    612670 - SSO for local BSP calls using SAP GUI HTML Control

  • Unable to load some applications after reformatted

    My MacBookPro was purchased in July 2009. Recently, Apple replaced the hard drive and reformatted the whole computer for me. So when I tried to reinstall all my applications again, I realized some of the applications that I always use could not be opened, like Firefox, ITune, skype, and etc...I tried to erased them from Application and re-download them, but the icon would be jumping up and down on the dock and not do anything...
    I also tried to put in the Application install DVD...but it doesnt work...
    Does anyone know why and what should I do? Q_Q Thank you!

    Welcome to Apple Discussions!
    Do you have access to an Apple Store? If so, make an appointment at the genius bar and see what the problem is. There could possibly be a problem with the new drive.
    Are you saying that you can't boot from your install DVD? What happens when you try? If you can boot from your install disc, navigate to Disk Utility and see if you can repair your boot disk.
    Do you have your gray system discs? If so, see if you can boot to the Apple Hardware test and if you can, run the extended version.
    If you open Disk Utility, is the SMART status verified? Can you verify the disk?
    The genius bar would probably be able to give you the quickest help, but if you don't have access to an Apple Store, post back with a little more information.
    Good luck!

  • Unable to load some inages

    Images from Amazon.com and Shutterfly.com can not be loaded. Images from LLbean and other sites load properly. I have checked to be sure that load images automatically is set, which it is. I have no ideal of the cause/cure for this problem.

    See:
    * [[Images or animations do not show]]
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    *A way to see which images are blocked is to click the favicon ([[Site Identity Button]]) on the left end of the location bar.
    *A click on the "More Information" button will open the Security tab of the "Page Info" window (also accessible via "Tools > Page Info").
    *Go to the <i>Media</i> tab of the "Tools > Page Info" window.
    *Select the first image link and scroll down though the list with the Down arrow key.
    *If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    *You can see the permissions for the domain in the current tab in Tools > Page Info > Permissions
    *You can see all image exceptions in Tools > Options > Content: Load Images > Exceptions

  • E learning - unable to view some swf files.

    Hi,
    i have been attempting to complete the sales executive training and have found a number of the swf files do not display/run as expected.
    If I choose English and try to run the file online i get to see the Launch Flashbook button and another screen opens automatically but is completely grey.
    Others that successfully open ask to allow https content question and play perfectly.
    If i download the files i get the same responses.
    I have tried various PC's and get the same issue.
    An example of the file i am having trouble opening is :- "Synchronized CEL Sales Process" which is within the Level 1 Sales Professional Qualification.
    Has anyone else experiance a similar problem?
    Regards

    Hi Barry,
    The problem is due to flash player 10 compatibility.
    If you are watching the courses from an earlier DVD, you should use Flashplayer 9
    Most courses online are now flash player 10 compatible.
    Peter

  • 10.6.5 Update message: "unable to load some of the software"

    Anyone else run into this? There were no details given, though 10.6.5. is now listed as my current system. Just wondering what it's all about.

    In addition to Stedman's spot-on reply --
    When you buy an upgrade disk, all updates in that OS can be found on Software Update.
    For instance, I bought Snow Leopard at 10.6.
    All other updates have been free and downloadable.  So I'm not a 10.6.7.
    10.4 (Tiger) went to 10.4.11.
    10.5 (Leopard) went to 1.5.8
    10.6(Snow Leopard) is currently at 10.6.7.
    Now, when Lion come out (the next major upgrade of OSX), I will have to pay to go to 10.7.
    After that, updates are free til 10.8 comes out.

  • Some web pages are unable to load

    hello there,i notice that my mac mini are unable to load some web page that build-in with msxml.i found that all my web brower are unable to load them(firefox/safari/IE for mac),but i can load them in my window XP PC,i think the problem is my XP have installed msxml but my mac,is it possible to view those web pages with safari/mac?
    example to those web:http://spbo.com/live.htm
    mini   Mac OS X (10.3.9)  

    Welcome to the discussions!
    It is slower in a measureable sense, or just a "seat of the pants" feeling?
    Go to PC Pitstop and run their test. If you are getting the bandwidth that you are paying for, then it is an issue with your broswer.
    I do not like Safari. It is slower than Camino, especially in conjunction with CamiTools. Safari is a memory hog and grabs CPU cycles like nobody's business. I have never had any issues with either Camino or Firefox. Either are much better than Safari, IMO.
    If you miss the look of Safari, there are skins and even a great RSS reader that can be added to Firefox called Sage. It offers better RSS integration than Safari IMO.
    In my experience, Macs just render pages slower than PCs due to poor coding or IE specific coding that lazy web authors. Safari is one of the most standards compliant browsers out there, but if the pages are coded poorly or browser specific, then there is nothing that Safari can do about it.
    You can take a look at some settings, but let us know what speeds you are paying for from your ISP and compare those to the actual speeds. Then we can talk about possible solutions.

  • Unable to unload external swf which is using runtime sharing

    Unable to unload external swf which is using runtime sharing of some symbols and classes.
    Due to this problem i am unable to load another swf or the same for the second time and getting errors at runtime.
    It works fine when the swf is opened in IE.
    Can anyone please help me in solving the issue.

    thank you
    i have tried to use   this.parent.Click_To_Close  but it gives compilation error
    i checked the tutorial about custom events i think its little complex for me now to understand the typeriter app.
    also i cheked the similer thread and tried to test that code myself..i found that the last block of main movie does not works and does not unload the loader2. however  all the trace are showing in the output windows that i added to check the code but last trace from the main movie is not showig...   
    trace("child removed from Main Movie") 
    so if this can work somehow i will use this method of event dispatch in my application that i am working...
    Thank you
    -----main movie ---------
    var loader1:Loader = new Loader();
    var loader2:Loader = new Loader();
    loader1.contentLoaderInfo.addEventListener(Event.COMPLETE, assignMovie1Listener);
    loader1.load(new URLRequest("movie_1.swf"));
    loader2.load(new URLRequest("movie_2.swf"));
    addChild(loader1);
    addChild(loader2);
    function assignMovie1Listener(evt:Event):void {
          MovieClip(evt.currentTarget.content).addEventListener("eventTriggered", removeLoader2);
                trace("listner is listning..")
    function removeLoader2(evt:Event):void {
          loader2.unloadAndStop();
          removeChild(loader2);
             loader2 = null;
                trace("child removed from Main Movie")
    //------------- movie_1.swf code:
    removeMovie2_btn.addEventListener(MouseEvent.CLICK , removeMovie2);
    function removeMovie2(event:MouseEvent):void
          dispatchEvent(new Event("eventTriggered"));
                trace("event triggered form Child Movie-1");
    as u can see when i click close button its triggering the trace from movie-1 but its not unloadign the movie2

Maybe you are looking for