Search found 3 matches

Go to advanced search

by Hamid_PaK
26 Jan 2020 10:21
Forum: Scripting VLC in lua
Topic: Running extension in the background
Replies: 3
Views: 1265

Re: Running extension in the background

mederi, thanks for reply.

Yeah someone else has already reported it here (https://trac.videolan.org/vlc/ticket/22778.)

Menu also never worked for me on macOS, might not be implemented at all :|
by Hamid_PaK
21 Jan 2020 03:16
Forum: Scripting VLC in lua
Topic: Running extension in the background
Replies: 3
Views: 1265

Re: Running extension in the background

I made it work by checking the status of the player and show the dialog on `input_changed()`: function input_changed() -- ... some other logic if vlc.player.status() == "stopped" then dlg:show() end end just a small problem it seems `playing-listener()` never gets triggered on macOS :|
by Hamid_PaK
19 Jan 2020 21:44
Forum: Scripting VLC in lua
Topic: Running extension in the background
Replies: 3
Views: 1265

Running extension in the background

I apologize if this question was asked already, I'm trying to develop an extension for VLC in Lua but for some reasons as soon as I hide the dialog I cannot show it back and reactivating the extension from the Menu also destroys/deactivates it completely and won't reshow the previous state. Is there...

Go to advanced search