hi all I have several flash files and videos in sdcard ,and all the files are linking with a single index file .when i run the index.swf file in my computer's browser ,all the files run by a single index file but when i call that index file from java code in apk , then only the content of the index is run while others files are not called here is my source code
mWebView = (WebView)findViewById(R.id.webview001); mWebView.getSettings().setJavaScriptEnabled(true); mWebView.getSettings().setPluginsEnabled(true); String html = "<object> <param name=\"movie\" value=\"file:///sdcard/ flash/index.swf\"> <embed src=\"file:///sdcard/flash/index.swf\" width= \"600\" height=\"400\"> </embed> </object>"; String mimeType = "text/html"; String encoding = "utf-8"; mWebView.loadDataWithBaseURL("null", html, mimeType, encoding, ""); Thanks in advance .Please help me -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en