About

Blogger Widgets

Thursday 1 August 2013

MICRO SD Memory Card Password Remover



MICRO SD Memory Card Password Recovery / removing 4 method. 
For Symbian Mobiles: 
1. Download and Install FExplore
 2. Insert your card into your phone, without accessing it through the phone 
3. Run FExplorer and Open the path C:\system 
4. Find the file called mmcstore, and rename it mmcstore.txt
 5. Copy that file (mmcstore.txt) to your PC and open it in Notepad
 6. Your password will be located within that file. ---------------
 For Symbian Mobiles: 5th edition,symbian belle
1. Download and Instal X ploreX-Plore 
2. Now open the X-Plore and press Zero(0) then check you have marked the "Show the System Files". 
3. After you done the above step now go to the file: C:/Sys/Data/Mmcstore 
4. If you found the above path then press the option "3" to set the Hex-Viewer. 
5. Now look the third column you can see the code like ! TMSD02G (c ??”? x???3?3?3?3?3) Now see the characters between '?' because it is your password 33333. 
6. You mayn't able to access the path file: C:/Sys/Data/Mmcstore if you don't set the password for the memory card.
  For Micro SD: 128 Mb,2 Gb,4 Gb,8 Gb ,32 GB,64 Gb and
128 Mb
Put the card in any E series mobile or N95 etc and format it. It will not ask for a password. ------------------ 1. Go to file manager on your mobile 
2. In Settings choose system folders,
 3. In the System folder, find a file called mmcstore
 4. Send the file to your PC using IR/Bluetooth
 5. Open the file in Notepad 
6. The password you need for your memory card is located within that file

Monday 29 July 2013

Free Premium Downloading 4shared.com




Learn How Free Premium Downloading From 4Shared.com
1:   Open The Link  www.4server.com
2: Copy the 4 shared  link 
3:  Paste in the below arrows and then Click Generate link button


4:  Downloading start 

5:  Sometimes,we face problem during of  downloading.
But we solved this click on file name the downloading start .
6:  Prayer for me.
7:Thanks



Saturday 27 July 2013

Pro Cycling Manegar 2013 Pc Game Free Download Full Version

CYCLING AT ITS PEAK WITH PRO CYCLING MANAGER! Become manager of one of 80 professional teams! Plunge into a 2013 season full of new features, and participate in over 180 competitions all around the world, including the spectacular 100th edition of the Tour de France.
 Manage all the aspects of a pro team’s life: recruitment, riders’ management, contracts, equipment, finances, registration to competitions, new management of sponsors and objectives… and demonstrate all your tactical skills during the real time races! Richer, more detailed scenery and landscapes, HD riders and new animations reflecting their current shape. never before the races will have looked this realistic and immersive. The game now features a better and more realistic AI, a new flexible user interface, as well as a new management system of satisfaction and shape of the riders. In multiplayer, create custom competition with your friends, or face players from all around the world in a fascinating persistent online mode: collect rider cards to create your dream team, and shine in the official rankings! 









Start Installation Game
 Unpack the release 
Burn or mount the image 
Install the game 
Install the patch
 "Setup-Patch-1.0.2.0-From-1.0.0.0.exe"
 Copy the crack "PCM-Protection.dll"
 Run the game Copy the Serial Number (see inside the NFO file) to the activation window and click on "Activate Manually" Copy the Activation Key (see inside the NFO file) to the activation window and click on "Next" Use the player code (see inside the NFO file) to create a new profile in the game.












Tuesday 23 July 2013

How to Add a Smooth Scrolling "Back To Top" Button in Blogger


Finally yet another exciting trick to create a smooth scroll to top button for BlogSpot blogs. We designed and released many buttons and tutorials on back to top/bottom buttons but they were all static and had no fade out effects and smooth scroll effects. Luckily we just discovered a cool jquery script that does all the work. A back to top button is crucial for a blog or site because visitors enjoy easy site navigation so this button will provide them with this ease. We have kept the installation process a one step process. Please see this button in action towards the bottom right corner of this blog.The best thing about this button is that it appears only when the user scrolls down the page and disappears as he scrolls up.



