我正在尝试向我的openfin app.json添加2个网址,以便当我单击openfin快捷方式时它会弹出2个应用程序?
答案 0 :(得分:0)
在配置中包括第一个应用程序url和preloadScripts,在预加载脚本中包括第二个应用程序的子窗口打开代码,
var win = new fin.desktop.Window(
{
name: "secondApp",
url: "http://second-app.com",
defaultWidth: 600,
defaultHeight: 400
},
function() {
win.show();
},
function(error) {
console.log("Error creating window:", error);
}
);