Pages

Search

Friday, January 20, 2012

Google Sky Map for BlackBerry Playbook

Hello,

       Now you use the Google Sky Map into BlackBerry Playbook.

Google Sky Map - Download

Note :- You need the Updated OS 2.0 into your Playbook.



Monday, January 9, 2012

Browser Close Event - Javascript

Below is the sample html + java script source which helps to understand regarding how to fire the browser close event.
Beside below way of handling there is an another way. We can use use the body unload event and then in the unload event we will check the cursor position if it is near to window close button which mean user has tried to click on close button.
But this will not work if user says Alt+F4 or closes from task bar directly.

Scenario, like say if app should update database as logged out when user closes the browser.
This can be handled by calling a web page using XmlHttp request in the below "WindowClose" function.


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Test" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" language="javascript">

function WindowClose(event) {
event = event || window.event;

var confirmClose = "This is to fire the close event of browser";

if (event) {
event.returnValue = confirmClose;
}
return confirmClose;
}
window.onbeforeunload = WindowClose;
</script>
</head>
<body>
<form id="form1" runat="server">
<div>

</div>
</form>
</body>
</html>

After running the above ones and while trying to close the browser, dialog appears as per below screen shot.

The same applies for Firefox and IE Browser

Saturday, January 7, 2012

LinkedIn App for BlackBerry Playbook

Hello,

        Every buddy,Now you use as a App of LinkedIn into BlackBerry Playbook.So simple to download this bar file for Apps.

     Linked In Apps

 Enjoy it.

Friday, January 6, 2012

How the install .apk file into BlackBerry Playbook?

Hello,

    Every body today i got one solution about install .apk file into BlackBerry Playbook .Here i given you some step so follow it .


   Right now this step for beta Os 2.0.

Step : 1 -  First Register your playbook devices for Os 2.0 beta into below Link

             https://bdsc.webapps.blackberry.com/android/beta/bbtablet20/register/

     Note :- Make sure you upgrade your Playbook Os into 24 hr another you register Second time.

Step : 2 - Now you repackaging apk file into bar file.So follow the below link.In there some instruction given you               so follow those instruction.

              https://bdsc.webapps.blackberry.com/android/tool/

Step : 3 - This all step follow then install Android SDK and also install blackberry Playbook SDK.

Step : 4 - After install all you connect your device to Computer and then on the development mode from the devices at that time you got one IP so this ip use into install .bar file into Devices.

Step : 5 - Check this URL for install app to Playbook.

              http://supportforums.blackberry.com/t5/Tablet-OS-SDK-for-Adobe-AIR/How-the-install-Application-in-the-        BlackBerry-Playbook-Devices/m-p/1042923