I'd like to display XUL boxes on top of the VLC plugin element (to create an OSD with controls). I thought I'd be able to do so with a <stack> element, so I tried
Code: Select all
<stack id="player_stack" >
<html:embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2"
width="640"
height="480"
id="vlc"/>
<hbox id="menu" pack="center">
<vbox pack="center">
<description>top</description>
</vbox>
</hbox>
</stack>
Any ideas about how I could get the XUL elements to display on top of the VLC plugin? (or why it's impossible, if that's the case)
Thanks in advance.
Luca