Mac OS X Services menu integration
aleksi says:
I would like to have integration with Mac OS X Services menu. Select text in any application, call a service to add a task to default list.
jsejcksn says:
I hacked together a way to do this via the mobile site, and this only works with text from your browser (it's a bookmarklet).
1. Sign in into https://m.rememberthemilk.com/ (and check remember info).
2. Save any old bookmark in your bookmarks bar and then change the name and replace the address with the following text:
javascript:(function(){var txt='';if(window.getSelection){txt=window.getSelection();} else if(document.getSelection){txt=document.getSelection();} else if(document.selection){txt=document.selection.createRange().text;} else return;window.open('https://m.rememberthemilk.com/add?name='+txt);})();
3. Select something on a web page.
4. Click the bookmarklet you just created.
Good luck!
Inspiration for bookmark from
http://rlieving.blogspot.com/2010/03/bookmarklet-add-url-to-remember-milk.html
and
http://www.codetoad.com/javascript_get_selected_text.asp
1. Sign in into https://m.rememberthemilk.com/ (and check remember info).
2. Save any old bookmark in your bookmarks bar and then change the name and replace the address with the following text:
javascript:(function(){var txt='';if(window.getSelection){txt=window.getSelection();} else if(document.getSelection){txt=document.getSelection();} else if(document.selection){txt=document.selection.createRange().text;} else return;window.open('https://m.rememberthemilk.com/add?name='+txt);})();
3. Select something on a web page.
4. Click the bookmarklet you just created.
Good luck!
Inspiration for bookmark from
http://rlieving.blogspot.com/2010/03/bookmarklet-add-url-to-remember-milk.html
and
http://www.codetoad.com/javascript_get_selected_text.asp
Log in
to post a reply.