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 :|
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...