Flash Player Settings Pop up window

I just found the "Flash Player Settings" on a live SWF file.
A little pop up window that appears when you right click on an
online SWF file.
Can someone tell me what this function is for?
Security?
Cookies?
Browser Detection?
There seem to be controls for allowing someone to access
functions on the user's computer. Storage space, microphone,
camera. Is that correct?
The online documentation is a little vague on why it's there
and what it can actually do. Either that, or I'm not advanced
enough in Flash to understand what they are describing. (probably
the latter)
But my client discovered it in a small slide show I added to
their site. I had never seen it before, but I work primarily on a
Mac and the usual alternative to "right clicking" (control-click)
doesn't produce the little pop-up window. This seems to be a PC
only thing.
I don't think they had ever seen this function before either
because it alarmed them, and they want to know if I can turn it
off.
Is that possible? If so, how? Perhaps when it's being
published?
If not, is there anything I can say to assure them that it's
harmless - if it is, indeed harmless.
The slide show was created using Flash 8, and published to
detect Flash Player 7, with a "Flash Only" HTML template.
Thanks.

Flash Player Settings are for the user to control access of
Flash movies to the camera, "Flash Cookies" (storage), microphone
and global for where these are prompted or asked for access.
More details at
http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager.html
They can use this to "turn off" any access to camera, Flash
cookies and microphone for all Flash movies including yours.
But they should think of it the same way as the Tools More
Options in IE -- where they control the player security requests.

