How can I play swf-files (flash) in my program? I have tried webview (that is working) with this html-code:
<!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> But I just get cryptic character in the emulator with this html code in webview. What is wrong? What can I do/try? Some code would be nice ;) Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

