0

I want to clarify one doubt ..How we can properly load an interactive swf file in an android application.?

In case with a non-interactive swf file its OK..i can able to display it properly. But in case with an interactive swf file its display OK, but it is not getting working properly. Its drop down box not working. We cant't get select any item from the drop-down box.

I have included code for enabling javascript and all.

     webview.getSettings().setPluginsEnabled(true);
     webview.getSettings().setJavaScriptEnabled(true);

Can anyone please tell the proper way in which we can load an interactive swf file into an android application.?

TKV
  • 2,533
  • 11
  • 43
  • 56
  • Have you checked this link. http://stackoverflow.com/questions/6106636/how-to-play-local-swf-files-in-a-webview – kalpana c Jan 11 '12 at 07:06

1 Answers1

0

Please refer to this Load an SWF into a WebView

You have to enable plugins.

webview.getSettings().setPluginsEnabled(true);
Community
  • 1
  • 1
Theo
  • 5,963
  • 3
  • 38
  • 56
  • i already enabled plugins using this line of code.but its not working. – TKV Jan 11 '12 at 08:09
  • What error are you getting? What is happening or what is not happening? Please update your question to describe more fully the problem you are facing. Thanks! – Theo Jan 11 '12 at 19:17