Add field to Bookmarklet
rayray14 says:
Hey guys,
I'm currently using the following FF bookmarklet:
#(function(){h='www.rememberthemilk.com';p='/services/ext/addtask.rtm';if(window.getSelection){d=window.getSelection();}else if(document.getSelection){d=document.getSelection();}else if(document.selection){d=document.selection.createRange().text;};cp='http://'+h+p+'?d='+encodeURIComponent(d)+'&t='+encodeURIComponent(document.title);w=window.open(cp,'addwindow','status=no,toolbar=no,width=475,height=260,resizable=yes');setTimeout(function(){w.focus();}, 500);})();
Is there any way I can automatically add the URL of the page in the proper URL field automatically?
After creating a task, I need to manually copy the URL, log in to RTM and add it myself...
Thanks!
I'm currently using the following FF bookmarklet:
#(function(){h='www.rememberthemilk.com';p='/services/ext/addtask.rtm';if(window.getSelection){d=window.getSelection();}else if(document.getSelection){d=document.getSelection();}else if(document.selection){d=document.selection.createRange().text;};cp='http://'+h+p+'?d='+encodeURIComponent(d)+'&t='+encodeURIComponent(document.title);w=window.open(cp,'addwindow','status=no,toolbar=no,width=475,height=260,resizable=yes');setTimeout(function(){w.focus();}, 500);})();
Is there any way I can automatically add the URL of the page in the proper URL field automatically?
After creating a task, I need to manually copy the URL, log in to RTM and add it myself...
Thanks!
If you use the mobile bookmarklet you can add all the fields - look here.
(closed account) says:
I'm currently using this for a one-click move of a URL into my task list:
#popw=window.open('http://m.rememberthemilk.com/add?name=' + escape(%22Check out \%22%22) + escape(document.title) + escape(%22\%22.%22) + '&list=2677322&priority=&repeat=&estimate&tags=' + escape(%22@online%22) + '&url=' + escape(location.href) + '&add=' + escape('\%22Add Form\%22'), 'taskForm','scrollbars=yes,width=680,height=510,top=175,left=75,status=no,resizable=yes');if (!document.all) T = setTimeout('popw.focus()',50);void(0);
#popw=window.open('http://m.rememberthemilk.com/add?name=' + escape(%22Check out \%22%22) + escape(document.title) + escape(%22\%22.%22) + '&list=2677322&priority=&repeat=&estimate&tags=' + escape(%22@online%22) + '&url=' + escape(location.href) + '&add=' + escape('\%22Add Form\%22'), 'taskForm','scrollbars=yes,width=680,height=510,top=175,left=75,status=no,resizable=yes');if (!document.all) T = setTimeout('popw.focus()',50);void(0);
rayray14 says:
Thank you, that's exactly what I was looking for!