Creating this kind of popup in Firefox Addons?
问题 I'm trying to create a popup like this for use in my addon - is it possible? If so, how's it done? Thanks in advance! 回答1: It is also possible to do this by creating a panel and setting it's type to "arrow". In fact that's almost the same example that they have on the panel.type reference page: Here's how to do it: <panel id="testPanel" type="arrow"> <vbox> (... content goes here ...) </vbox> </panel> Then you would open it with: panel.openPopup(elementThatShouldTriggerIt, "before_start", 0,