Flash player silent auto update not working

I was glad to read the news about the new feature of silent auto updates of the Adobe Flash player, but unfortunately this is not working on my machine. Has anyone had the same problems and was able to solve them?
Some information on my setup:
I had previously installed Flash player version 11.1.102.63, both ActiveX and Plugin version (installed through the .msi files, deployed via Active Directory/GPO - no further configuration, just plain original .msi files).
To test the auto update feature, I decided to install the new 11.2.202.228 version, but only the ActiveX version. I installed this via the .exe installer (install_flash_player_11_active_x_32bit.exe) manually, choosing "Install updates automatically when available (recommended)" in the last step of the installation, as seen here:
http://www.adobe.com/devnet/flashplayer/articles/background-updater-windows.html
When I open Control Panel -> Flash Player, under the "Advanced" tab I see:
"Install updates automatically" is chosen, but greyed out (no admin rights with this windows user)
ActiveX version: 11.2.202.228
Plug-In version: 11.1.102.63
The file "mms.cfg" under C:\WINDOWS\system32\Macromed\Flash\ contains:
AutoUpdateDisable=0
SilentAutoUpdateEnable=1
The task "Adobe Flash Player Updater" was created and is scheduled to run every 1 hour. I can see that it is started ("last start time"), the result code is 0x0 which means "no error".
So everything as expected. But the auto update is not working, since the plugin version of flash player never gets updated!
I edited the "mms.cfg" and added:
SilentAutoUpdateVerboseLogging=1
After manually starting the task, there are some lines added to "FlashInstall.log" in the same directory:
2012-4-4+7-20-48.814 [info] 1614
2012-4-4+7-20-48.829 [info] 1615
2012-4-4+7-20-48.829 [info] 1618
2012-4-4+7-20-48.829 [info] 1619 1063
2012-4-4+7-20-48.876 [info] 1614
2012-4-4+7-20-48.876 [info] 1615
2012-4-4+7-20-48.876 [info] 1618
2012-4-4+7-20-48.876 [info] 1608
2012-4-4+7-20-48.876 [info] 1604
2012-4-4+7-21-10.425 [warning] 1403 12029
2012-4-4+7-21-10.425 [warning] 1407 183
2012-4-4+7-21-10.425 [warning] 1408
2012-4-4+7-21-10.456 [info] 1624
2012-4-4+7-21-10.456 [info] 1612
2012-4-4+7-21-10.456 [info] 1621
What does this mean?
Some more information:
Windows XP SP3, all windows updates installed, german
Avira Professional Security anti-virus software
Machine is behind a proxy server, but this is set up in Control Panel -> Internet Options
I suppose this is a problem with our proxy server. Does the auto updater not use the proxy information from the Windows Control Panel settings?
Kind Regards,
Martin

