01-11-2012 06:18 AM
This question has been asked before but nobody has replied with an answer. The app was developed under OS5.0 and video works fine. But with OS6.0, the security timer dialog appear. Is there anyway we can stop appearing this dialog?
01-13-2012 09:01 AM
Are you playing video within your own application or invoking the Media Player?
Can you post a screenshot of the dialog or the exact text in the prompt?
01-17-2012 09:39 AM
Hi Mark,
Thank you very much for your reply and apologize for late response.
The video is playing within the app.
try {
// Create a new Player pointing to the video file.
// This can use any valid URL.
player = Manager.createPlayer(videoURL);
player.realize();
// Create a new VideoControl.
videoControl = (VideoControl) player.getControl("VideoControl");
Field videoField = (Field)videoControl.initDisplayMode( VideoControl.USE_GUI_PRIMITIVE, "net.rim.device.api.ui.Field" );
add(videoField);
player.addPlayerListener(new PlayerHandler());
videoControl.setDisplayFullScreen(true);
//videoControl.setVisible(true);
VolumeControl volume = (VolumeControl) player.getControl("VolumeControl");
volume.setLevel(30);
player.start();
The exact text is
"Application Permissions"
The appllication First Aid is attempting to reset the security time.
Then there is a check box for Do not ask again
And two buttons for Allow and Deny
Thanks ,
Janaka
01-17-2012 12:55 PM
Has the 6.0 BlackBerry Smartphone you are testing with every been configured on a BlackBerry Enterprise Server? Refer to points 1 and 2 in this article.
01-19-2012 11:49 AM
10-07-2012 06:01 AM
10-09-2012 03:22 AM - edited 10-09-2012 03:23 AM