All Questions
5 questions
0
votes
1
answer
635
views
Need to ask for AppleScript permissions in an electron app
An Electron app uses NSAppleScript in a child python process and it needs automation controls for each browser. I have isolated the issue down to this specifically because if I run the app in the ...
1
vote
1
answer
233
views
Node.Js subprocess doesn't start after clicking on a .app, but does if running from unix executable
I'm working on an app using ElectronJS, with a python backend.
Electron and Python communicate through python using flask to host a webserver which returns JSON and the like.
Here's my situation - the ...
0
votes
0
answers
316
views
Adding read/write permission to access external HD under Catalina
I'm working on MAC application contains a command line tool.
The GUI (electron) using sudo prompt to run the command line tool written in Python.
Under Catalina, the app all needed permission to w/r ...
0
votes
1
answer
124
views
Bundling or combining two separate apps (Mac OSX)
I have made a desktop application which relies on a python backend and a "client" GUI application written in React with Electron. To use the application I have to first initiate the python backend ...
0
votes
0
answers
635
views
Mac OS - get app window to front
I have electron based app. I open url in electron window using
launcher_process = subprocess.Popen(launcher_path + [launcher_url, 'main', runfromsrc])
self.main_window_pid = launcher_process.pid
In ...