FeedLounge to Tasks Pro™/Tasks
These scripts will take the currently selected item in FeedLounge and post it to Tasks Pro™ or Tasks.
Create New Task
- Greasemonkey Version (Firefox only)
- Bookmarklet Version: FeedLounge to Tasks (New Task)
To install this bookmarklet, click on the link and drag it to the links bar in your browser.
Append to Existing Task
- Greasemonkey Version (Firefox only)
- Bookmarklet Version: (Create a bookmark and copy this code into the URL field for your bookmark - couldn't get the link to display properly in the browser)
javascript:var dataNode = false; if (document.getElementById('fl_items_river').style.visibility == 'visible') { for (var i = 0; i < document.getElementById('fl_river').childNodes.length; i++) { if (document.getElementById('fl_river').childNodes[i].className.indexOf('selected') != -1) { var dataNode = document.getElementById('fl_river').childNodes[i].childNodes[1].firstChild.firstChild; } } } else { var dataNode = document.getElementById('fl_viewpane_header').firstChild.firstChild.firstChild; } if (dataNode) { void(window.open('http://www.example.com/tasks/index.php?screen=edit&id=123&task_notes_append='+encodeURIComponent('\t<li><a href=\"'+dataNode.getAttribute('href')+'\" rel=\"external\">'+dataNode.innerHTML+'</a></li>'))); }
Last modified: 2006-01-16 21:31:57 GMT