我怎样才能让闪光灯在我的电子应用程序中工作?
How Can I make flash work in my electron application?
我正在尝试为 Flash 游戏创建启动器。我是电子和编程方面的新手,所以我正在阅读电子文档,但我的闪光灯不工作。
const electron = require('electron')
const { app, BrowserWindow } = require('electron')
const path = require('path');
let pluginName
switch (process.platform) {
case 'win32':
pluginName = 'pepflashplayer.dll'
break
case 'darwin':
pluginName = 'PepperFlashPlayer.plugin'
break
case 'linux':
pluginName = 'libpepflashplayer.so'
break
}
app.commandLine.appendSwitch('ppapi-flash-path', path.join(__dirname, pluginName))
function createWindow () {
// Create the browser window.
let win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true,
plugins: true,
webviewTag: true
}
})
win.removeMenu(BrowserWindow);
// and load the index.html of the app.
win.loadFile('index.html')
win.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null
})
}
app.on('ready', createWindow)
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (win === null) {
createWindow()
}
})
网站加载正常,但闪光灯不工作。那么,我做错了什么吗?我怎样才能让它工作?
谢谢!
Obs:这是我的 main.js
使用较旧的电子版本 (4.2.6)。较新的 electron 版本(高于 4.2.6)将不会加载 flash 内容。
编辑:在Linux中,来自4.2.x系列的最新electron将与flash player一起使用。在windows,最新版本正常运行
代表提问者添加。
Flash 似乎至少在某种程度上适用于 Electron 9.0。我有一个带有 Electron 9 (Chromium 83) 的测试应用程序在我的 Mac 上加载插件,还可以在这里看到:Can I bundle Pepper Flash in an Electron.js app to run Flash in 2021+? 目前在保存我的 Flash 应用程序想要保存的文件时遇到一些问题嵌入在我的 Electron 应用程序中,但这可能一直是 Flash Player-Electron 集成的问题?不确定。
我正在尝试为 Flash 游戏创建启动器。我是电子和编程方面的新手,所以我正在阅读电子文档,但我的闪光灯不工作。
const electron = require('electron')
const { app, BrowserWindow } = require('electron')
const path = require('path');
let pluginName
switch (process.platform) {
case 'win32':
pluginName = 'pepflashplayer.dll'
break
case 'darwin':
pluginName = 'PepperFlashPlayer.plugin'
break
case 'linux':
pluginName = 'libpepflashplayer.so'
break
}
app.commandLine.appendSwitch('ppapi-flash-path', path.join(__dirname, pluginName))
function createWindow () {
// Create the browser window.
let win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true,
plugins: true,
webviewTag: true
}
})
win.removeMenu(BrowserWindow);
// and load the index.html of the app.
win.loadFile('index.html')
win.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null
})
}
app.on('ready', createWindow)
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (win === null) {
createWindow()
}
})
网站加载正常,但闪光灯不工作。那么,我做错了什么吗?我怎样才能让它工作?
谢谢!
Obs:这是我的 main.js
使用较旧的电子版本 (4.2.6)。较新的 electron 版本(高于 4.2.6)将不会加载 flash 内容。
编辑:在Linux中,来自4.2.x系列的最新electron将与flash player一起使用。在windows,最新版本正常运行
代表提问者添加。
Flash 似乎至少在某种程度上适用于 Electron 9.0。我有一个带有 Electron 9 (Chromium 83) 的测试应用程序在我的 Mac 上加载插件,还可以在这里看到:Can I bundle Pepper Flash in an Electron.js app to run Flash in 2021+? 目前在保存我的 Flash 应用程序想要保存的文件时遇到一些问题嵌入在我的 Electron 应用程序中,但这可能一直是 Flash Player-Electron 集成的问题?不确定。