How do I make the notification appear to allow Flash Player?

Asked

Viewed 255 times

2

I have a site in PHP, and in some directories I need the user to be with the Flash Player enabled, so I seek to do something like this.

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

  • It is a flash game server, basically redirects to the page and game runs, but with the lock of the flash the site gets black screen until it is enabled, would like to do as on the printscreen, show the user the notification to Allow Flash after clicking on a particular button that would appear if your flash was disabled

  • practical example: https://jsfiddle.net/wtzbbhLb/show/

  • It’s not my site, it’s from a forum user, and I couldn’t play it

1 answer

2


Well, it basically works just like in the example you quoted:

<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 it wants to enable the 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 already allowed, will open the site Flash Player for download from plugin.

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

  • 1

    Perfect! I had not attempted me that was already allowed, thank you for the touch and excuse ignorance!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.