Add Scroll to Top button to Blog
1.Go To Blogger > Layout
2. Choose  or add a Gadget  HTML/JavaScript widget
3. Paste the following code inside it

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" >
/*********************************************** 
* Scroll To Top Control script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) 
* Modified by www.MyBloggerTricks.com 
* This notice MUST stay intact for legal use 
* Visit Project Page at http://www.dynamicdrive.com for full source code 
***********************************************/
var scrolltotop={ 
    //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control 
    //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top). 
    setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]}, 
    controlHTML: '<img src="IMAGE LINK" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol" 
    controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ bottom of window corner 
    anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
    state: {isvisible:false, shouldvisible:false},
    scrollup:function(){ 
        if (!this.cssfixedsupport) //if control is positioned using JavaScript 
            this.$control.css({opacity:0}) //hide control immediately after clicking it 
        var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto) 
        if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists 
            dest=jQuery('#'+dest).offset().top 
        else 
            dest=0 
        this.$body.animate({scrollTop: dest}, this.setting.scrollduration); 
    },
    keepfixed:function(){ 
        var $window=jQuery(window) 
        var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx 
        var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety 
        this.$control.css({left:controlx+'px', top:controly+'px'}) 
    },
    togglecontrol:function(){ 
        var scrolltop=jQuery(window).scrollTop() 
        if (!this.cssfixedsupport) 
            this.keepfixed() 
        this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false 
        if (this.state.shouldvisible && !this.state.isvisible){ 
            this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0]) 
            this.state.isvisible=true 
        } 
        else if (this.state.shouldvisible==false && this.state.isvisible){ 
            this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1]) 
            this.state.isvisible=false 
        } 
    }, 
    
    init:function(){ 
        jQuery(document).ready(function($){ 
            var mainobj=scrolltotop 
            var iebrws=document.all 
            mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode 
            mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body') 
            mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>') 
                .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}) 
                .attr({title:'Scroll Back to Top'}) 
                .click(function(){mainobj.scrollup(); return false}) 
                .appendTo('body') 
            if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text 
                mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text 
            mainobj.togglecontrol() 
            $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){ 
                mainobj.scrollup() 
                return false 
            }) 
            $(window).bind('scroll resize', function(e){ 
                mainobj.togglecontrol() 
            }) 
        }) 
    } 
}
scrolltotop.init()
</script>


Replace IMAGE LINK with the image link of your back to top button. You can get several beautiful free buttons from our library. Download Back to top/bottom buttons. If you want a free image link then right click the buttons below and select "Copy image location" to fetch their links:





4. Save the widget and drag it near the footer or any bottom position.
 5. View your blog to see the magic.




Sunday 21 July 2013

Internet Download Manegar 6.17 Build 5 Final Free Download With Patch

Internet Download Manager (IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. Simple graphic user interface makes IDM user friendly and easy to use.Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download managers and accelerators Internet Download Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance. Internet Download Manager supports proxy servers, ftp and http protocols, firewalls, redirects, cookies, authorization, MP3 audio and MPEG video content processing. IDM integrates seamlessly into Microsoft Internet Explorer, Netscape, MSN Explorer, AOL, Opera, Mozilla, Mozilla Firefox, Mozilla Firebird, Avant Browser, MyIE2, and all other popular browsers to automatically handle your downloads. You can also drag and drop files, or use Internet Download Manager from command line. Internet Download Manager can dial your modem at the set time, download the files you want, then hang up or even shut down your computer when it's done. Other features include multilingual support, zip preview, download categories, scheduler pro, sounds on different events, HTTPS support, queue processor, html help and tutorial, enhanced virus protection on download completion, progressive downloading with quotas (useful for connections that use some kind of fair access policy or FAP like Direcway, Direct PC, Hughes, etc.), built-in download accelerator, and many others. Version 6.16 adds Windows 8 compatibility, adds IDM download panel for web-players that can be used to download flash videos from sites like YouTube, MySpaceTV, and Google Videos. It also features complete Windows 7 and Vista support, YouTube grabber, redeveloped scheduler, and MMS protocol support. The new version also adds improved integration for IE 10 and IE based browsers, redesigned and enhanced download engine, the unique advanced integration into all latest browsers, improved toolbar, and a wealth of other improvements and new features.




 

Links

Powered by Blogger.