Skip to main content

All Questions

0 votes
1 answer
183 views

How can I check if app is being minimized from minimize icon or by clicking taskbar app icon?

I have added functionality where the app hides in the background on window.minimize. But I want to hide it only when the minimize button is clicked and minimize when clicked from the taskbar. win.on(&...
Sandy_7's user avatar
  • 11
0 votes
2 answers
7k views

Playing videos in electron

I'm currently writing an electron application to run as a desktop app on Windows. I'm trying to embed a video on the page to all the end user to play it and it appear impossible. Sample code is: <...
Patrick Lafferty's user avatar
1 vote
0 answers
92 views

HTML file loads smaller elements in ElectronJS, how do I fix that?

I am currently creating my first ElectronJS App. When I tried loading my html (+css) file it seems as if everything is displayed smaller. function createWindow() { const win = new BrowserWindow({ ...
Ben's user avatar
  • 41
0 votes
1 answer
2k views

Uncaught (in promise) TypeError: Cannot read property 'buildFromTemplate' of undefined at HTMLButtonElement.getVideoSources

i follow along with the tutorial from firespace which is a electron tutorial and i get this massage saying that was an error even though the tutorial doesn't Uncaught (in promise) TypeError: Cannot ...
auliamnaufal's user avatar
2 votes
0 answers
1k views

How to list files recursively from folder in Electron application

I am trying to upload a folder in electron application <!--index.html--> <input type="file" id="filepicker" name="fileList" webkitdirectory mozdirectory msdirectory odirectory directory ...
Akash Srinivasan's user avatar
3 votes
0 answers
2k views

Require and import not working for modules in Electron

I'm trying to build a desktop app for the first time, using the Electron framework, and I'm trying to use the Trilogy module. However, several errors keep popping out. Basically, the main idea of my ...
Yi Chen Chong's user avatar
2 votes
2 answers
3k views

Can we integrate gstreamer in electron application?How?

I am doing java-script based desktop application. The problem is, i have to stream rtsp videos. is it possible to use g-streamer plugin with electron? or is some other plugin available rtsp for ...
Sathish's user avatar
  • 159
6 votes
2 answers
12k views

Failed to load resource: net::ERR_FILE_NOT_FOUND in angular

I build my app using electron and these errors occurred in chrome console. Otherwise my app is working fine if I run it through ng serve. Errors are as follows: Failed to load resource: net::...
junaid's user avatar
  • 93
1 vote
1 answer
2k views

electron <webview> isnt getting fullscreen?

im working at the moment on a desktp client for a project im workin as webdeveloper / sysadmin. So my great idea was to build the desktp client simple as easy using electron :D but it isnt working :c ...
Lars Erhardt's user avatar
1 vote
1 answer
2k views

Putting div content out of browser window in electron app

I just cloned electron quickstart app from github. I see that it creates a browser window inside which we can put all our html content. mainWindow = new BrowserWindow({width: 800, height: 600}) ...
Shehzadi khushi's user avatar
0 votes
1 answer
1k views

flashFrame: false on Electron app don't work

I´m trying to make my Electron app don't flash the frame when are minimized, because all times when it are minimized, it flash the frame, and some times, if I dont have focus in other program, it ...
Roberto Pinheiro's user avatar
1 vote
1 answer
2k views

Form action submit for Electron desktop app

This is my first time building a desktop app using electron/node.js and I have no experience bulding web apps. I am trying to add a submit form to my app. I tried to replicate the tutorials (w3), ...
dank's user avatar
  • 137