Browser has suddenly stopped loading html files which contain flash content (LANGUAGE="JavaScript1.2)

Having created interactive material which opens as shockwave flash in my browser Firefox has stopped opening such files it just opens with the circle as if its opening the file but the file never opens. These files opened previously without a hitch and open in IE. If I browse and open the shockwave flash object quiz.swf it will open but it will not open the quiz,html file.
I'm using Firefox 3.6.13 and adobe flash 10

There is no Flash player version 15... as in your code:
<param name="swfversion" value="15.0.0.0" />
For some reason Adobe thought it would be a good idea to target a Flash player version (15) as default.....which may be out a couple years in the future. Go figure!!!
If you don't like player version 9, change to 10 or 11.... just not 15 (yet).
Best wishes,
Adninjastrator

Similar Messages

  • Reader XI has suddenly stopped loading any images in pdf's.  Any idea why?

    Reader XI has suddenly stopped loading any images in pdf's.  Any idea why?

    I tried to got to edit to follow the suggestion of ~graffiti I found that the "Show Large Images" was already checked.  I since have found that if I download the .pdf file and then open the download everything appears as it should.  Previously, when I clicked on the emailed .pdf file it would automatically open without having to download the file.  I'm not sure why it is requiring the extra steps of downloading the and then opening the downloaded file before the images with appear.  Any ideas why the extra steps are now required?

  • Why does DW CC 2014.1 Fluid Grid load HTML file that contains Google Analytics Tracking Code script so slowly?

    I exclusively work in Fluid Grid since my site is a Responsive Web Design.  I'm having trouble with slow load time in DW CC 2014.1, when my file, as they all do of course, has the Google Analytics Tracking Code script.
    I'm on a Windows 8.1 using a Dell Precision M3800 Laptop with Memory 16GB (2x8GB) 1600MHz DDR3 . Each of our site's 180 or so web pages, of course, has its Google Analytics Tracking Code script. It is placed, following Google instructions, as the last entry in the <head>.  Google Analytics does not instruct to place the script in the JS Folder with an scr to it, but rather in the <head>.  It takes up to one and a half or two minutes for DW CC 2014.1 to load the Google Analytics Tracking Code script .  That is, the grid does not show in Live View until finally analytics.js shows up in the Document Toolbar. A minute or two can add up when every page you load takes this long.  And, making new Fluid Grid pages, as is done, through the Save As command; every new page made you have to deal with the minute or two wait time since all those pages have the Google Analytics Tracking Code script.  Therefore, this time component alone, assuming I'm accessing and/or making 20 pages per week (and in our business this is easily the case) the math is that I'm wasting between 17 and 35 hours per year just with DW CC 2014.1 loading the much needed Google Analytics Tracking Code script.
    I have loaded HTML files that do not have the Google Analytics Tracking Code script as a test and those files load at the normal quick speed.
    Therefore, the new Chromium Embedded Framework browser engine has a serious load problem when it confronts an HTML5 file with a Google Analytics Tracking Code script.  Oddly, the prior DW CC 2014 version, with the old browser engine did not have this slow-load problem since I was loading these same files in that DW CC version up until October 8th or so.
    I think this new browser engine is a Google platform that apparently has a problem rendering or loading a Google Analytics Tracking Code script.  That makes no sense.
    Anyone else had this particular slow-load problem with DW CC 2014.1?
    Thanks.

    Wow.  That sure solved the slow-load problem, at least using your suggested snippet in a simple test HTML file.
    Per Google's instructions, I pasted the snippet before the closing </head> tag.  And, even in that positioning in the file; the file loaded at the speed (about one second) that it did prior to DW 2014.1.
    Two questions.
    Will this snippet provide the same tracking data as my current GA snippet?
    Because my current GA snippet is in about 200 web pages, can I retain the old snippet in most of them and place the new snippet in my approximately 5 main web pages as well as my templates so my new pages, as well as my main pages, have the new snippet.  That is, can I have both snippets (i.e. old snippet in earlier pages and new snippet in main pages and new pages to be made going forward) in my website at the same time?
    Of course I would not have both the old and new snippet in a web page at the same time.
    I greatly appreciate any assistance anyone can provide me on this issue and thank all of you in advance.
    I've provided code for both simple test files below.
    Code for Asynchronous Syntax of GA script:
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Test Asynchronous GA Tracking Code In Head</title>
    <link href="css/boilerplate.css" rel="stylesheet" type="text/css">
    <link href="/css/style.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="js/respond.min.js"></script>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-73425000-1']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    </head>
    <body>
    <div class="gridContainer clearfix">
      <div id="div1" class="fluid">
        <div id="test1" class="fluid ">This is the content for Layout Div Tag "test1"</div>
       <div id="test2" class="fluid ">This is the content for Layout Div Tag "test2"</div> 
    </div>
    </body>
    </html>
    Code for older GA script snippet:
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Test GA Tracking Code In Head</title>
    <link href="css/boilerplate.css" rel="stylesheet" type="text/css">
    <link href="/css/style.css" rel="stylesheet" type="text/css">
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="js/respond.min.js"></script>
    <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
      ga('create', 'UA-73425000-1', 'auto');
      ga('send', 'pageview');
    </script>
    </head>
    <body>
    <div class="gridContainer clearfix">
      <div id="div1" class="fluid">
        <div id="test1" class="fluid ">This is the content for Layout Div Tag "test1"</div>
       <div id="test2" class="fluid ">This is the content for Layout Div Tag "test2"</div> 
    </div>
    </body>
    </html>

  • Photoshop CS5.1 Extended 64 bit suddenly stops loading psd files

    For some reason the Photoshop CS5.1 that I have installed on my Windows 7 64b has stopped working.  It still works on my other computer though.  It starts up just fine, but when I go to Open a PSD file (which I have edited here before) nothing happens -- absolutely nothing!  When I try to create a new file the same nothing happens.  Can somebody give me a clue?  I sure hope I don't have to reinstall or something.  I don't think I've made any updates to Photoshop, it just stopped working this week for no apparent reason that I can think of. 
    I also went back and tried my CS5 version and the same thing happens.

    To further what Chris mentioned about documents opening on another monitor that doesn't happen to be powered-up right now...
    When you get this situation, if you press the Arrange Documents button at the top and click the Consolidate All button, what do you see?
    -Noel

  • Premier Pro CC 2014 has suddenly stopped loading. Every time I try to launch it after a few moments I get an error message

    "Sorry a serious error has occurred that requires Adobe Premier to shut down. THis only started today and I have been using Premier without issue until then. There was an adobe update a few weeks ago but it worked fine afterwards. This is a nightmare as I need to finish a large project and I cant even open it at the moment. I did see some blog posts with similar issues referring to third party plug ins from RedGiant software. I do have Colorista II so I followed the instructions t disable it but it made no difference. Does anyone have any suggestions? I am using a 2011 iMac, 3.4Ghz Core i7 32GB Ram and AMD Radeon HD 6970M

    IF you got a kernel panic, then you may need more than a time machine backup. I would be inclined to run Disk Utility verify disk (and repair disk from Disk Utility on the installer DVD if verify disk showed problems) then I would download and reinstall the 10.6.2 combo update. It can be gotten at http://support.apple.com/kb/DL959
    If Mail still crashes on launch after that, maybe try reinstalling Mail from the "optional installs" package that is on the installer DVD -- you can pick onesey-twosey from a select list of OEM applications, that includes Mail, to reinstall.
    In either event, I would run software update after a combo update and/or mail reinstall to make sure everything is back up to the latest and greatest. Lastly, maybe a "rebuild mailbox."

  • Soundcloud audio content has suddenly stopped loading on my new Macbook Pro Retina. I do not have Flashblock extension installed. Cache cleared, nothing works.

    Two days ago I was able to play Soundcloud audio both on their site and on Facebook. Now it hangs and won't play. It is fine in other browsers. I have the latest version of everything and do not have the Flashblock or Flashblocker extension that seems to have been the culprit for some others with this problem.
    I've updated Flash once since getting my MBP Retina two weeks ago, and the audio was still playing from Soundcloud after the update. I have cleared cache, cookies and history to no avail. It is very annoying as I don't want to have to change browsers every time I need to play something from Soundcloud. It has always worked perfectly with Firefox until this happened.

    If you use extensions (Firefox/Tools > Add-ons > Extensions) that can block content (e.g. Adblock Plus, NoScript, Flash Block, Ghostery) then make sure that such extensions aren't blocking content.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • FCE 4 Suddenly Stops Recognizing Certain Files It Previously Recognized (File Error: Unknown File)

    FCE 4 has suddenly stopped recognizing certain files that it has recognized without a problem for the past several years I’ve used the program. It won’t recognize 1920x1080 mp4, but it WILL recognize 1920x1080 mov and it WILL recognize 1080x720 mp4. All .h264 codec. Using AIC 1080x60i in FCE. It also won’t recognize .jpg or .tif. There was no software update that could have thrown this off. It was a working one day, not working the next kind of situation. Files play fine in QT. Reinstalled the program. I still get the same File Error: Unknown File. Any ideas?
    Thank you!

    Have you tried trashing uour FCE preferences? That is usually the first step when FCE begins to act in unexpected ways. Reinstalling the app will not overwrite existing preferences - you need to trash them.
    You can download Preference Manager from Digital Rebellion (free) and it will do all the work for you. Do a Google search.
    MtD

  • How to display an HTML data which contains images in CR

    Hi Experts,
    I have a HTML file which contains images and text. I will store all this data in to the database as binary data(SQL server 2008). How can I display the whole  data in report.
    Thanks in advance,
    Salah

    hello all,
    most times when HTML is stored in a database there are many tags that will not work. the tags that will work are very basic and limited to the formatting types that you can do within a Text Object...so not much.
    if you need all of the HTML from a database interpreted, you need to activate pass-through html on your system. then if you put the field into a formula (one line in height) the HTML should be properly displayed. for more info on activating pass-through html see the beginning of the Users Guide for webelements that is in the main download [here|Crystal Reports webElements].
    please note that there are some major limitations in this method:
    1) you cannot print the html displayed when using the print button on the crystal reports toolbar as it will show up as text...you can try the browsers print functionality to see if that works for you
    2) you can not export the report and see the html displayed...it will show up as text
    3) pagination may not work for you...i.e. if you have an especially long section of html in your database, the page may not break where you want it to
    best of luck,
    jamie

  • IPhoto 5.0.4 has suddenly stopped working. It loads the photo library and then freezes. Rebuilding the library has no effect which has about 3.5MB of data. PowerBook G4 OS 10.5.8

    iPhoto 5.0.4 has suddenly stopped working. It loads the photo library and then freezes. Rebuilding the library has no effect which has about 3.5MB of data. PowerBook G4 OS 10.5.8

    Create a new account (systempreferences -> accounts or Users & Groups on 10.7)  and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.
    Regards
    TD

  • Light Room 5 has suddenly stopped importing files.

    My LR5 has suddenly stopped importing files. I've tried creating a new catalog and nothing.
    Why is this happing and how can I fix it?

    Hi, I had the same problem since yesterday. Apperently LR made a subdirectory on my destination-drive, which wasn't accesable for LR.
    By reselecting my destination (in the upper-right corner) everything works fine again.
    I can't explain the cause for this, because the problem occured when I wanted to import the second out of 3 sets of pictures I wanted to import.
    The first set gave no problem at all, and the second one, just a few minutes later caused me all this trouble of desperatly seeking for an answer.
    Hope it will be usefull for you as well.

  • My machbook pro has suddenly stopped syncing with icloud. I am giving password of my apple ID but its not accepting. but by the same ID and pass i can open my icould in browser.

    my machbook pro has suddenly stopped syncing with icloud. I am giving password of my apple ID but its not accepting. but by the same ID and pass i can open my icould in browser.

    Another user just has a similar issue tonight and I advised him to go to the below Apple support link to see if the password was recognized there, which eventually resolved his username/passowrd issue. Give it a try and see if it works.
    https://daw.apple.com/cgi-bin/WebObjects/DSAuthWeb.woa/wa/classicLogin?appIdKey= 58ef9db8ff4d201409e7270a68e4408ae1678e1618204c476572a1b5e5fb3518&path&language=U S-EN

  • Hi. My photoshop elements 12 has suddenly stopped working. When i tried opening it yesterday absolutely nothing happened. After a reinstallation I got to choose between opening picture browser or photoshop elements and when trying to open elements nothing

    Hi. My photoshop elements 12 has suddenly stopped working. When i tried opening it yesterday absolutely nothing happened. After a reinstallation I got to choose between opening picture browser or photoshop elements and when trying to open elements nothing happens. Now I have reinstalled windows but still with the same result. I was using the program for several months without problem until yesterday when it suddenly stopped working. Any suggestions on what to do?

    same question with PS11

  • Wifi has suddenly stopped working. There is an exclamation mark which takes me to network diagnostics. This asks me for network name and password. This is different from the startup wizard which only asked for a WEP key and modem name. What to do?

    My wifi has suddenly stopped working on my iMac, after working fine for almost a year. There is an exclamation mark on the wifi bars and when I click it, it takes me to a network diagnostics page. This page asks me for my username and password for the wifi, which I don't have. It is different from the WEP key and modem name, which I originally used to set up my connection. I have not experienced any problems on all my other wifi-enabled devices. Ipod touch, iPad, MacBook all work fine. What should I do?

    The name is the name of the network you created on the router. The password is the WEP password. You shouldn't be using WEP at all, as it's insecure and also seems to cause connection failures. Use WPA 2 Personal. If your router doesn't support it, get a new one.

  • Why has my Adobe X suddenly stopped reading PDF files sent to me?

    Why has my Adobe X suddenly stopped reading PDF files sent to me?

    How are you trying to read them? What process are you using and what applications are involved?

  • Want to open a new browser window and display the html file in locale disk.

    Hi,
    I want to open a new browser window and display the html file in local drive. The below html applet work in local system successfully. But i deploy the same in web server (Tomcat) and try the same in client machine it does not work. Please help.
    Note:
    The class below fileopen.FileOpen.class i make it as a jar and put it in jre\ext folder at the client machine.
    ------------------------------------FileOpen.html(Tomcat)-----------------------------------------------------
    <html>
    <body >
    <applet code="OpenFile.class" archive="loadfile.jar" width="100" height="100">
    <param name="path" value="file://c:/open.html" />
    </applet>
    </body>
    </html>
    -------------OpenFile.java in server(Tomcat)--------------------------------------------
    public class OpenFile extends Applet implements ActionListener{
    String path = "";
    fileopen.FileOpen open = null;
    Button b = null;
    public void init(){
    path = getParameter("path");
    b = new Button("Open");
    b.addActionListener(this);
    add(b);
    public void actionPerformed(ActionEvent ae){
    try
    open = new fileopen.FileOpen(this,path);
    catch (Exception e){
    e.printStackTrace();
    -------------------------------------------FileOpen.java /Client JRE/ext----------------------------------------------------
    package fileopen;
    public class FileOpen
    AppletContext context = null;
    URL url = null;
    public FileOpen(Applet applet,String path)
    try
    if(null != applet){
    context = applet.getAppletContext();
    if (null != path)
    url = new URL(path);
    context.showDocument(url, "_blank");
    }catch(Exception ex)
    ex.printStackTrace();
    Please help to solve this issue very urgent.
    Thanks in advance.
    By,
    Saravanan.K.

    zzsara wrote:
    I want to open a new browser window and display the html file in local drive. ...Did you ever pause to consider how ridiculous that is?
    The best audience for applets is people off the internet. 'People off the internet' might be using a computer that has no (what was it?) 'open.html' in the root of the C: drive. In fact (shock horror) they may not even be running Windows, and would therefore probably have no 'C:' drive at all.
    If you do not intend to distribute this to people off the web, an application makes a lot more sense, but even then, you cannot rely on the document being there unless you 'put it there' (during installation, for instance).
    As the other poster intimated, applets can load documents off the local disk as long as they are trusted. Here is an example*, but note that it is not so rash as to presume any particular path or file, and instead leaves it to the user to choose the document to display.
    * The short code can be seen at SDNShare on the [Defensive Loading of Trusted Applets|http://sdnshare.sun.com/view.jsp?id=2315] post.
    On the other hand, a sandboxed applet can load any document coming from its own server via URL, or get showDocument(URL) to work. In that case, the JRE must recognize that the URL is from its own server, so the best way to form URLs for applet use is via the URL constructor
    new URL(getDocumentBase(), "path/to/open.html");That is how I form the URL in this [ sandboxed example of formatting source|http://pscode.org/fmt/sbx.html?url=/jh%2FHelpSetter.java&col=2&fnt=2&tab=2&ln=0]. Of course, in this case the applet loads the document, then parses the text to draw the formatted version, but the point is that an URL produced this way will work with showDocument(URL).
    I am pretty sure showDocument() in an applet off the internet will work with an URL pointing to a foreign (not its own) server, but it will not be able to load documents off the end user's local disks.
    I suggest a couple of things.
    - Try to express this problem in terms of what feature it is that you want to offer the end user. Your question jumps directly to a bad strategy for achieving ..who knows what? An example of a feature is "Shows the applet 'help' files on pressing F1".
    - A good way to indicate interest in a solution is to offer [Duke stars|http://wikis.sun.com/display/SunForums/Duke+Stars+Program+Overview] to match that interest.
    Edit 1:
    ..and please figure out how to use the CODE tags.
    Edited by: AndrewThompson64 on Sep 12, 2008 11:14 PM

Maybe you are looking for

  • Error in Stock transfer between plants.

    Here user is transfering materials from one plant to another against a sales order.  However, the system is issuing error messages like this: "1.  Sales Order (SOBKZ = ) is not provided for this goods movement. 1.  Account xxxxx (Inventory change a/c

  • Urgent - problem with multiple users on same page

    Hi all, I have got an big problem with my app: when several users are using the same page, the action launched by USER_A affects the page displayed and used for USER_B. If there is only one user using the page, there is no problem at all. The webapp

  • Having trouble with the Air/app crashing after 3 or so hours on Win 7.

    Heya. I have been battling with this issue for a few days now, trying to debug what might be the root cause. The application is a reaction game with organic creatures and movement via Bezier Splines and some physics. It uses some really intense calcu

  • How do I import a series of appointments (from Excel) into Lightning Calendar? These are external assignments for various dates.

    I have been given a series of assignments to referee high school and college soccer games from several different assignors. I have all of the information in an Excel workbook. How do I format the data so I can Import into Lightning calendar? I believ

  • Help Update Swing

    Hi, I'm having some trouble with a swing application, let me explain it to you. I have a function (provided by a library, so it wont be easy to modify it), that retrieves files from a server; An object must be handed over to this function so the prog