Embed A Browser In Flex
Solution 1:
Only Air has that capability built in.
However there is a very good-looking component that you can find here: http://drumbeatinsight.com/
It is paid-for though.
Open source solutions are here http://sourceforge.net/projects/as3htmlparser/ and here: http://code.google.com/p/htmlwrapper/
Solution 2:
The Webkit engine is embedded in the AIR runtime. It is not embedded in the Flash plug-in, however, so you cannot embed a browser within a .swf (Flash application) running inside a Web browser (or even using a standalone, desktop .swf runtime) as the Flash plug-in doesn't support that. AIR is your only option for actually embedding a browser within a Flash application.
There are a number of examples on the Web of using s to position a browser component/window over a Flash application to make it look like you've embedded a browser inside of the Flash app. Before AIR came along, this was what a lot of Flash/Flex developers did.
Post a Comment for "Embed A Browser In Flex"