How do I get the notification to allow Flash Player?

2

I have a website in PHP, and in some directories I need the user to have the Flash Player enabled, so I try to do something like this .

Anywhere I click on the image and button field causes the notification to allow Flash Player to appear. How to do this?

    
asked by anonymous 30.10.2017 / 01:22

1 answer

2

Well, it basically works just like the example you mentioned:

<a href="https://get.adobe.com/flashplayer/" target="_blank">Clique aqui para habilitar o Flash</a>

When clicking, if the default permission is to ask, a message will appear asking if he wants to enable Flash Player .

If the default permission is to block, an icon will appear in the right corner of the browser stating that a plugin has been blocked.

If you are already allowed, you will open the Flash Player site to download the plugin .

You may not be able to reproduce this effect because your default permission is already allowed or blocked. Try switching to the ask permission, then the example will work.

    
30.10.2017 / 02:16