Closing a gtk application when SWF ends (NPAPI)

Is there a way to find out when my flash ends in NPAPI (like a flag). I want to close my application when my flash is displayed.

Thanks.

+1
source share
1 answer

The NPAPI plugin terminates when the browser on which it is hosted closes, and not vice versa. The only way you could do this is to give your SWF a javascript notification, which then does something similar to window.close ()

+2
source

Source: https://habr.com/ru/post/1442889/


All Articles