I guess webview is the best solution to play a local swf-file (flash). I just get cryptic character in the emulator with this html code in webview.
How can i play a local swf-file when the user click on some kind of link, java or html?
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Flash</title>
</head>
<body>
<object width="550" height="400">
<param name="movie" value="Flashfile.swf">
<embed src="Flashfile.swf" width="550" height="400">
</embed>
</object>
</body>
</html>
How can i play a local swf-file when the user click on some kind of link, java or html?