Slid3r
unread,Jun 14, 2012, 5:04:57 AM6/14/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Tasker
Hello! I am trying to view evernote's specific list of notes made with
the search through tasker but i haven't succeeded yet.
I tried two ways:
1) In evernote there is a possibility to create a shortcut with the
specific search results. But when i try to launch it through
AutoShortuct plugin, it only allows me to make shortcut on a specific
note. So this thing doesn't work properly.
2) I tried to make it through intents, described in their API, but it
also had no results. Here is their description about intent:
com.evernote.action.SEARCH_NOTES - The SEARCH_NOTES action can be used
to run a query within Evernote for Android. You specify the query
string using the QUERY.
When invoked, Evernote for Android will display the Evernote note list
UI containing a list of notes that match the query that you passed. If
you do not pass a query, all notes will be shown.
The function "doSearch" in our Android sample code demonstrates the
use of this intent.
This intent is available in Evernote for Android 2.5.1 and later.
This is a part of sample code sending this intent:
String query = "tag:test";
Intent intent = new Intent();
intent.setAction(ACTION_SEARCH_NOTES);
intent.putExtra(SearchManager.QUERY, query);
So the question is: how should i make the right intent using tasker?
Thank you.