0

In my application i need to Enable Flash and Enable AutoFocus for camera in blackberry jde 5.0.0

Help me, please.

Regards, Sampath

sampath
  • 51
  • 5

2 Answers2

1
player = Manager.createPlayer("capture://video");
player.realize();
player.start();
VideoControl vc = (VideoControl) player.getControl("VideoControl");
focusControl = (FocusControl) player.getControl("javax.microedition.amms.control.camera.FocusControl");
0

Enable Flash setFlash()

Enable AutoFocus setFocus()

Gilbert Le Blanc
  • 50,182
  • 6
  • 67
  • 111