0

we can develop a plugin as a form element with qtbrowserplugin.

http://doc.qt.digia.com/solutions/4/qtbrowserplugin/developingplugins.html#using-plugins-in-forms

Can we do the same thing with firebreath? Are there any example available?

Thanks.

Georg Fritzsche
  • 97,545
  • 26
  • 194
  • 236

1 Answers1

0

Interesting. I have never heard of this before. FireBreath does not have any such feature at present, but if you can figure out what qtbrowserplugin is actually doing behind the scenes it should be fairly trivial to add support to firebreath for the same thing.

taxilian
  • 14,229
  • 4
  • 34
  • 73
  • I build a plugin with firebreath and try to use it as a form element. I am surprised that it works in IE, but not google chrome or firefox. In IE, the value of the element is returned from ToString(). Can someone give me a hint how to make it works for chrome and firefox as well? – user2636341 Aug 20 '13 at 02:24
  • this is totally a shot in the dark, but try the "value" property – taxilian Aug 20 '13 at 17:33
  • I add a "value" property to my plugin. IE grabs the "value" property instead of ToString() now. However, chrome and firefox are still not working. – user2636341 Aug 22 '13 at 09:36