Flash player version

When trying to launch a Flex app I get an error saying I need player version 10.
But I have version 9 debugger installed on all browsers.
I know that the app that I'm trying to launch was developed with Flex Builder 3 (which comes with player version 9), so how did the creators make it run only on version 10?

I don't know exactly what you mean by the "compatibilty thing" of the flash player. But I use Flex Builder 3 every day, having installed Flash player 10,0,32,18 and also debugging flash apps with it when developing.
Older flash apps will still be working with a newer Flash player if you mean this...

Similar Messages

  • How do I get a user to update to the Flash Player Version to 10.1

    I would like to find out if there is a way for a message to pop up on my website if the user has Flash Player version lower than 10.1. If the version 10.1 or higher (in the future) no message should come up. The message should prompt a user to update to the Flash Player version 10.1.
    My entire site is in Flash and I am using AS3. So I am guessing I should implement an AS3 code on the first frame of the script layer. Does anyone know what would be this code?

    O.K. I see,
    HTML code is automatically generated by Flash program.
    I am unable to give you a short answer on this and thus attaching the code I
    see in DreamWeaver:
    0) {
    versionRevision = versionRevision.substring(0,
    versionRevision.indexOf("d"));
    var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
    // MSN/WebTV 2.6 supports Flash 4
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1)
    flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1)
    flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer
    = 2;
    else if ( isIE && isWin && !isOpera ) {
    flashVer = ControlVersion();
    return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if
    that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
    versionStr = GetSwfVer();
    if (versionStr == -1 ) {
    return false;
    } else if (versionStr != 0) {
    if(isIE && isWin && !isOpera) {
    // Given "WIN 2,0,0,11"
    tempArray         = versionStr.split(" "); // ["WIN", "2,0,0,11"]
    tempString        = tempArray[1]; // "2,0,0,11"
    versionArray      = tempString.split(","); //
    } else {
    versionArray      = versionStr.split(".");
    var versionMajor      = versionArray[0];
    var versionMinor      = versionArray[1];
    var versionRevision   = versionArray[2];
             // is the major.revision >= requested major.revision AND the minor
    version >= requested minor
    if (versionMajor > parseFloat(reqMajorVer)) {
    return true;
    } else if (versionMajor == parseFloat(reqMajorVer)) {
    if (versionMinor > parseFloat(reqMinorVer))
    return true;
    else if (versionMinor == parseFloat(reqMinorVer)) {
    if (versionRevision >= parseFloat(reqRevision))
    return true;
    return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie",
    "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src",
    "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();
        switch (currArg){
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":
            args[i1] = AC_AddExtension(args[i1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    <!url's used in the movie>
    <!text used in the movie>
    </html

  • I need the Adobe Flash Player version 11.1.102.64plug in on my MacAir to view Ustream videos. Adobe message says the version is for Intel-based Macs with Safari; also says that I "may have to temporarily disable antivirus software. is it safe to download?

    I need the Adobe Flash Player version 11.1.102.64plug in on my MacAir to view Ustream videos. Adobe message says the version is for Intel-based Macs with Safari; also says that I "may have to temporarily disable antivirus software. is it safe to download?

    Your MacBook Air is an Intel-based system. To download the current version (11.2.202.228),  go to http://get.adobe.com/flashplayer/ and download it from there.
    If there is still a Flash issue, you can try the Google Chrome browser, which has the current Flash built into it, to see if it works any differently with the videos. It's available from https://www.google.com/chrome

  • I have repeatedly tried to install flash player version 10.0.0145 on my mini mac. I use Os 10.6.8 and safari 5.1.10. what do I need to do?

    I have repeatedly tried to install flash player version 10.0.0145 on my mini mac. I use Os 10.6.8 and safari 5.1.10. what do I need to do?

    Hello,
    Please provide more information as to what happens when you try to install Flash Player so that we may be able to assist you.
    Thank you.
    Maria

  • Adobe Flash Player, version 10.1.102.64 installed, but I cannot access FP dependent applications

    Adobe Flash Player, version 10.1.102.64 is installed, but I cannot access FP dependent applications (such as those on Facebook.)
    I used the link you previously  provided  http://www.adobe.com/products/flashplayer/fp_distribution3.html
    to  download the FP .exe and it worked for 2 days, but is no longer working and I'm getting the same message for both  Mozilla & IE. The only things I recall doing prior to FP not working again was 1) sign up for G Mail & 2) I used Save As to dwld a number of Images from Google.  I also rolled back my PC a day, but that has not fixed the issue.  I get the error both in IE & Mozilla.
    I've reviewed HK Local Machine/Software/Adobe, but there is no file folder for Flash Player under HK  HKEY_LOCAL_MACHINE/Software/Adobe {though there are folders for Shockwave, etc.)  Does anyone know the KEYS for Flash  Player, that I could add manually?
    System Information:
    Win XP Home, SP 2
    IE 8.0.6001.18702
    Mozilla 3.6.12
    Flash Player 10.1.102.64
    Thanks for any & all help!
    Sidney

    Can you see the Flash animation at http://www.adobe.com/software/flash/about/ ?
    Does it show some version information under it?
    Is Shockwave Flash object enabled in IE and FF?
    What files do you have in C:\Windows\system32\Macromed\Flash?
    Do you know that XP SP2 is no longer a supported OS?

  • 'To view this page ensure that Adobe Flash Player version 10.0.0 or greater is installed'?

    I have recently downloaded the newest version of flash player (version 11.9.900.117) and it is working fine with things like Youtube. However some websites that use flash player are coming up with the error message 'To view this page ensure that Adobe Flash Player version 10.0.0 or greater is installed'? I dont understand why this is happening as the version I have is 11.9.900.117 for Internet Explorer?? Please help this is driving me crazy!!!

    Exactly the same problem with me, and (apart from basic fix issues like disabling ActiveX filtering, etc) no-one seems to know a solution.
    OS: Win 7 64 bit
    Browser: IE 10
    Flash v: 11.9.900.117 (but problem continued after reverting to earlier versions with proper clean uninstalls of 11.9).
    I do note that at around the time the trouble started, Google Chrome did some (background) updates, including its embedded version of this latest flash. But if the others (above) don't also have Chrome, that is clearly not the issue. Perhaps it's a registry issue?

  • I use Adobe Flash player version 11.7.700.225 why do my YouTube and other videos keep stopping

    I use Adobe Flash player version 11.7.700.225 which is the latest version.  can anybody tell me why my YouTube and videos stop and I cannot view them I have a macbook pro with retina display late 2012 and I am running OSX 10.8.4. Do I need some other flash to view or what thanks for your time.

    noelenefromashford,
    I'm in the same boat. Safari 6.0.5, stalls, and stops playing video (youtube, vimeo, etc). I tried the same videos with Firefox and they play fine!
    Running 10.8.4 on Mac tower.
    I just switched from an older Macbook Pro 15" with the same OS version and browsers , and never had that issue. What gives?

  • Tmy linus computer is not letting me update the latest  Adobe flash player version 10.3.183.7

    i have a Asus eee 701 computer running Linux and using firefox 3.0.4 but i could not download the latest Adobe flash player version 10.3.183.7 i still using the old version flash player 10,0,22,87 i don't know what to do please help

    What distribution of Linux are you using?  You might want to post on their forum to see if any of their users have suggestions.
    Chris

  • Flash Player version 10.1.53.64 won't play

    I can't seem to get Flash Player  version 10,1,53,64 to play video on JayLenosGarage.com or TopGear.com.  It does  not work out Dell notebook or my desktop.  Both the Notebook and desktop run Win XP  Pro SP3. On a third new desktop running Win7, it plays.  All three run Mozilla Firefox  v3.6.8. My system has a Radeon X1900 (Driver Packaging Version    8.593.100-100210a-095952E-ATI)
    I click on the  play button in the middle of the video image, it clears the image to  black with a blue circle in motion.  But, it never moves past that.   I  have tried numerous videos on that site, with no luck.
    I have even  tried turning off Kapersky.
    I have >300G free on my hard drive, and  all drivers are up to date.
    I have tried turning off hw acceleration.
    Here are some additional system details:
    Processor    x86 Family 15 Model 35 Stepping 2 AuthenticAMD ~2407 Mhz
    BIOS Version/Date    American Megatrends Inc. 1303, 7/13/2006
    SMBIOS Version    2.3
    Hardware Abstraction Layer    Version = "5.1.2600.5512 (xpsp.080413-2111)"
    Total Physical Memory    2,048.00 MB
    Available Physical Memory    766.36 MB
    Total Virtual Memory    2.00 GB
    Available Virtual Memory    1.96 GB
    Page File Space    4.84 GB
    Page File    C:\pagefile.sys
    Any suggestions?
    Thanks!

    Hi, So that didn't help with the KIS 2010 version. Did you see my first paragraph in post #10? Any other program that would perhaps have an add on also?
    Also, if this 2010 vs has any add ons, plugins or extenstions in FF, I would disable them for the time being.
    When you right click on the KIS icon in your system tray, take a look around to see all of the components. You might try to turn off all of the components. Then enable one, check your site, enable another one, check your site and so on. It could be just one conponent that is conflicting.
    Now the other thing to do is Use FF and disable every addon, plugin and extenstion EXCEPT SWF and see what happens when you try the site.
    KIS is conflicting with something in FF and if you have a lot of add ons(I include plugins & extensions) then trying one at a time is the only way you will find out which one it is.
    Thanks,
    eidnolb

  • Detect flash player version of published SWF

    Hi I have a swf file (let say child.swf).
    Once It loaded I want to know parent swf was published on flash player 9 or flash player 10. How to find that?
    Question:
    1)parent.swf loades child.swf
    2)after child.swf loaded --> need to check parent.swf is published on flash player 9 or 10.
    3)if parent.swf published on flash player 9 then child.swf will run a function
    4)if parent.swf published on flash player 10 then child.swf will run some other function.
    On the above for the based on the 2nd point question 3 or 4 will happen.
    On the above case I have only one parent... In some other case I may have multiple parents. My question to how to detect top most player's published version?
    Note:
    Capabilities.version returns current flash player version which is installed on browser (it is not help my question)
    The following link has infomation about As version used on the swf (it is not help my qeuestion)
    Detect ActionScript and Flash player version of Published SWF
    Thanks,
    Siva

    Any Idea guys?

  • Flash Player version with Captivate 7

    The publish option (for swf) on Captivate 7 starts at Flash Player version 10.
    Does that mean if you had content working perfectly well on Flash Player 9 in a previous version of Captivate, and you import it into Captivate 7 it now needs the learner to upgrade their Flash Player?
    I am currently developing content (on Captivate 7) in a global company where forcing IT to upgrade all the flash to version 10 world-wide is out of the question.
    So I'm tempted to edit the manifest and set the minimum Flash Player back to 9.
    Am I heading into trouble?
    Or is there just some feature of Captivate 7 I need to avoid using?

    Editing the manifest file of the SCORM package is NOT going to get you out of trouble if the SWFs in that package are not compatible with a Flash Player version below 10.  If Captivate 7 is using tags or code inside the SWFs it creates that can only work on FP10 then your end users would NEED to have FP10.
    Since Captivate 7 has only just been released, you cannot have gone too far down the road of developing this content.  I would recommend you get this sorted out BEFORE you create mountains of content that your end users may not be able to view on their FP version. Upgrade an entire course to Captivate 7 format and test it thoroughly on end users from your company.  If it turns out your content doesn't run perfectly, then you may need to roll back to Cp6x to continue with this client.

  • Issue with latest Flash Player version when replaying videos

    I am using an older version of JWplayer "5.10.2295" in a lot of sites and it was working fine so far. Since the latest version of Flash Player came out the videos can't be played a second time on any browser on Windows. It is working fine for me on Mac - quickly tested in Firefox (Nightly) and Safari (latest stable).
    Reverting to an older version showed that everything was working fine before. I tried the latest 13 and 14 from Archived Flash Player versions
    Has this kind of issue been reported already? Any change in the upcoming beta that might fix this?
    Thanks,
    Albert

    I uninstalled FP following the steps on Uninstall Flash Player | Windows and installed 'flashplayer15_install_win_pi/ax/ppapi.exe' from Download Adobe Flash Player 15 Beta for Desktops - Adobe Labs instead. The 'Flash Player information' showed 15.0.0.183, but I still have the same issue. I also ran more tests multiple times on colleges' computers and the results are rather inconsistent:
    Tested on my machine (all Win7 SP1 x86)
    FAILED: FP 15.0.0.183 in Firefox 32.0
    FAILED: FP 15.0.0.183 in Firefox 33.0 (beta)
    FAILED: FP 15.0.0.183 in Firefox 34.0a2 (2014-10-01)
    FAILED: FP 15.0.0.183 in IE 11.0.9600.17280
    FAILED: FP 15.0.0.183 in Chrome Version 37.0.2062.124 m
    Tested on machine 2 (all Win7 SP1 x86)
    FAILED: FP 15.0.0.152 in Firefox 32.0
    FAILED: FP 15.0.0.167 in IE 11.0.9600.17280
    PASS: FP 15.0.0.152 in Chrome Version 37.0.2062.124 m
    Tested on machine 3 (all Win7 SP1 32)
    PASS: FP 15.0.0.152 in Firefox 32.0
    FAILED: FP 15.0.0.167 in IE 11.0.9600.17280
    PASS: FP 15.0.0.152 in Chrome Version 37.0.2062.124 m
    Tested on machine 4 (all Win7 SP1 x86)
    FAILED: FP 15.0.0.152 in Firefox 32.0
    FAILED: FP 15.0.0.152 in Chrome Version 37.0.2062.124 m
    Tested on machine 5 (all Win8.1 x86)
    FAILED: FP 15.0.0.152 in Firefox 32.0
    PASS: FP 15.0.0.167 in IE10 on VirtualBox - Win7 32 (from modern.ie)
    PASS: FP 15.0.0.167 in IE9 on VirtualBox - Win7 32 (from modern.ie)
    Any ideas?

  • I have installed the lastest Flash Player version 11.7 on ie however ie

    Ie keeps asking permission to install Flash Player version 11.7 and I have already installed it.  How do I get it to stop sending me this permission popup.  Please help.  Thank you.  todays date is May 7th 2013.

    Can you post a screenshot of that pop-up?

  • This is in regards to to the flash player version 11.6

    well i was wanting to know how do i exactly fix my flash player so i can see any videos play the right way, this flash player 11.6 version is messing up really bad so if any can help me fix this i would appreciate it.

    To help troubleshoot we'll need the following system information:
    Operating   system  
    Browser  
    Flash   Player version
    When reporting issues with video or audio, it's also helpful to get your system hardware and driver details.  Instructions for finding this information can be found here:
    Windows  
    Mac
    Finally, sometimes video and audio problems are caused at a lower level and not directly related to Flash Player.  I recommend trying both of the links below to see how they perform.  If the problem exists with both, then Flash Player is most likely not the culprit as the HTML5 video link does not use Flash Player when playing.  You can verify the use of HTML5 by right clicking the HTML5 video and looking for the words "About HTML5" at the bottom of the context menu.
    HTML5   video  
    Non-HTML5 video

  • Server-side flash player version detection

    Does anyone know of a method to pull the users flash-player
    version number (the entire thing, not just
    &quot;&gt;6&quot; or &quot;9&quot; but
    &quot;9,0,115,0&quot;) that does not use browserhawk. We
    are building a troubleshooting page for our LMS built on ASP.net,
    and do not want to use javascript, or vbscript to pull the version
    number. We can use a javascript method if absolutely necessary, but
    want to explore any server-side methods we can use first. We don't
    want to use browserhawk as it is wholly too expensive for our
    purposes.

    I have done that temporarily, but we were hoping to do this
    without placing a Flash SWF on the page. We are building a
    troubleshooting page, and want to keep as many variables out of the
    calculations as we can. IE, if Javascript is the issue, then a
    Javascript to tell us the Flash version would be a bad idea. If
    Flash is the issue, then a flash element would be a bad idea. If we
    keep all of the calculations on the server-side, and not on the
    client-side, then we know that nothing of the clients is messing
    with the information displayed.

  • Someone who can say how to get Adpbe flash player version 11.2.202.197 to work together with Lion on mac mini. Support from Apple can obviously not help the problem and do not care if it works

    Someone who can say how to get Adpbe flash player version 11.2.202.197 to work together with Lion on mac mini. Support from Apple can obviously not help the problem and do not care if it works

    Adobe flash player version 11.2.202.197 is for Windows Vista / Windows 7 / Vista 64 / Windows 7 64
    Adobe Flash Player version 11.1.102.55 is the current version for Snow Leopard and Lion.
    Adobe - Install Adobe Flash Player

Maybe you are looking for