About

Blogger Widgets

Friday 23 August 2013

The Smurfs 2 (2013) Online Movie in Hindi Free Download



The evil wizard Gargamel creates a couple of mischievous Smurf-like creatures called the Naughties that he hopes will let him harness the all-powerful, magical Smurf-essence. But when he discovers that only a real Smurf can give him what he wants, and only a secret spell that Smurfette knows can turn the Naughties into real Smurfs, Gargamel kidnaps Smurfette and brings her to Paris, where he has been winning the adoration of millions as the world¹s greatest sorcerer. It's up to Papa, Clumsy, Grouchy, and Vanity to return to our world, reunite with their human friends Patrick and Grace Winslow, and rescue her! Will Smurfette, who has always felt different from the other Smurfs, find a new connection with the Naughties Vexy and Hackus or will the Smurfs convince her that their love for her is True Blue? Written by Columbia Pictures










Jurassic Shark 2012 Hindi Dubbed Online and Download

Info:
Don’t you just love b-movies? Well, we have a mixture here, first up from director Brett Kelly is his upcoming b-movie feature Jurassic Shark, which if it’s anything like the poster, we are in for an awesome time. Courtesy of the guys over at UndeadBackbrain we have the first information and the poster.
At this time, Jurassic Shark is currently in pre-production and the cast hasn’t been finalized just yet. The story was written by David A. Lloyd and Trevor Payer.
Jurassic Shark is “the story of two groups of people — one, a group of students, the other, a group of criminals — who are shipwrecked on an island by a giant shark. The island was once used for illegal drilling, and the oil company inadvertantly released the giant shark from its slumber.”
Jurassic Shark & My Fair Zombie First LookNext up from director Brett Kelly is something that just sounds badass only. Here we have My Fair Zombie which is a horror/comedy and I believe in parts a musical. The film is said to be based on George Bernard Shaw’s PYGMALION.
The story follows a professor of phonetics who attempts to teach a zombie woman to be a proper English Lady.
The film is said to begin shooting this October. However, they are currently holding auditions which are to be held on August 20th and the 21st. We are being told that English accents are mandatory for the film and is open to anyone above the age of 17.









Monday 19 August 2013

Summer Slam 2013 Online and Free Download

Multi-Color Link Hover Effect For Blog


You must have observed how my hyperlinks change color on mouse hover. Normally on mouse hover only a single color change is seen but thanks to Dynamic Drive we can now easily change the color of our links to several colors. I have modified the code a bit for simplicity. This tutorial is really simple to follow and uses a JavaScript which we will save inside Blogger so there will be no external linking at all. Let’s start now,



To add this Flashing Link effect to your blogs do the following,

1:Go To Layout > Edit HTML
Search For
And just above (up)paste the code below(down)



<script type='text/javascript'> //<![CDATA[ var rate = 20; if (document.getElementById) window.onerror=new Function("return true") var objActive; // The object which event occured in var act = 0; // Flag during the action var elmH = 0; // Hue var elmS = 128; // Saturation var elmV = 255; // Value var clrOrg; // A color before the change var TimerID; // Timer ID if (document.all) { document.onmouseover = doRainbowAnchor; document.onmouseout = stopRainbowAnchor; } else if (document.getElementById) { document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT); document.onmouseover = Mozilla_doRainbowAnchor; document.onmouseout = Mozilla_stopRainbowAnchor; } function doRainbow(obj) { if (act == 0) { act = 1; if (obj) objActive = obj; else objActive = event.srcElement; clrOrg = objActive.style.color; TimerID = setInterval("ChangeColor()",100); } } function stopRainbow() { if (act) { objActive.style.color = clrOrg; clearInterval(TimerID); act = 0; } } function doRainbowAnchor() { if (act == 0) { var obj = event.srcElement; while (obj.tagName != 'A' && obj.tagName != 'BODY') { obj = obj.parentElement; if (obj.tagName == 'A' || obj.tagName == 'BODY') break; } if (obj.tagName == 'A' && obj.href != '') { objActive = obj; act = 1; clrOrg = objActive.style.color; TimerID = setInterval("ChangeColor()",100); } } } function stopRainbowAnchor() { if (act) { if (objActive.tagName == 'A') { objActive.style.color = clrOrg; clearInterval(TimerID); act = 0; } } } function Mozilla_doRainbowAnchor(e) { if (act == 0) { obj = e.target; while (obj.nodeName != 'A' && obj.nodeName != 'BODY') { obj = obj.parentNode; if (obj.nodeName == 'A' || obj.nodeName == 'BODY') break; } if (obj.nodeName == 'A' && obj.href != '') { objActive = obj; act = 1; clrOrg = obj.style.color; TimerID = setInterval("ChangeColor()",100); } } } function Mozilla_stopRainbowAnchor(e) { if (act) { if (objActive.nodeName == 'A') { objActive.style.color = clrOrg; clearInterval(TimerID); act = 0; } } } function ChangeColor() { objActive.style.color = makeColor(); } function makeColor() { // Don't you think Color Gamut to look like Rainbow? // HSVtoRGB if (elmS == 0) { elmR = elmV; elmG = elmV; elmB = elmV; } else { t1 = elmV; t2 = (255 - elmS) * elmV / 255; t3 = elmH % 60; t3 = (t1 - t2) * t3 / 60; if (elmH < 60) { elmR = t1; elmB = t2; elmG = t2 + t3; } else if (elmH < 120) { elmG = t1; elmB = t2; elmR = t1 - t3; } else if (elmH < 180) { elmG = t1; elmR = t2; elmB = t2 + t3; } else if (elmH < 240) { elmB = t1; elmR = t2; elmG = t1 - t3; } else if (elmH < 300) { elmB = t1; elmG = t2; elmR = t2 + t3; } else if (elmH < 360) { elmR = t1; elmG = t2; elmB = t1 - t3; } else { elmR = 0; elmG = 0; elmB = 0; } } elmR = Math.floor(elmR).toString(16); elmG = Math.floor(elmG).toString(16); elmB = Math.floor(elmB).toString(16); if (elmR.length == 1) elmR = "0" + elmR; if (elmG.length == 1) elmG = "0" + elmG; if (elmB.length == 1) elmB = "0" + elmB; elmH = elmH + rate; if (elmH >= 360) elmH = 0; return '#' + elmR + elmG + elmB; } //]]> </script>

You can change the value of var rate = 20. This controls the speed with which links change color.

That’s All!

Preview Your Templates To see The New Change.
If You have any problem to do this tell us.

Saturday 17 August 2013

How can I hide my friends list in Facebook?

 If you have timeline (which I assume you have):
1:Go to your profile
 2:Click on your friends list
3:Click to Edit
4:In the popup, click on the icon from the right—in this case the globe, but you might have a different icon, like friends

5:Select Only me (or whatever other option you want)


For More Tricks Visit :  www.haidersafdar.blogspot.com
www.haidersafdar.tk
www.fb.com\haidersafdar110

 

Links

Powered by Blogger.