"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

How to call from native to play the video clips..

Dear All, I trying to find the way to call video function from native(JNI). I already implemented the video using android SDK API demo in imagetarget example. If I press menu(i.e auto focus), the video play using media player. But now I want when the marker detect video should auto play. My coding is here to play the video from menu: imagetargets.java: public boolean onOptionsItemSelected(MenuItem item) { if(item.getTitle().equals("Toggle flash")) { Intent intent = new Intent(this,MediaPlayerDemo_Video.class); intent.putExtra(MEDIA, LOCAL_VIDEO); startActivity(intent); } Now how I call this intent function from native(imagetargets.cpp) so that marker detect and play the video. Please help me ... Regards Rassall