Hey Hans,
After reading of your sucsess I attempted to replicate it.
I am happy to say that I managed to update from Adobe Flash 11.2.202.228 to 11.2.202.233 on serveral different windows 7 notebooks and desktops sliently.
I went into the windows task scedular and ran the Adobe Flash Player Updater task (I didn't need to change anything in the task or the service for it to work).
The only issue I found was that if I ran the task again without restarting the computer no requests from the client would show up in the logs from my web server but if I restarted my computer and then reran the task it would work again. I'm assuming that it will only sent requests out every 24hours is talked about in page 18 of the Flash Player 11.2 Administration Guide. 
My Web Servers logs look like this:
2012-04-27 05:45:01 W3SVC1967680676 10.135.12.38 GET /pub/flashplayer/update/current/sau/11/xml/version.xml - 443 - 10.135.13.17 Get+Flash+Player+version+xml/1.0 200 0 0
2012-04-27 05:45:05 W3SVC1967680676 10.135.12.38 GET /pub/flashplayer/update/current/sau/11/install/install_all_win_ax_sgn.z - 80 - 10.135.13.17 Download+Flash+Player+Installer/1.0 200 0 0
My mms.cfg looks like this:
AutoUpdateDisable=0
SilentAutoUpdateEnable=1
SilentAutoUpdateServerDomain=proxy.tallangatta-sc.vic.edu.au
I think the biggest issue I had during testing was that I forgot to my web servers certificate into the windows certificate stores trusts root certs of my notebooks/desktops. EG: http://blogs.adobe.com/livecycle/2012/04/rights-management-how-to-get-windows-7-to-trust-a -self-signed-server-certificate.html
I have since deployed the mms.cfg file and added my web servers certificate into the trusted root certs via group policy to all my clients and it is working very well. I have also writen a batch file to download the needed files from adobe for that backgroup updater and to put them on my web server. I created a daily task on my web server to run the batch file. If anyone wants the batch file or shell script please email me and I'll forward it on.
My batch file pretty much looks like this:
@echo off
:::::::::: INFOMATION ABOUT SCRIPT ::::::::::
:: This Script Titled  adobe-flash-background-updates and was written by Tyrone Wyatt of www.cloudportal.org.
:: This Script is open to use by everyone and is not under any licence.
:: See flash_player_11_2_admin_guide.pdf for more infomation on how this script is required to function.
:::::::::: SCRIPT CONFIG ::::::::::
:: The TITLE option is the scripts name
set TITLE=adobe-flash-background-updates
:: The LOG option is the log file.
set LOG=./%TITLE%.log
:: The SOURCE option is the mirror on which you would like to download the flash files from.
set SOURCE=http://fpdownload2.macromedia.com
:: The DESTINATION option is where you would like your downloaded files to go so they are accessable by your web service.
set DESTINATION=d:\wwwroot\Proxy
:: The VERSION option is the current major version of Flash Player (for Flash Player 11.2, the major version is 11).
set VERSION=11
:: The Proxy settings for wget to use
set HTTP_PROXY=http://edupass.tallangatta-sc.vic.edu.au:8080
:::::::::: SCRIPT CORE ::::::::::
echo Welcome to %TITLE% Script!
echo =O====== %date% %time% ======== >> %LOG% 2>&1
if exist %DESTINATION%\pub\flashplayer\update\current\sau\%VERSION%\xml (
echo Skipping destination folder structure creation.
) else (
echo Creating destination folder structure.
mkdir %DESTINATION%\pub >> %LOG% 2>&1
mkdir %DESTINATION%\pub\flashplayer >> %LOG% 2>&1
mkdir %DESTINATION%\pub\flashplayer\update >> %LOG% 2>&1
mkdir %DESTINATION%\pub\flashplayer\update\current >> %LOG% 2>&1
mkdir %DESTINATION%\pub\flashplayer\update\current\sau >> %LOG% 2>&1
mkdir %DESTINATION%\pub\flashplayer\update\current\sau\%VERSION% >> %LOG% 2>&1
mkdir %DESTINATION%\pub\flashplayer\update\current\sau\%VERSION%\xml >> %LOG% 2>&1
mkdir %DESTINATION%\pub\flashplayer\update\current\sau\%VERSION%\install >> %LOG% 2>&1
echo Downloading files...
wget.exe -nv %SOURCE%/pub/flashplayer/update/current/sau/%VERSION%/xml/version.xml -O %DESTINATION%\pub\flashplayer\update\current\sau\%VERSION%\xml\version.xml >> %LOG% 2>&1
wget.exe -nv %SOURCE%/pub/flashplayer/update/current/sau/%VERSION%/install/install_all_win_ax_sgn.z -O %DESTINATION%\pub\flashplayer\update\current\sau\%VERSION%\install\install_all_win_ax_sgn .z >> %LOG% 2>&1
wget.exe -nv %SOURCE%/pub/flashplayer/update/current/sau/%VERSION%/install/install_all_win_pl_sgn.z -O %DESTINATION%\pub\flashplayer\update\current\sau\%VERSION%\install\install_all_win_pl_sgn .z >> %LOG% 2>&1
wget.exe -nv %SOURCE%/pub/flashplayer/update/current/sau/%VERSION%/install/install_all_win_64_ax_sgn.z -O %DESTINATION%\pub\flashplayer\update\current\sau\%VERSION%\install\install_all_win_64_ax_ sgn.z >> %LOG% 2>&1
wget.exe -nv %SOURCE%/pub/flashplayer/update/current/sau/%VERSION%/install/install_all_win_64_pl_sgn.z -O %DESTINATION%\pub\flashplayer\update\current\sau\%VERSION%\install\install_all_win_64_pl_ sgn.z >> %LOG% 2>&1
echo Script complete! See log file for more infomation %LOG%
echo =X====== %date% %time% ======== >> %LOG% 2>&1
echo. >> %LOG% 2>&1
:::::::::: END OF SCRIPT ::::::::::
Thanks for your help,
Tyrone Wyatt.

Similar Messages

  • Flash Player's Auto-update

    Why doesn't Flash Player's auto-update work as good and correctly like the one of Google's browser Chrome. In Chrome the user always has the current version. Without long waiting, without questions, without problems, and so on.
    Everybody wants the newest Flash-version on his system, not only for security-reasons.
    The auto-upate should work correctly on all systems or people will try alternative techniques as they come their way!
    Greetings,
    Jasper

    Ok. I was curious more than anything. As long as I can turn it off and it stays off that's fine.
    Also, I remember other programs having some type of notification pop-up out of th blue with no noticable command anywhere, that I can see.
    Thanks muich,
    James

  • FLASH PLAYER 10.1 does not work on my 32bit browser

    the newest  version  of  FLASH PLAYER 10.1 would  not  work  on  my  32bit  FIREFOX browser.  so  I  installed  flash  player  on  a  32bit  VERSION of  internet  explorer. it worked fine for a few days till ADOBE asked me if i wanted to update  my  player.      NOW IT DOES NOT WORK  ! ! !      NOW  IT  DOES  THE  SAME  "GREEN  FLASHING  BLANK  SCREEN THING"  THAT  IT  DOES  ON  MY  FIREFOX  BROWSER  ! ! !    WHAT GIVES ? ! ? ! ? !

    Hello I have a Dell inspiron 6400 computer with window's home vista and with the latest standard Internet explorer. i was enjoying the fact that i could watch Youtube and other such sites until i was prompt to downlaod the latest version (10.1) flash player. which like anyone else I did, but not the mcfee anti virious as it would be inconflicsion with Norton anti virious.
    Now when i go to view a youtube etc I just get a blank or black screen.
    Please how can i rectify this problem
    ta,

  • Flash player download web site not working

    After uninstalling flash player, I can't get the web site to reinstall it. I go to the web site click the agree and install now and gos to the next page but nothing pops up like it said it should.
    http://get.adobe.com/flashplayer/thankyou/activex/?installer=Flash_Player_10_for_Windows_I nternet_Explorer&i=McAfee_Security_Scan_Plus&d=Google_Toolbar_6.3

    Hi eidnolb,
    My OS is windows 7 Ultimate. There no Service packs listed Microsoft don't have one for it yet. My brower is Internet explorer 8 version: 8.0.7600.16385. My firewall is not causeing problems and the popup blocker didn't even activate.
    Date: Wed, 14 Apr 2010 10:01:33 -0600
    Subject: Flash Player flash player download web site not working
    Hi newcomer76, Please post back your operating system and if any applicable Service Packs, any and all browsers that you use with the versions.
    With that information, I'll be able to give you instructions and the links you need.
    Thanks,
    eidnolb
    >

  • Flash Player And adobe reader not working and downloads don't work

    I have IE 8 and windows vista and everything has worked great for 2 years until 2 or 3 weeks ago.  At that time my flash player stopped working so I could no longer get videos , streaming stock quotes, weather map loops, etc and when I go to websites that use Flash (i.e. Piaaz Hut) it wouldn't work.  Also, at that same time my adobe reader stopped working properly and I can't view mosy PDF Files.
    I have gone through many of the posts on this forum and have tried many of the fixes, but none have work for me.
    I tried to uninstall the Flash Player, but I didn't use the Adobe uninstaller.
    Whenever I try to update or load the Flash player, a dialog box with the globe tossing papers to the folder appears and then after a few seconds I get the the message that IE can't install_flash_player_ax.exe from fp download.adobe.com, and then a message that says IE was not able to open this internet site. The requested site is either unavailable or cannot be found.
    In control panel programs I have listed
    Adobe AIR      no size
    Adobe Flash Player 10 active X           no size
    Adobe Reader 9.3     141mb
    Macromedia Shockwave player      no size
    In Tools i have the following add ons and they are all enabled
    Shockwave Flash object 10.0.42.34
    Adobe PDF Link Helper
    Adobe PDF Reader
    Macromedia Shockwave Active X Control 10.1
    As I said I've already attempted a number of the fixes on this forum, but so far no luck.
    Does anyone have any suggestions on what else I might try?
    Thanks

    Ok, I tried to download the firefox browser but IE wouldn't let me download it.  My friend downloaded it from their computer to a flash drive and I loaded it to my computer from the flash drive.  The download of Firefox from the flash drive worked, and now I'm using Firefox & both my adobe flash player and my adobe reader are working just great.
    However, neither the flash player nor the reader are working if I use IE, so I guess I will just have to use Firefox as my browser.
    I'm going to mark my question as answered since I really don't care that I have to use Firefox instead of IE,although I can't understand why it works using Firefox but not using IE.
    Thank you so much for your assistance in walking me step-by-step through this problem until I was able to reach a satisfactory solution.

  • Flash player plug-in does not work

    flash player plug-in does not work

    You don't say on what Mac, and you haven't actually asked a question, but perhaps this might be helpful:
    The latest version of Adobe FlashPlayer can be obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version, 10.2.152.25 or later, is for Intel Macs only, as Adobe no longer support the PPC platform. Note that the latest Flash Player update only works on YouTube with Safari in 32 bit mode - until YouTube correct this.
    * Unhelpfully, if you want the last version for PPC Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. The first one on the list, Flash Player 10.1 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/865/cpsid_86551.html#prob1=uninst,os=m10.6,
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • Adobe flash player and youtube are not working

    adobe flash player and youtube are not working

    It seems that going to Preferences>Security> Check allow plug ins, then manage sites, and then allowing one site allows all??? Seems like a lot to go through.  I have installed the player 4 times now and just got it figured out!

  • Flash player 14 - Retrieving Install not working

    Hardware: Macbook Pro 2008
                        2.4GHz Intel core 2 Duo
                        4Gb Ram
    OS: 10.9.4
    Every time I launch and run the dmg install, it says Retrieving Install but stays at 0% and the application says Not Responding.
    I have tried to uninstall Flash player and have checked that :
    Library/Internet Plugins/Flash Player.plugin file is not present;
    the Flash Player install manager is not present;
    Rebooted the Mac; and
    Repaired disk permissions.
    But I still cannot get Flash player to install. Can anyone suggest anything else to try?

    Try http://fpdownload.macromedia.com/pub/flashplayer/current/support/install_flash_player_osx. dmg

  • Flash auto update not working

    Been trying to get the autoupdate feature for flash working but no luck. Been using these settings for the mms.cfg for 32/64 locations:
    AutoUpdateDisable=1
    SilentAutoUpdateEnable=1
    SilentAutoUpdateVerboseLogging=1
    Running the windows task does not trigger the auto update function. With verbose logging this is what I see in the logs:
    2015-4-2+16-37-21.462 [info] 1613
    2015-4-2+16-37-21.462 [info] 1615
    2015-4-2+16-37-21.462 [info] 1618
    2015-4-2+16-37-21.462 [info] 1619 1063
    2015-4-2+16-37-21.462 [info] 1613
    2015-4-2+16-37-21.462 [info] 1615
    2015-4-2+16-37-21.462 [info] 1618
    2015-4-2+16-37-21.462 [info] 1604
    2015-4-2+16-37-21.462 [info] 1608
    2015-4-2+16-37-21.462 [info] 1612
    2015-4-2+16-37-21.462 [info] 1620
    2015-4-2+16-40-53.858 [info] 1613
    2015-4-2+16-40-53.858 [info] 1615
    2015-4-2+16-40-53.858 [info] 1618
    2015-4-2+16-40-53.858 [info] 1608
    2015-4-2+16-40-53.858 [info] 1612
    2015-4-2+16-40-53.858 [info] 1620
    Any help would be appreciated

    Been trying to get the autoupdate feature for flash working but no luck. Been using these settings for the mms.cfg for 32/64 locations:
    AutoUpdateDisable=1
    SilentAutoUpdateEnable=1
    SilentAutoUpdateVerboseLogging=1
    Running the windows task does not trigger the auto update function. With verbose logging this is what I see in the logs:
    2015-4-2+16-37-21.462 [info] 1613
    2015-4-2+16-37-21.462 [info] 1615
    2015-4-2+16-37-21.462 [info] 1618
    2015-4-2+16-37-21.462 [info] 1619 1063
    2015-4-2+16-37-21.462 [info] 1613
    2015-4-2+16-37-21.462 [info] 1615
    2015-4-2+16-37-21.462 [info] 1618
    2015-4-2+16-37-21.462 [info] 1604
    2015-4-2+16-37-21.462 [info] 1608
    2015-4-2+16-37-21.462 [info] 1612
    2015-4-2+16-37-21.462 [info] 1620
    2015-4-2+16-40-53.858 [info] 1613
    2015-4-2+16-40-53.858 [info] 1615
    2015-4-2+16-40-53.858 [info] 1618
    2015-4-2+16-40-53.858 [info] 1608
    2015-4-2+16-40-53.858 [info] 1612
    2015-4-2+16-40-53.858 [info] 1620
    Any help would be appreciated

  • Adobe Flash Player 10.1 is not working

    Hallo,
    My problem is that everything that uses flash player, does not work at the moment and says that I need the latest version. (I cannot see a video on you tube for example.)
    I downloaded AFP 10.1 several times (install-uninstall-reboot several times), I even checked the "Add-remove programms" and the "Adobe Flash Player 10 Active X" is there, but when I get to see a youtube video it says again to get the latest version. Each install was successful, but it still doesn't work.
    Here's some information about my computer in case of a need :
    Windows XP Professional
    Internet Explorer 8
    Norton 360
    and I also have some issues with pop-ups (I don't know if this is related)
    Note that:Today I was asked to update the AFP on the firefox and I did and until now it works perfectly.
    (I use both firefox and internet explorer)
    If anyone could help me , I would be very grateful...

    Hi Eidnolb,be careful, long post following  :
    Yes of course I kept MBAM on my desktop as a shortcut (was actually installed in C:\Program files) and it became my new friend .
    I am so suspicious now on everything that I am scanning my pc everyday!!
    I saw the scanning works without disabling Norton components, but you still think I have to do it , right?
    As for the Java, ok with the update.Now I have Java 6 Update 21.
    FF plug-ins
    In Firefox I actually got a message that 2 new add-ons have installed: Java Console 6.0.21 and Java Quick starter 1.0
    The other "extra" add-ons (2nd category from left) are:
    Microsoft.NET Framework Assistant 1.1
    Norton IPS 2.0
    Norton Toolbar 4.6
    and on the category "add-ons" (4th category from left) I found:
    Adobe Acrobat 9.3.3.177
    Google Update 1.2.183.23
    Java Deployment Toolkit 6.0.210.7
    Java (TM) Platform SE 6 U21
    Microsoft DRM (DRM Store Netscape Plugin) 9.0.0.4503
    Microsoft DRM (DRM Netscape Network Object) 9.0.0.4503
    Mozilla Default Plug-in 1.0.0.15
    Shockwave Flash 10.1.53.64
    Windows Media Player Plug-in Dynamic Link Library 3.0.2.629
    Windows Presentation Foundation 3.5.30729.1
    IE add-ons
    All add-ons
    Microsoft Corporation
    Search
    Windows Media Player
    XML DOM Document 6.0
    Free Threaded XML DOM Document 6.0
    XSL Template 6.0
    XML HTPP 6.0
    Google Inc
    Google Side Bar
    Google Toolbar Notifier BHO
    Google Toolbar Helper
    Google Toolbar
    Sun Microsystems,Inc
    JQSIEStartDetectorImpl Class
    Java(tm) Plug-In 2SSV Helper
    Java Plug-in 1.6.0_21
    Java Plug-in 1.6.0_21
    isInstalled Class
    Symantec Corporation
    Symantec Intrusion Prevention
    Symantec NCO BHO
    Norton Toolbar
    (All these 3 are disabled)
    Adobe Systems,Incorporated
    Adobe PDF Link Helper
    Adobe PDF Reader
    (Not verified) Microsoft Corporation
    XML DOM Document
    XML DOM Document 3.0
    XML HTTP 3.0
    Cureently loaded add-ons
    Symantec Corporation
    Norton Toolbar
    Symantec NCO BHO
    Symantec Intrusion Prevention
    (All these 3 are disabled)
    Google Inc
    Google Toolbar
    Google Toolbar Helper
    Google Toolbar Notifier BHO
    Google Side Bar
    Adobe Systems, Incorporated
    Adobe PDF Link Helper
    Sun Microsystems,Inc.
    Java(tm) Plug-In 2 SSV Helper
    JQSIEStarDetectorImpl Class
    Run without permission
    Microsoft Corporation
    InformationCardSigninHelper Class
    HtmDlgSafeHelper Class
    Tabular Data Control
    Microsoft Shell UI Helper
    Windows Media Player
    XML DOM Document 6.0
    Free Threaded XML DOM Document 6.0
    XML Schema Cache 6.0
    XSL Template 6.0
    XML HTTP 6.0
    Scripting Dictionary
    Free Threaded XML DOM Document
    (Not verified) Microsoft Corporation
    XML DOM Document
    XSL Template
    XML Schema Cache
    XML DOM Document 3.0
    Free Threated XML DOM Document 3.0
    XML Schema Cache 3.0
    XML HTTP 3.0
    XSL Template 3.0
    XML Data Source Object 3.0
    XML Data Source Object
    Sun Microsystems,Inc.
    isInstalled Class 6.0.210.7
    Java Plug-in 1.6.0_21
    Java Plug-in 1.6.0_21
    Java Plug-in 1.6.0_21  6.0.210.7
    Java Plug-in 1.6.0_21  6.0.210.7
    Deployment Toolkit  6.0.210.7
    Adobe Systems,Incorporated
    Adobe PDF Reader
    Google Inc
    Google Update Plugin
    Download controls
    Sun Microsystems, Inc.
    Java Plug-in 1.6.0_21
    Java Plug-in 1.6.0_21
    Java Plug-in 1.6.0_21
    It's clear now that some java add-ons have been installed!
    On the Add-Remove programms there are some that I don't know, take a look and if you know anything,please be so kind-as always-to tell me.
    -High Definition Audio Driver Package-KB835221
    -Marvell Miniport Driver
    -NVIDIA Drivers
    and some others Microsoft NET Framework
    (I think that the technician may have add them when I did a format to my pc)
    and I removed Apple software update, cause I didn't know what this was.
    I told you that this would be a long post..but now I'm through..
    Waiting for next step (no rush,take your time Eidnolb)
    BIG thanks to you!!

  • Flash player won't update/install/work/etc.

    About a week ago my flash player apparently stopped working.
    Sites like youtube, google video, none of these will work because
    it says I need to update my Flash player. Everytime I try to
    update, the installer runs, IE restarts, and the problem persists.
    I have done this over 20 times, and it will not work.
    I have used the uninstaller to take flash player off and
    reinstall the newest version, but this does not work either. I have
    done it at least 6 times with no results. I am running Windows
    Vista, and when i run it in Safe Mode it works fine, but not on
    normal booting... only safe mode. Are there any known programs or
    malicious software that could be interfering with it functioning
    properly? Or maybe another suggestion on getting it to work
    correctly?

    omg I have the same problem too, i swear ive tried almost
    everything I can even think of, what happens for me is ill go to
    install it and it will show that the adobe flash is trying to load
    something but eventually it wont load and just repeats itself into
    a loop trying to install it. ive tried reinstalling uninstalling,
    playing with the registry, going into the activex folders and
    messing around there and i cannot find why it wont let me install
    it., I have windows XP home and using IE, but it works good on
    Firefox.

  • Latest flash player, wmode GPU still not working in Safari

    Hi
    I have the latest flash player installed, (10.2.153.1) but when i use the parameter
    wmode=gpu
    in safari, nothing is displayed AT ALL. When right-clicking on the page, you only get the standard html options.
    When I remove the 'wmode' parameter, everything works fine.
    I have the latest version of safari. Everything works fine in other browsers (firefox, chrome).
    any ideas anyone???
    thanks!

    Sometimes it is just a trial and error.  The main thing is since I'm not working with your files, I have to mimic your scenario as best I can.  Make sure you give it exact positions when stacking actual videos or swf files to force them to overlap.  I tested this first with just a swf file and now the example is swapped to stack to youtube embeds as examples.
    It really shouldn't matter if it is a dropdown or what type of activity, as long as you have the stacking correct.  You can also, generally set the one in back to opaque. I updated the code snippet because this one seemed to read better.
    <html>
    <head>
    </head>
    <body>
              <div id="background" style="position:absolute; left:0px; top:0px; z-index:-50">
              <iframe title="YouTube video player" frameborder="0" allowfullscreen="true" allowtransparency="true" width="650px" height="750px" src="http://www.youtube.com/embed/FOHJUrcVdJk?amp;wmode=transparent"></iframe>
              </div>
              <div id="myDiv" style="position:absolute; left:0px; top:0px; z-index:1000;">
              <iframe title="YouTube video player" frameborder="0" allowfullscreen="true" allowtransparency="true" width="500px" height="500px" src="http://www.youtube.com/embed/FOHJUrcVdJk?amp;wmode=transparent"></iframe>
    </div>
    <body>
    </html>

  • Auto-update not working on 64-bit Windows Firefox Aurora

    I realize the correct directory to download Aurora builds would be http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-aurora-l10n/, but it does not have 64-bit Windows build which is unfortunately the only way to solve severe stuttering problems in Flash.
    Previously I had used nightly builds, while they did work fine most of the time sometimes there issues that forced me back to standard builds, and stuttering Flash.
    So instead I've been trying to use 64-bit Aurora I downloaded from http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-aurora/. It's been a smooth experience otherwise but auto-update doesn't work. First it attempts to install small patch, which fails. Then it tries to install full update, which again fails.
    Here's a screenshot of the full update failure message: http://i.imgur.com/8HmPjTE.jpg

    Thanks for the feedback. The topic linked above suggests that the problem with auto-update lies with CA certificate. I've submitted feedback to Moziilla and linked here just in case.
    If the cause of failing auto-update is the CA certificate, hopefully Mozilla is willing to correct the problem.
    Stuttering Flash in 32-bit Firefox is simply unbearable and I have to either use 64-bit Nightly or Aurora builds, or go Chrome.

  • Flash Player deploy by GPO - not working

    I've been attempting to get Flash Player 10 (distributable verision, install_flash_player_10_active_x.msi) to deploy accross our network - three sites, around 100 computers total.
    I've assigned it to Group Policy, the client machines pull it down and install successfully (it even shows up in Add/Remove programmes).
    However it doesn't work. Whenever any user goes to a flash-based website they get a message telling them to download and install flash.
    Has anyone else experienced this?
    All our clients are running Win XP and IE8

    In case this might help someone else - I've now given up with installing flash via GPO, and decided to try
    to install via a vbscript computer start up script that I knocked together this morning. In case it might help someone else, copy is included below:
    Basically - put msizap.exe from windows installer sdk + the adodb flash uninstaller/msi file in the directory (strNetworkPath)
    Script then does the following:
    1) Calls adobe's uninstaller exe in silent mode to clean up what adobe can - then what it leaves behind we do ourselves:
    2) removes c:\windows\temp\installax.exe if it exists
    3) searches for and deletes from registry any Managed applications references containing (Adobe Flash Player 10 ActiveX) - in our case, i've already told GPO's to remove flash player - so it's erroring on uninstall at the moment)
    4) Search for any installed msi applications  called 'adobe flash player 10 activex' and runs MSIZAP on them ( seems adobe uninstaller doesn't completely remove the local msi references ;/)
    5) copies MSI down frmo network to windows temp
    6) msiexec /qb msi
    7) delete the msi file
    Sub InstallFlashPlayer()
        ' Network Path to:
        ' msizap.exe
        ' flash installer
        ' flash uninstaller
        strNetworkPath = "\\path\to\flash"
        strFlashVersion = "flash10k.ocx"
        strTempFolder = "C:\WINDOWS\temp"
        strFlashMSI = "install_flash_player_10_1_85_3_active_x.msi"
        On Error Resume Next
        Set WshShell = WScript.CreateObject("WScript.Shell")
        Set fso = WScript.CreateObject("Scripting.FileSystemObject")
        file1 = fso.FileExists ("C:\WINDOWS\system32\Macromed\Flash\" & strFlashVersion)
        if file1 = true then exit sub
        WshShell.Run strNetworkPath & "\uninstall_flash_player.exe -uninstall",7, true
        file1 = fso.FileExists (strTempFolder & "\installax.exe")
        if file1 = true then fso.DeleteFile strTempFolder & "\installax.exe"
        Const HKEY_LOCAL_MACHINE = &H80000002
        strComputer = "."
        Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _
            strComputer & "\root\default:StdRegProv")
        strKeyPath = "SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt"
        oReg.EnumKey HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys
        For Each subkey In arrSubKeys
    strName = WshShell.RegRead("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt\" & subkey & "\Deployment Name")
            Select Case Err
                Case 0:
                    ' Key successfully read
                    If strname = "Adobe Flash Player 10 ActiveX" Then
                        strProduct = WshShell.RegRead("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt\" & subkey & "\Product ID")
                        'Error Handling if any? - resume next
          WshShell.RegDelete "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt\" & subkey & "\"
          WshShell.RegDelete "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Group Policy\AppMgmt\" & strProduct
                    End If
               Case Else:
                   ' Some error - skip
                   Err.clear
            End Select
        Next
      Dim installer : Set installer = Nothing
      Set installer = Wscript.CreateObject("WindowsInstaller.Installer") : CheckError    
      Dim product, products, info, productList, version
    On Error Resume Next
    Set products = installer.Products : CheckError
    For Each product In products
      guid  = product
                    name = installer.ProductInfo(product, "ProductName")  : CheckError
      if name = "Adobe Flash Player 10 ActiveX" Then
                        WshShell.Run strNetworkPath & "\MsiZap.Exe TWA! " & guid, 7, true
                        WshShell.Run strNetworkPath & "\MsiZap.Exe TW! " & guid, 7, true
                    end if
    Next
    Set products = Nothing
        fso.CopyFile strNetworkPath & "\" & strFlashMSI, strTempFolder & "\" & strFlashMSI, true
        WshShell.Run "C:\WINDOWS\system32\msiexec.exe /I """ &  strTempFolder & "\" &strFlashMSI & """ /qb-!", 7, true
        fso.DeleteFile strTempFolder & "\" & strFlashMSI
        On Error Goto 0 
    End Sub
    Sub CheckError
    Dim message, errRec
    If Err = 0 Then Exit Sub
    message = Err.Source & " " & Hex(Err) & ": " & Err.Description
    If Not installer Is Nothing Then
      Set errRec = installer.LastErrorRecord
      If Not errRec Is Nothing Then message = message & vbNewLine & errRec.FormatText
    End If
    Wscript.Echo message
    Wscript.Quit 2
    End Sub
    InstallFlashPlayer

  • Flash player 10.1 still not working (more information).

    A few months back, I made a thread concerning my situation of specific flash content not being played.
    I have returned, with hopes that my trials and tribulations may provide more insight into my problem.
    Basics
    Windows XP 32bit (v2002) - Media Center
    Service Pack 3
    Audio and Visual drivers up-to-date.
    Web Browsers
    IE8
    Google Chrome (6.0.472.62)
    Mozilla Firefox (3.6.8)
    All of these are running on the latest Shockwave and Flash players.
    The Problem
    Various types of Flash content cannot be played. This is what I have been working on for the past few months.
    1. YouTube works fine.
    2. ShockwaveFlash objects that are located on my hard-drive play fine.
    3. Embedded Players  (most commonly MySpace and JWplayer) will often freeze upon page loading, or will never load (progress circle spins forever).
    These issues, however, were avoided upon using Firefox to view the pages (I was originally using Chrome). An new version of chrome was just released, and it APPEARS to only have problems with the MySpace player. Haven't tested this yet, though.
    Video streams are completely out as well (except YouTube streams).
    These embedded videos on the video-indexing sites I visit may never load depending on their type, but they will often work normally when viewed on the site that owns the player.
    4. Embedded Objects (such as flash games) will vary in playability from site to site (an embedded version might not work on one site, but another site which hosts it as an executed file by itself will).
    The flash games will play through intros, but freeze (right-click "play" box becomes unchecked) upon reaching an interactive menu, or any sort of interface.
    5. I have tried fixing the Global/Local Settings and all the stuff there. I have tried changing the amount of data storage allowed for sites, but the flash games WILL NOT set any data. This makes sense, since they are not even running...
    Previous Advice
    "Post the files from file:///C:/Windows/System32/Macromed/Flash/"
    A folder called FlashPlayer Trust, and these files;
    Flash10i.ocx ~ FlashInstall.log ~ flashplayer.xpt ~ FlashUtil10i_ActiveX.dll ~ FlashUtil10i_ActiveX.exe ~ install.log ~ NPSWF32.dll (version 10.1.82.76)
    "Check in Tools & Extensions and make sure Shockwave Flash Object...ActiveX Control...Flash10h.ocx is listed and Enabled"
    Shockwave Flash Object - Check
    get_atlcom Class - huh?
    Shockwave ActiveX Control - Check
    Did not find Flach10h.ocx          I guess this is where a warning light should go off in our heads.
    Older Versions
    Since this all started when Flash 10.1 came out, a logical assumption would be that downgrading my version number would solve the problem.
    It did not. I tried a good half-dozen of the archived versions (none below 9.0 or not for my OS) and nothing happened. Really, nothing. Same old problems.
    Other Stuff?
    Disabling hardware-acceleration did nothing. just putting that out there.
    Please use this thread, as I tried hard to make it more clear and organized. However, if you wish to read the old thread;
    http://forums.adobe.com/thread/668004?tstart=0

    Hi, Norton normally just Disables the Windows Firewall and runs their own; first I've heard they gave a choice.
    So are you running the Norton Firewall or the Windows?
    Several things are going on, having your Internet Security set to Medium-High blocks ActiveX Controls from working. Guess what the Shockwave Flash Object is? It is the ActiveX Control in your browser that works with your Flash Player files and the websites so you can view Flash Content & Videos.
    Then the Norton Toolbar, the Intrusion Prevention and the NCO BHO conflicts with the browser and FP. Now the ControlInstaller Class and the PSFactoryBuffer must be new browser add ons from Norton. I'll research them and see what they are about.
    Your Norton add ons, Norton Firewall, the RP add ons and your Security Setting for the Internet Zone are all conflicting and blocking Flash Player Content and Videos from the Websites.
    In other words Flash Player is trying to work for you and all of those just mentioned are saying, no way!!
    So I guess you'll need to decide if you want to use Flash Player or be extra extra secure.
    Let me know,
    Thanks,
    eidnolb

Maybe you are looking for