Retina Display Support not working with Flash Player run applets

When running flash player run websites (e.g. games or Youtube) the flash player applet fails to render for the Retina Display in the new Firefox 18 (although websites render for the retina display).
Flash player renders everything including flash applets for the retina display in other browsers (Safari, Chrome)

Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
Once you're there, the site will check if all your plugins have the latest versions.
If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

Similar Messages

  • I am getting frustrated with Apple not working with Flash player on some of my favorite web sites. Is there any alternative that will work on I-pad instead of flash?

    I am getting frustrated with Apple not working with Flash Player on some of my favorite web sites! Is there another alternative to watching these site options on my I-pad?

    Flash is not, and probably never will be, supported on the iPad : http://www.apple.com/hotnews/thoughts-on-flash/ . Plus it would be up to Adobe to make a version of their flash player that works on iOS devices - something which they have never managed to do and which they have now given up on trying to do.
    Browser apps such as Skyfire, iSwifter and Puffin 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store, so your could try checking there for your sites (and there is the built-in YouTube app).

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • 5k retina display - scroll not working with Safari (both magic mouse and trackpad)

    Hi,
    suddenly my trackpad and magic mouse stopped working with scrolling (most annoying one) and other gestures.
    I recently bought the iMAC 5K retina display and was not expecting this by any means...
    I have a ton of tabs open on safari and simply "refuse" to try the old windows way of rebooting the machine...
    I have to use the arrow keys to scroll down... this is insane
    could you please advise? am I missing something?
    many thanks

    Just found out the reason I couldn't get the two to play nicely. I had connected my keyboard and trackpad using a "Magic Wand" which looked great. Unfortunately the magic wand had a connecting piece to fill in the gap between the two pieces and this was preventing the little pads underneath the trackpad clicking. So I can only guess that because the trackpad couldn't click it thought it was stuck and therefore also locked up the mouse. I've remove the connector and both pieces work perfectly together!

  • NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug

    Title
    NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug or feature
    Description
    Problem Description:
    NetStream.send can not send data to peerstreams when using with cirrus. Conflict with documents.
    Sorry for tag the build as 11.0.1.3 while the bug is actually on 11.2 beta since the bug report system didn't have 11.2 beta yet.
    If you are not responsible for 11.2 beta bug fix, please help a hand to handle this bug to 11.2 team.
    This bug is "killing" to your application, so we really appreciate your help. Thanks.
    ==Publisher==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, NetStream.DIRECT_CONNECTIONS);
    ns.publish("sendtest");
    ...//after connection success.
    ns.send("clientfunction", "ok"); // this line cannot reach subscribers. even if subscribers have client object correctly.
    ==Subscriber==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, cirrusid);
    var client:Object = new Object();
    client.clientfunction = clientfunction; // target function
    ns.client = client;
    ns.play("sendtest");
    Steps to Reproduce:
    1. compile the code in the attachment to SendTestExample.swf (not be able to paste it here)
    2. run it under flash player 11.2.202.19 beta
    3. run it under flash player 11
    Actual Result:
    HeartBeat is:
    Start HeartBeat:
    send hello
    send hello
    send hello
    which means NetStream.send was not able to call "clientfunction" as expected.
    Expected Result:
    Start HeartBeat:
    send hello
    in client function: hello
    send hello
    in client function: hello
    send hello
    in client function: hello
    which can call into the clientfunction as flash player 11 did.
    Any Workarounds:
    I can not find it out since it's an api level bug. But this can be very important for lots of applications which rely on send to do rpc.
    Test Configuration
    IE8, Firefox under Windows 7
    Also have problem under Windows XP (but not well tested on this platform)
    App Language(s)
    ALL
    OS Language(s)
    ALL
    Platform(s)
    Windows 7
    Browser(s)
    Internet Explorer 8.0
    ==Attachment==
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.NetStatusEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.setTimeout;
        public class SendTestExample extends Sprite
            public static var statusArea:TextField;
            var ncServer:NetConnection = new NetConnection();
            var nsServer:NetStream;
            var ncClient:NetConnection = new NetConnection();
            var nsClient:NetStream;
            var timer:Timer = new Timer(1000);
            public function SendTestExample() {
                ncServer.addEventListener("netStatus", onNCStatusServer);
                ncServer.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                statusArea = new TextField();
                status("status");
                statusArea.x = 0;
                statusArea.y = 0;
                statusArea.border = true;
                statusArea.width = 200;
                statusArea.height = 350;
                addChild(statusArea);
            function onNCStatusServer(event:NetStatusEvent):void {
                status("Step 1:");
                status("server: " + event.info.code);
                status("id: " + ncServer.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsServer = new NetStream(ncServer, NetStream.DIRECT_CONNECTIONS);
                        nsServer.addEventListener(NetStatusEvent.NET_STATUS, onNSStatusServer);
                        nsServer.publish("sendtest");
                        ncServer.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusServer);
                        ncClient.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                        ncClient.addEventListener("netStatus", onNCStatusClient);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            function onNCStatusClient(event:NetStatusEvent):void {
                status("Step 2:");
                status("client: " + event.info.code);
                status("id: " + ncClient.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsClient = new NetStream(ncClient, ncServer.nearID);
                        var c:Object = new Object();
                        c["clientfunction"] = clientfunction;
                        nsClient.client = c;
                        nsClient.play("sendtest");
                        ncClient.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusClient);
                        //setTimeout(sendHello, 5000);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            protected function onNSStatusServer(event:NetStatusEvent):void {
                status("nsserver: " + event.info.code);
                if (event.info.code == "NetStream.Play.Start") {
                    status("Start HeartBeat:");
                    this.timer.addEventListener(TimerEvent.TIMER, function (e:Event):void {
                        sendHello();
                    this.timer.start();
            protected function sendHello():void {
                status("send hello");
                nsServer.send("clientfunction", "hello");
            protected function status(msg:String):void
                statusArea.appendText(msg + "\n");
                trace("ScriptDebug: " + msg);
            protected function clientfunction(event:Object):void {
                status("in client function: " + event);

    Thanks for reporting. I can reproduce the bug in house. We will investigate.
    Calise

  • Camera just up and stopped working with flash player. SUUUUPER annoying. Any ideas?

    Hi:
    Windows XP SP3 32bit, latest updates applied
    Firefox 3.6.6 (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 ( .NET CLR 3.5.30729; .NET4.0E))
    IE 8.0.6001.18702
    Flash Player 10,1,53,64
    HP EliteBook 8530w with built-in HP camera (brand spankin' new).
    So Flash Player today decided it doesn't want to work with my webcam. I have pulled my hair out trying to figure out what the problem is. The camera works fine with other video camera software, such as Adobe Flash Live Encoder 3.1, for example, or the various Microsoft cam tools. But Flash Player just won't see it. When I visit a website that uses the camera through flash, all I get is a black box. I never get the privacy screen that asks me if I would like to allow the site temporary access to my camera.If i go into my settings, and go to the camera tab, it shows my camera device in the dropdown box. But you know how if you double-click the little box under the dropdown, it should activate your camera and display a little video inside that box? That doesn't work for me. All I get is this:
    It doesn't matter if I use FF or IE. I've re-installed Flash Player, both the FF version and the Ax version. To no avail. I've logged into my computer as a different user, because hell maybe it's some weird dumb thing in the Flash Player cache or something. Nope.
    Now here's the super, super, super annoying part: I just recently moved to this laptop and one of the things I was looking forward to was a computer where my webcam would FINALLY work with flash player again. Yes, that's right: my old computer had this exact same problem. And in both cases, at one point the camera worked with Flash player no problem, and then at some point, it just stopped working.
    This makes me think, of course, that the problem is some nefarious piece of software I've installed, but I can't think of what that is. I know the camera was working with my new computer as early as last week. Recently I've installed a bunch of software, including Adobe Media Live Encoder 3.1, Flash Professional CS5, and the Adobe Connect add-in. I've uninstalled everything except CS5, because, hey, who wants to re-install that if they don't have to? I'll do that as a last result, but the guy sitting next to me has the entire CS5 suite installed and camera works fine for him with Flash Player (same exact hardware too), so I don't think it's that. Other than that, I dunno. I've got VS2008 and 2010 installed. GoToMeeting. Office. That's about it.
    So. Any ideas? Any thoughts on how I could even start to debug the issue? Logging or something? Any help is much appreciated.

    Yes.
    Victory is mine.
    VICTORY IS MINE!!!
    Solution:
    Go to C:\WINDOWS\system32\Macromed\Flash\mms.cfg
    Set
    AVHardwareDisable=1
    to:
    AVHardwareDisable=0
    Restart your browser. Done. Camera works now.
    I really want to shout this solution from the rooftops, because try Googling the solution sometime. I did. I failed. You will too. Hopefully if I use some more 18-point bold font, Google will index it faster, because that's the way it works right?
    I actually had no idea that Flash Player has a folder in Windows\system32 at all, and I definitely had no idea that this file existed. I am guessing some stinking app I installed decided I needed AVHardwareDisable set to 1 for some reason (effers). I found out about the location by just lazily searching through the windows registry for "Flash Player" and eventually saw it pointing to that directory. A little more poking around and I found this file.
    Those of you who actively support this forum: please keep this in the back of your mind, next time someone has audio/video input problems with Flash Player. I've found an awful lot of forum posts from people with cameras not working, and I bet a good portion of them need this fix. Reinstalling Flash Player will not fix it. Here's hoping the solution comes up in Google for the next unlucky soul.

  • GETURL  is not working in flash player 9.0.124.0.

    Dear Friends,
    My swf and my html are in different domain so i got a issue
    in GETURL function , It is not working in flash player 9.0.124.0.
    in IE browser so that i add one parameter like allowScriptAccess
    =always then its working fine.but my question is what will happed
    if they will introduce any new flash version in future please tell
    me what is the permanent solution for this issue.
    Thanks

    There is no way to know what will change in the future. This
    is the solution that works now. It will probably remain in place
    for the reasonable future.

  • I have upgraded firefox 4 to firefox 5 but it does not work with real player record plugin 14.0.3......so I want to revert the upgrade to 4....please give me solution or firefox 4

    Question
    I have upgraded firefox 4 to firefox 5 but it does not work with real player record plugin 14.0.3......so I want to revert the upgrade to 4....please give me solution or firefox 4

    Go to your actual realplayer (program), click the top right button (Realplayer with an downwards arrow) and update your software. Make sure Firefox is closed while you do this.
    ::Worked for me::

  • AIR SDK 17 (BETA) is not working with Flash CS6

    Hi,
    The latest AIR SDK 17 is not working with Flash CS6.
    I tried to publish and install an iOS app to my connected device via USB but I always get an error "Check if iTunes is installed".
    The latest stable AIR SDK 16 is working fine, and yes, iTunes is installed on my PC.
    DETAILS:
    - Flash CS6
    - AIR SDK 17
    - System: Windows 8,1
    - iPodTouch with iOS 8.1
    REPRODUCE:
    Open new AIR iOS template and publish/install it to a USB connected iOS 8.1 device.
    Anyone else got that error?

    I was getting this intermittently.   Not a super problem.   A remove and install in iTunes gets it loaded (after you tell ITunes where it is).

  • My thunderbolt display is not working with my MBP retina 13''

    Hi,
         I just received both a new macbook pro retina 13'' and a thunderbolt display. Everything was working properly yesterday but today, I have no clue why, the thunderbolt display is not working anymore.
         . the power supplier for my laptop given by the thunderbolt display is still working;
         . when I don't connect my laptop through the thunderbolt connection, I can use the usb sockets as power supplier , for my phone, for instance;
         . as soon as I plug the thunderbolt cable, the usb socket is not feeding any more my phone, whereas the screen is not displaying anything.
         . If I take a look in the system report, in the thunderbolt tab, there is "no device connected"...
    I restarted plenty of time my laptop, took care to reinitialise the SMC as well as the PRAM, and nothing changed. I also disconnected the thunderbolt display, waited few minutes (and more), but nothing changed, again the black screen.
    Has somebody an idea?
    Thanks

    which model air do you have?
    try both a pram and smc reset
    plug the monitor into a different electrical outlet and a different port on your Mac (if you have multiple tb ports)

  • Captivate 5.5 not working with Flash 11.4?

    I had Flash 11.4 and published a module with click boxes that jump to URLs.  The click boxes don't appear in either preview or published mode.   No hand cursor, no click box, no URL, nothing.  I've double checked the settings on the click boxes three times... they are correct, and the box is the top most thing on the slide.
    Based on advice I found on this forum on other flash problems, I tried uninstalling Flash 11.4 and going back to 10.3.  Now every time I try to launch the module I immediately go to the Flash 11.4 download page, and get the message "this content requires Flash to play - download now".  So apparently you can't install an earlier version of Flash and use it with Captivate.
    Which isn't a solution anyway, because my I don't want my viewers to have to do that to take this training.  So what do I do?  How do I make these urls available?
    I won't waste my time calling Adobe support... I've made that mistake in the past.  I'm really hoping someone here can help me.  Upgrading to Captivate 6 isn't an option...it's not in the budget.   They need to make 5.5 work with Flash - it's not that old.  It's SO frustrating that every time there is a Flash upgrade I have problems with this stupid software.  If they are going to publish to Flash, they need to keep the software current.  They own both products for goodness sake - why don't they work together?   Please help!
    Thanks for your help.
    Toni Rexrode

    I doubt that Flash 11.4 is the cause of these issues.  Having Flash 11.4 installed on your box doesn't mean your end users will need it..  Captivate 5.5 and 6 will only publish as high as Flash 10.2.  So all your end users would need is that version or above.
    I assume when you say you have check the settings on your click boxes, you made sure you have them configured to show the hand cursor?  If this is not turned on then the normal mouse pointer is all that will be visible.  But I'm betting you've checked that already.
    What you may not realise is that sometimes Captivate will APPEAR to show your click boxes are on the top layer of the timeline when you look at it in Edit mode, but in fact they may be buried down under other objects in the layers and NOT be clickable at runtime.  This has caught me out a few times.
    To ensure that your clickboxes ARE on the top layers, select each click box in the timeline and then click the icon on the main toolbar to Bring Selected Objects to the Front.  Then publish and test again.

  • Flash Builder 4 profiler doesn't seem to work with Flash Player 10.0

    Hi,
    I've been trying to get the profiler to work with Flash Builder 4, but when trying to profile on Flash Player 10.1, 11 or 11.1, Flash Builder doesn't connect to the profiled SWF.
    Changing my Flash Player to an old, debug version of 10.0.45 works fine.
    Is this a known bug, or is it just an incompatibility that's fixed in Flash Builder 4.5?
    thanks
    Richard

    I’m profiling just fine in 4.5

  • My ipod touch 3g with ios 5.0.1 does not work with the player's car

    ios 5.0.1 update from my ipod touch 3g does not work with various audio players Car pionerr with previous updates had not had problems like I can solve this problem???
    thanks

    I have tried everything and nothing that happened when you upgrade to ios 5.0.1, I want to know if anyone else has had this problem

  • Built in isight camera not working with flash

    My built in isight camera on my macbook works just fine in photobooth and in skype or ichat.. but just in the past week or so, it will not work when im on websites that use flash. I've seen some threads that say that I need to go into settings and make sure that the camera chosen is the USB. When i go into flash settings, the only options are Google1, Google2, or Built in isight. It doesn't work with any of them. Does anyone have any idea how I can make it work again?

    zeppelinfan1234 wrote:
    I don't have google add ons. I followed the path but i have no Google folder in Application Support. Any other suggestions?
    Your problem is not the same as that posted by the OP, and your system info shows you using Mac OS X (10.5.6).
    For your symptoms with this system, I suggest you do the following:
    (1) Apply the 10.5.8 Combo Update using the following process:
      • Backup your Mac and turn off Time Machine
      • Disconnect peripherals and restart Mac
      • Use Disk Utility to repair permissions
      • Download and install
       http://support.apple.com/downloads/MacOS_X_10_5_8_ComboUpdate
      • Repair permissions again immediately following the restart that finishes the update.
      • Test whether Flash works for you now.
     (• Turn Time Machine on later when you are satisfied that the update worked.)
    (2) After applying the 10.5.8 Combo, if you are still having problems, download and install the latest Flash player compatible with your system:
      http://get.adobe.com/flashplayer/otherversions/
    Also check any other third-party browser plugins or other add ons. Apply all available updates and uninstall any third-party items that are known to be incompatible with your system.
    Message was edited by: EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod touch 4.1

  • FireFox 3.6.16 still not working with Flash!

    Since updating to the latest version of FireFox 3.6 I have not been able to watch flash video's on YouTube and other sites, also any flash based content is blank or black.
    I'm using Mac OS X 10.5.8 on a G5 PPC so Flash 10.1.102.64, the latest for PPC Mac's.
    I've gone through all the usual steps of disabling plug-in's and extensions with no luck.
    I'm also using the latest Safari 5 and it is still working with YouTube and other Flash sites.
    ETA - Just found something weird, if I launch the QuickTime Player (not the plug-in) after launching FireFox then Flash appears to act normally, even after quiting QT.

    @cor-el
    Thanks for clearing up my misunderstanding. As i understood now it is in fact only a "DOM storage data" topic.
    Quote from betterprivacy:
    ''"Disabling DOM storage (instead of deleting the file on shutdown) causes a website script to throw an exception. This means that the execution of the script is aborted immediately, not just the DOM storage instruction is ignored. None of the following script instructions would be executed, even if those instructions have nothing to do with DOM storage. That is the reason why -with DOM storage disabled- sites like CNN.com will cease to play videos."''

Maybe you are looking for

  • Hp m476dw printer do you have to replace all ink catridges to print black

    Hi, not really an installation question, but maybe y'all can help me nontheless. Just got the hp m476dw printer, and I'm wondering if it will let me print in black if my supply of colored ink is out. I'm just trying to see how much ink I need to have

  • Where to find diagnostics-console-extension.jar(WLDF) file

    Hi All, I am doing Load balancing / fail over testing using DB RAC11g and weblogic 9.2MP3, so I would like to know how many requests are going to each node in the RAC data base. For this I would like configure the diagnostics-console-extension.jar to

  • Why do none of the add ons i have downloaded work at all?

    I have downloaded many add ons, most trying to block ads or remember user names and passwords but no ads have been blocked, and no sign in info has been remembered

  • IPhone 3G does not show up in iTunes

    When I plug in via USB port on rear of machine (powered USB), and I've tried both ports. I am using the supplied USB cable. I plug it in within' the first couple of days of purchase and it showed up, and I've installed the 2.0.2 (5C1) iPhone software

  • Bluetooth Speaker Recognized but Won't Connect to W520 Win7 System

    I'm about to return my Creative Bluetooth D100 speaker but thought I'd post here to see if anyone can offer a solution. The speaker has stopped connecting to bluetooth. It is recognized in the bluetooth control panel.  All bluetooth drivers are up to