Hi Folks,

I have read that recent version of Android(2.2) supports Adobe
flash(10.1) files(.swf), bascially i want to open swf file in android
emulator using through eclipse for development purpose. I have seen
some coding on internet to open swg file(like shown below) but unable
to open so.

ComponentName toLaunch = new
ComponentName("com.flash.common","com.flash.common.TestFlash");
if(toLaunch != null) { File file = new File("/common/Canon.swf");
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.fromFile(file)); i.putExtra("play", "/common/
Canon.swf"); i.setComponent(toLaunch);

startActivity(i);

After opening that file i want to use some links on that file.

Could any one give me answer about the above question? Please help.

-- 
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

Reply via email to