Pages

Monday, April 14, 2014

Android Apps : Flightradar24 Pro



Android Apps : Flightradar24 Pro
Turn your phone or tablet into an air traffic radar and see planes around the world move in real-time on a detailed map. Or point your Android device at a plane in the sky to find out where it’s going and more. Discover today why millions are already using Flightradar24.

Requires Android 2.2 and up
Download  Flightradar24 Pro

Android Apps : Endomondo Sports Tracker

Android  Apps : Endomondo Sports Tracker

Endomondo is one of the highest rated apps of its kind on Android and ideal for running, cycling, walking and any other distance-based activity.

Requires Android 2.2 and up
Download  Endomondo Sports Tracker

Android Apps : Beautiful Clock Widget Pro


Android Apps : Beautiful Clock Widget Pro

Beautiful Clock Widget is the most beautiful clock widget on Android home screen. It includes a collections of clock widget with optional weather and battery information
Features
☆ Fully customization (background colors, hand colors, text colors, etc)
☆ Different sizes (2x2, 4x2, 4x3) and resizable on some launchers (ex. Nova launcher)
☆ Over 45 themes (digial clock, analog clock, typography clock, animal, dual)
☆ Auto-update timezone/location
☆ Auto-update weather, battery information
☆ Lock screen widget (Jelly Bean 4.2)

Requires Android 2.2 and up
Download  Beautiful Clock Widget Pro

Android Apps : AccuWeather Platinum



The all new, ad free, AccuWeather Platinum is here. We listened to your feedback and created an app that is even more information and feature rich, and offers the same superior accuracy and great experience across all Android smart phones and tablets. We worked closely with Google to include everything you want from AccuWeather and the Android platform.

Requires Android 2.2 and up
Download   
AccuWeather Platinum

ANdroid Apps : Beautiful Widgets Pro


Beautiful Widgets Pro

Beautiful Widgets was the first application to achieve one million paid downloads. It was listed as “Google Editor’s choice” for more than one year and has been listed as one of the top 10 paid applications in the Google Play Store for more than 4 years now.

Just like 4 million other users, take advantage of comprehensive weather forecast information and the HD version of your other favorite widgets, compatible with phones and tablets.


Principal functionalities:
- Complete clocks (time, date, alarm, etc.)
- Multiple widgets (6x4, 6x1 and 6x2 only for tablets)
- Download as many themes as you like
- Main weather forecast information for your current location and all preferred cities
- Weather notifications from around the world, unlock animations or interactive screensavers (DayDream)
- Interactive weather wallpaper

Requires Android 2.2 and up
Download
    Beautiful Widgets Pro

Android Game : War Card Game: CardWAR!


Android Game : War Card Game: CardWAR!

Designed for tablet PC's!
Play against a friend or the Computer in a grid version of the classic war card game.
The game starts with one neutral card in the center and players alternate turns taking cards with a higher card. Multiple sides of one card can switch card borders of multiple opponent cards!
Have Fun!


Requires Android 1.5 and up
Download    CardWAR!

Camera ZOOM FX

Camera ZOOM FX

POWERFUL CAMERA:
● Optical / digital zoom (pinch to zoom up to 6x)
● Fastest camera on Android - fast action shot up to 20 shots per second
● Best Photo Mode! take up to 50 shots in burst mode, and let Camera ZOOM FX decide the best, or choose for yourself!
● Front facing camera - perfect for selfies
● Customization of ALL hardware buttons
- e.g. volume buttons to control zoom, trackball to snap shot...
● Live previews of some effects, e.g. frames, buddies
● Silent camera (if device supports)
● Tweak hardware options: autofocus, whitebalance, nightshot...
● Settings for iso, focus metering, brightness, exposure, contrast, saturation, sharpness (based on device)
● Upload photo to Facebook, Twitter, Flickr, WhatsApp, etc.
● Flash (if avail)
● Customizable grid overlays
● Horizon level indicator
● NEW!! Live Wallpaper - now "Photo FX Live Wallpaper" app


Requires Android 1.6 and up
Download   Camera ZOOM FX

Wednesday, April 9, 2014

How To Make Direct Download Links For File On Google Drive

Step 1 : Login your google drive , right click on the file you wanna to share . Move move your mouse over "Share..." and then click on the "Share.." .


Step 2 : On the  popup window  , click the "Change..." link beside the part that
says "Who has access" to change permission to view file .


Step 3 :  Set it to "Public on the web" or "Anyone with the link" and click to save button .


Step 4 : Now copy  your sharing URL , paste in something like note pad or address bar on browser . Copy file Id and paste in this link : https://drive.google.com/uc?export=download&id=FileID








 Other MeThods to Direct Download Links For File On Google Drive 

I :  Use Web Link Generator

Copy Sharing link 




And 

II : Use tiny Link Generator 

Monday, April 7, 2014

Tutorial : How to Disable Right Click on Blogspot - Blogger


- Log in to Blogger Dashboard --> Layout --> Page Elements .
- Click on '
Add a Gadget' on the sidebar.
- Select '
HTML/Javascript' and add the code given below and click save.

<script language="JavaScript">
<!--

//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->
</script>