electron/docs-translations/es/tutorial/using-pepper-flash-plugin.md

56 lines
1.9 KiB
Markdown
Raw Normal View History

2015-07-27 02:57:43 +00:00
# Utilizando el plugin Pepper Flash
El plugin Pepper Flash es soportado ahora. Para utilizar pepper flash en Electron, debes especificar la ubicación del plugin manualmente y activarlo en tu aplicación.
## Preparar una copia del plugin Flash
En macOS y Linux, el detalle del plugin puede encontrarse accediendo a `chrome://plugins` en el navegador. Su ubicación y versión son útiles para el soporte. También puedes copiarlo a otro lugar.
2015-07-27 02:57:43 +00:00
## Agrega la opción a Electron
Puedes agregar la opción `--ppapi-flash-path` y `ppapi-flash-version` o utilizar el método `app.commandLine.appendSwitch` antes del evento ready de la aplicación.
También puedes agregar la opción `plugins` de `browser-window`. Por ejemplo,
```javascript
var app = require('app')
var BrowserWindow = require('browser-window')
2015-07-27 02:57:43 +00:00
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the javascript object is GCed.
var mainWindow = null
2015-07-27 02:57:43 +00:00
// Quit when all windows are closed.
app.on('window-all-closed', function () {
2016-10-03 22:48:04 +00:00
if (process.platform !== 'darwin') {
app.quit()
2015-07-27 02:57:43 +00:00
}
})
2015-07-27 02:57:43 +00:00
// Specify flash path.
// On Windows, it might be /path/to/pepflashplayer.dll
2016-06-18 13:26:26 +00:00
// On macOS, /path/to/PepperFlashPlayer.plugin
2015-07-27 02:57:43 +00:00
// On Linux, /path/to/libpepflashplayer.so
app.commandLine.appendSwitch('ppapi-flash-path', '/path/to/libpepflashplayer.so')
2015-07-27 02:57:43 +00:00
// Specify flash version, for example, v17.0.0.169
app.commandLine.appendSwitch('ppapi-flash-version', '17.0.0.169')
2015-07-27 02:57:43 +00:00
app.on('ready', function () {
2015-07-27 02:57:43 +00:00
mainWindow = new BrowserWindow({
'width': 800,
'height': 600,
'web-preferences': {
'plugins': true
}
})
2016-10-03 22:48:04 +00:00
mainWindow.loadURL(`file://${__dirname}/index.html`)
2015-07-27 02:57:43 +00:00
// Something else
})
2015-07-27 02:57:43 +00:00
```
## Activar el plugin flash en una etiqueta `<webview>`
Agrega el atributo `plugins`.
```html
<webview src="http://www.adobe.com/software/flash/about/" plugins></webview>
```