Pages

Showing posts with label Tutorials. Show all posts
Showing posts with label Tutorials. Show all posts

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>