Similar Messages

  • Adobe Flash Player Settings on Chrome

    I'm trying to understand the settings better and wonder why I have such difficulty changing or applying settings from the Adobe Flash Player Settings Pop-up when I am using Chrome but when I use Firefox or Internet Explorer I have no problem. In Chrome I got to click the crap out of something to get something to change or close. Also the settings pop-up's look different.
    Also I noticed the camera settings on Chrome and Internet Explore have an option for Google Camera Adapter 0 and  Google Camera Adapter 1. What the heck is Google Camera Adapter, where is it and why do I have two of them

    Hi Chris,
    Thanks for your prompt response. I found out the Google Camera Adapter is for Google Talk and Google Voice. I may have changed the monitor DPI. I don't think so, but that shouldn't matter. I mean the pop-up window is the same size on all three browsers. I am having this problem while using the following;
    TOSHIBA Satellite L305D PSLC8U- 03G01U
    FabCam, Version: 1.3 (A Chrome App)
    Windows Vista Home Premium Version 6.0 (Build 602: Service Pack 2)
    Google Chrome Version 19.0.1084.52 m
    Chicony USB 2.0 Camera (Built in)
    I think I have this issue on other applications as well.  I'll try another and see if thats true

  • Adobe Flash Player Settings window keeps popping up

    Flash Player version 11.7.700.225
    Mac OS 10.6.8 (64 bit)
    Browser  Safari
    When playing news clips I keep getting the Adobe Flash Player Settings Window. And the Allow and Deny buttons don’t work so I can’t get rid of the window without closing the video.
    What can I do to correct this?
    Thanks for your help.

    Hi,
    Sorry to hear that.
    The Settings window might pop-up due to insufficient memory allocation, camera/mic adjustments etc.
    Can you please look at this page: http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager.html ?
    Changing the setting might help you.
    With regards,
    Prabhu

  • Unable to set Flash Player Settings (Windows)

    How to resolve problems with Flash Player Settings; either unable to change anything on the Settings panel, or new settings won't save:
    close all browser windows
    open Windows Explorer
    in the address bar type %appdata%\Adobe
    delete the 'Flash Player' folder in there
    in the address bar type %appdata%\Macromedia
    delete the 'Flash Player' folder in there

    Hi, thanks for the screenshots. Your IE & FF Flash files are correct. However, the FlashPlayer Trust, I don't often see. From what I can tell this was something similar to the current Settings Manager, but for FP(Flash Player) 8 & 9 from Macromedia. I don't know if it is conflicting with the current Settings Manager or not. Cannot get a clarification on that.
    All I can tell you is that most systems that I see have certain Flash files for FF and other browsers and the FlashPlayer Trust is rarely among them. Usually there are 4 Flash files for IE, 4 for FF plus the Flash Player.xpt.
    In the IE add ons, did you find the Shockwave Flash Object...ActiveX Control...Flash10e.ocx (vs 10.0.45.2) and Enabled?
    This will be listed as I've typed it except it may or may not list the version #, but everything else will be listed.
    Now on the AVG, do you have the AVG free edition? It and the paid versions also have the LinkScanner, which causes problems. You said you Disabled AVG, did you just right click on the icon in the system tray and disable/turn off/exit?
    Or did you Untick the Resident Shield active?
    The LinkScanner component consists of 2 features and each needs Disabled.
    With Spybot, do you use the Tea Timer?
    Since FP is a browser plug-in, anything added to the browser has to be considered.
    Thanks,
    eidnolb

  • How to specify the position of the flash player settings window

    Hi, I have a flex app which turns on a web camera and shows
    the video from the camera. When the page first loads the Adobe
    flash player settings window displays which you are required to
    click on allow or deny.
    My question is, is there a way to specify where this settings
    window should be positioned on the screen?
    You can use this flex test app to see the settings window.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="initApplication()" fontFamily="Arial" width="925"
    height="1100" layout="horizontal"
    verticalAlign="middle">
    <mx:Canvas id="videoContainer" width="330" height="250"
    borderStyle="solid" borderColor="#000000" cornerRadius="10"
    borderThickness="5" x="-167" y="42">
    </mx:Canvas>
    <mx:Script>
    <![CDATA[
    import mx.core.UIComponent;
    public var camera : Camera ;
    public var video : Video;
    public var currentShot : BitmapData = new
    BitmapData(320,240); // video.width,video.height);
    public var matrix : Matrix = new Matrix();
    public var mybitmapdata : BitmapData = new
    BitmapData(320,240); // (video.width,video.height);
    public var mybitmap : Bitmap ;
    public var uploadbmd:BitmapData ;
    public var flag:Boolean = true;
    public var loader: URLLoader = new URLLoader();
    public function initApplication()
    camera = Camera.getCamera();
    video = new Video(camera.width*2, camera.height*2);
    video.attachCamera(camera);
    mybitmap = new Bitmap(mybitmapdata);
    var ref : UIComponent = new UIComponent();
    setInterval(snapShot, 100);
    public function snapShot() : void
    currentShot.draw(video, matrix);
    mybitmapdata = currentShot.clone();
    mybitmap = new Bitmap(mybitmapdata);
    var ref : UIComponent = new UIComponent();
    ref.addChild( mybitmap );
    videoContainer.addChild( ref );
    ]]>
    </mx:Script>
    </mx:Application>

    Yeah, it makes sense that we can't modify the contents of the
    window, but I'd like the position of the window to be based on the
    position of my application... oh well...

  • I get a pop up of "adobe flash player settings" requesting local storage and it will not respond to either deny or accept.  Help please

    I get a pop up of "adobe flash player settings" requesting local storage.  It will not respond to either deny or accept.  Please help.

    From the menu bar, select
               ▹ System Preferences... ▹ Flash Player ▹ Storage
    Select either one of the radio buttons marked
              Allow sites to save information on this computer
              Block all sites from storing information on this computer
    according to your preference. The usual display of Flash content doesn't require that you allow it to save information. Note also that this setting only affects Flash; it has no effect on web cookies or AutoFill.

  • MacOS Lion 10.7.1 Still issues with Flash Player Settings windows

    Hi Everyone, and Adobe,
    I have tried almost anything now, but it still doesn't work... I have a few workarounds but non really working
    I'm only having this issues with my iMac not my MacBook Pro... how is that?
    Using, MacOS Lion 10.7.2 with Flash Player version 11.0.1.152.
    I'm still not able to invoke / click on the Flash Player Settings windows in the Browser (Safari) -- I can as described, workaround the Allow and Denied issue by using the System Preferences Flash settings… but I can not change cam setting, from Web CAM to my external Cam. !!
    Is this ONLY me having these issues or ?? or wasn't the issue suppose to have been fixed in the latest version af Flash? or … is this issues only related to the Video Card within my iMac (ATI Radeon HD 2600 Pro 256 MB) ? 
    Some that someone, hopefully Adobe can help me here
    hope for some greate feedback ...

    This is a known issue with particular iMac machines having ATI Radeon HD cards. Currently, we found iMac 7/8 with ATI Radeon HD 2600 Pro are the most common victim of this issue. We are working with both Apple and ATI to fix this problem. For now, we summarized some work arounds in below forum thread, hope it will be helpful to you!
    http://forums.adobe.com/message/3820255
    Thanks!
    Yan

  • I cant open Flash Player settings from control panel on Windows 8

    Yo
    I play an online game that uses flash... I usualy play off of Chrome or an app launcher called pokki
    the game has been glitching for me lately, i was told by a fellow player that someone put a hack into my computer through this game, infecting a .DLL file associated with Flash player
    it doesnt seem to have any effects on the flash player , but has created lots of bugs in game
    Also, I cant seem to be able to open the settings for Flash Player through my control panel in the start menu
    I click on Flash Player, and nothing loads....If i click on anything else in the control panel, it opens...everything but the flash player..
    Ive ran Malware Anti-Malware program and also Ccleaner......cleared all the files that popped up...
    But still cant access my flash player settings...I tried uninstalling Flash and reinstalling....still nothing
    Can anyone helpe me out?

    Can you try to open it from a web page; e.g. http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html - right-click on the Flash animation and select Global Settings.

  • I want to remove flash player settings manager from my Windows Laptop, How is it done?

    I want to completely remove Flash player, plug-in and settings manger.
    I can uninstall player & plug-in, but settings manager remains.
    I want it gone.
    How would I go about this?

    I am trying to access Flash player website settings manager.
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager02.htm l
    I link from a browser to the settings manager but instead of a panel there is a download required to get latest Flash Player which I already have.
    I have no idea what you are talking about.  Just at what site are you getting this message to download instead of the settings panel?
    My ultimate goal is to remove Flash player cookies which I learned about today to be a problem. Thanks.
    If you want to temporarily remove Flash Player LSO's(cookies), just delete the browser's temporary files.  If you want to permanently remove LSO's, go to your control panel and activate the Flash Player Settings Manager.  Change the Local Storage Settings to Block all sites from storing information on this computer.  However, most sites with Flash Player videos will not work with this setting.

  • How do I get to Flash Player Settings Manager?

    Why is it so difficult to get to Flash Player Settings Manager?  How can I get there to get rid of the windows
    that pop up everytime I try to watch a YouTube video which blocks the screen I'm trying to watch?

    http://forums.adobe.com/thread/1195540

  • Adobe Flash Player Settings

    When I go to a site that has a video to accompany the story, the Adobe Flash Player Settings window pop up, as depicted in the print screen image below.  See below the image to learn of my problem and question.
    I don't know how to stop this from popping up.  If I hit allow or deny, I can't get rid of the popup.  I'm also getting pages that has ad videos, automatically playing the video, which I don't want to happen.  How can I get rid of the pop up, and stop the video from automatically playing?

    Yep.  Open the Control Panel, find the Flash Player icon and adjust the settings on the Storage tab.

  • Flash Player Settings box Won't Close

    Hi! I'm using windows 7, Internet Explorer. For months now nearly every time I try to watch a video the "adobe flash player settings" box pops up with the "allow/deny" screen. Whichever I click, the box won't go away. The whole video will play with that box right in the middle, blocking the screen. How do I close this box? I can't even move it out of the way.
    I've searched for an answer, but apparently I'm the only one in the world with this problem because I can't find this topic when I search on google or yahoo.

    The problem is related to our anti-clickjacking logic.  Because there are pixels changing around the dialog, we think that something may be obscuring the dialog when you click, so we don't register it as valid.
    The dialog is coming up because you've set a non-default setting in Flash (probably restricting the ability of sites to store Local Shared Objects on your computer).  The easiest way to get around this problem is to just get rid of the dialog entirely by allowing LSOs.  You can do this by going to Control Panel > Flash Player > Storage> Allow sites to save information on this computer.
    This control comes from way back in the '90s, when marketers were abusing this capability of Flash to track consumer behavior by storing unique identifiers.  While this technique is still used to some degree, the capabilities of HTML5 and server-side fingerprinting have far outstripped Flash's usefulness as a tracking technology for marketers in both ease and resilience.  So, while you can still disable LSOs on your computer, it offers you very little in terms of privacy in 2015, and it degrades the user experience significantly.
    Instead, when you do want to use Flash Player without accumulating information that might later be used to track you, use your browser's Private/Incognito browsing mode.  Flash Player will still be allowed to store things on your computer (so the content runs as expected with no degradation in the experience), but it all goes into a temporary location that's destroyed when you exit the browsing session.

  • Adobe Flash Player settings inside mx:HTML

    Hi,
    I have been struggleling for 2 days trying to find a solution to this problem. I have an mx:HTML inside an AIR application and isinde this HTML is an address to my server which has a normal php page with the Twilio client for receiving phone calls. Whenever a call comes in, the "Adobe Flash Player Settings" panel pops up asking for authorization for the app to use the microphone.
    The problem is that there is no way to click on "allow" or "Remember" or "Advanced" or nothing except the "Close" button which of course denies the usage of the microphone and stops me on my tracks.
    I am trying this from an iMac. Can anyone please tell me if there is some Air Application setting or mx:HTML setting that can help me with this issue?
    Any other way to achieve this?

    Hi,
    Sorry to hear that.
    The Settings window might pop-up due to insufficient memory allocation, camera/mic adjustments etc.
    Can you please look at this page: http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager.html ?
    Changing the setting might help you.
    With regards,
    Prabhu

  • No prompt to update when Flash Player Settings Manager is set to check for updates automatically

    My understading of http://forums.adobe.com/message/3562892#3562892 (March 2011) is that when an outdated version of the Player is used on Windows, the prompt to update should occur after the next restart of the operating system.
    So, when http://www.adobe.com/software/flash/about/ in Safari for Windows shows an outdated version 10.x of the Player:
    I restart Windows
    I log on
    I wait a few minutes.
    Problem
    Usually, no matter how long I wait, there is no prompt to update; Flash Player Settings Manager continues to show an outdated plug-in alongside a greater version of the ActiveX item.
    I see this problem with multiple computers running Windows XP and Windows 7.
    Any suggestions?

    Flash Player checks for updates every 7 days. The NCP doesn’t change this.  Where the user in that post is getting confused is that only after Flash Player detected an update (on average 3.5 days after a new version is released), the dialog will appear after a restart.
    Chris

  • Can't Left Click in Flash Player Settings Panel - HELP PLEASE

    Hi and thanks for taking the time to read this. Believe me it is a fraction of the time I have wasted trying to resolve this issue.
    Basic problem is:
    I am trying to stream to Ustream but since downloading AFP11 for my Windows PC when I open the Flash Player Settings panel i can't left click on anything. It is set to deny but I can't click allow, or close or any of the icons.
    Right click does work.
    I have followed countless instructions in other forums from other posts that have encountered the problem on Mac and older versions of AFP but as yet none of the solutions have proven succesul.
    I have tried all of the following but nothing has resolved the problem.
    1. Uninstall and reinstall Adobe Flash Player (although this is impossible using Google Chrome) and restart computer.
    2. Unistall flash and install older version. (made no difference on Google Chrome and on IE8 had no flash whatsoever).
    5. Uninstall older AFP and reinstall AFP11.
    4. Uninstall Google Chrome and restart computer.
    5. Uninstall QuickTime (I got this off http://www.techsupportforum.com/forums/f10/flash-player-not-working-properly-please-help-1 61552.html) and restart computer
    6. Last resort use keyboard shortcuts such as tab, enter and ctrl+arrows. This either didn't highlight the panel at all or if it did I still couln't select allow, or close the panel itself so was no help either.
    So now I'm back to square one.
    Now here's a really bizarre thing... I am using a shared laptop computer and if I use my colleagues profile where she hasn't updated her AFP to Adobe Flash Player 11 the settings panel is responding just fine. IT'S THE SAME PC!
    I know I am alone with this problem but someone out there has an answer. If you can help please let me know how to fix this problem where I can't left click in the Adobe Flash Player settings panel.and I will be eternily grateful.
    many thanks
    nik

    OK the amount I hate myself right now is more than a fat guy's self loathing for raiding the fridge at 2am for Pizza but less than an armed robber who's accidentally shot a pregnant woman in the stomach during a shootout. but not much less.
    So after I had miraculously got the Flash Player Setting Panel to work again, (after deleting QuickTime and leaving the window open for abut an hour it just started working again) I then got enticed into downloading the ustream producer software.
    While downloading it informed me that it would only work with QuickTime.
    Stupidly and Optimistically hoping it would remove the need to use flash player altogether I downloaded and installed both.
    I then discovered to my horror that Ustream producer is not a patch on Vidbalster and that it was not capable of delivering the same level of broadcast.
    I then opened the flash player settings panel on ustream and... the problem has returned!
    This means I am 99% sure that QuickTime IS the cause of the problem so I have uninstalled QT off the PC. I have also uninstalled Ustream Producer.
    The thing is though, now no matter how many times I restart, or uninstall and reinstall Adobe, or Google Chrome, I am once again UNABLE TO LEFT CLICK IN THE FLASH PLAYER SETTINGS PANEL. AAAARRRRRGGGGHHHH!!!!
    What did I do? I fixed it and  f***ing broke it again!
    Now it properly will not come back to life! the problem is not solved and i urgently need help.
    Why does Adobe Flash Player Settings Panel and Apple QuickTime hate each other so much that they've got to ruin my life?
    Help forum PLEASE!
    Regards,
    nik

Maybe you are looking for

  • Report sale by material Group

    HI,  Can anyone tell me if there are any standard report that I can get sales order by material Groups???

  • ECC Report showing Outline Agreements WITH related Release Orders

    Does anyone know of a report in ECC which will display all Outline Agreements together with all the Related Release Orders associated with each Agreement Number? I have trawled through hundreds of SAP transaction codes and cannot find something that

  • Does anybody know an app which allows you to use your iPhone as CCTV

    I am wondering if anybody knows an app which allows you to use your iPhone as a CCTV camera so I can view what is going on. Please if you know any app which allows you to use your iPhone as CCTV camera. Thanks I am really grateful.

  • Anyone installs Solaris 10 in a Netra X1 ??

    Hi !! Excuse me for the tiny english,isn't my native languaje, I'm spanish ;-) I'm trying to install Solaris 10 OS in my Netra X1. This machine doesn't have CD/DVD-ROM device, so I'm trying to install over the network. Also I have a Ultra10 working (

  • Creating a global layout in CO03

    Hi Expert, Can anyone tell me what authorizations/Parameter IDs are required to create a global variant in transaction CO03 -> goto Costs -> Analysis ? I can create and save a layout that is user-specific, but I cannot make it global. Any ideas? I al