<% has_contexts = !current_user.contexts.empty? -%>

Integrations

Tracks can be integrated with a number of other tools... whatever it takes to help you get things done! This page has information on setting up some of these. Not all of these are applicable to all platforms, and some require more technical knowledge than others. See also <%= link_to "developer documentation for Tracks' REST API", url_for(:action => 'rest_api') %>.

Contents:

  1. Add an Action with Applescript
  2. Add an Action with Applescript based on the currently selected Email in Mail.app
  3. Add Actions with Quicksilver and Applescript
  4. Automatically Email Yourself Upcoming Actions

Do you have one of your own to add? Tell us about it in our Tips and Tricks forum and we may include it on this page in a future versions of Tracks.

Integrated email/SMS receiver

If Tracks is running on the same server as your mail server, you can use the integrated mail handler built into tracks. Steps to set it up:

You can also use the Rich Todo API to send in tasks like "do laundry @ Home" or "Call Bill > project X". The subject of the message will fill description, context, and project, while the body will populate the tasks's note.

Add an Action with Applescript

This is a simple script that pops up a dialog box asking for a description, and then sends that to Tracks with a hard-coded context.

<% if has_contexts -%>
  1. Choose the context you want to add actions to: <%= observe_field "applescript1-contexts", :update => "applescript1", :with => 'context_id', :url => { :controller => "integrations", :action => "get_applescript1" }, :before => "$('applescript1').startWaiting()", :complete => "$('applescript1').stopWaiting()" %>
  2. Copy the Applescript below to the clipboard.
  3. Open Script Editor and paste the script into a new document.
  4. Compile and save the script. Run it as necessary.
<% else %>

You do not have any context yet. The script will be available after you add your first context

<% end %>

Add an Action with Applescript based on the currently selected Email in Mail.app

This script takes the sender and subject of the selected email(s) in Mail and creates a new action for each one, with the description, "Email [sender] about [subject]". The description gets truncated to 100 characters (the validation limit for the field) if it is longer than that. It also has Growl notifications if you have Growl installed.

<% if has_contexts -%>
  1. Choose the context you want to add actions to: <%= observe_field "applescript2-contexts", :update => "applescript2", :with => 'context_id', :url => { :controller => "integrations", :action => "get_applescript2" }, :before => "$('applescript2').startWaiting()", :complete => "$('applescript2').stopWaiting()" %>
  2. Copy the Applescript below to the clipboard.
  3. Open Script Editor and paste the script into a new document.
  4. Compile and save the script to the ~/Library/Scriipts/Mail Scripts directory.
  5. For more information on using AppleScript with Mail.app, see this overview.
<% else %>

You do not have any context yet. The script will be available after you add your first context

<% end %>

Add Actions with Quicksilver and Applescript

This integration will allow you to add actions to Tracks via Quicksilver.

<% if has_contexts -%>
  1. Choose the context you want to add actions to: <%= observe_field "quicksilver-contexts", :update => "quicksilver", :with => 'context_id', :url => { :controller => "integrations", :action => "get_quicksilver_applescript" }, :before => "$('quicksilver').startWaiting()", :complete => "$('quicksilver').stopWaiting()" %>
  2. Copy the Applescript below to the clipboard.
  3. Open Script Editor and paste the script into a new document.
  4. Compile and save the script as "Add to Tracks.scpt" in ~/Library/Application Support/Quicksilver/Actions/ (you may need to create the Actions directory)
  5. Restart Quicksilver
  6. Activate Quicksilver (Ctrl+Space by default)
  7. Press "." to put quicksilver into text mode
  8. Type the description of the next action you want to add
  9. Press tab to switch to the action pane.
  10. By typing or scrolling, choose the "Add to Tracks" action.
<% else %>

You do not have any context yet. The script will be available after you add your first context

<% end %>

Automatically Email Yourself Upcoming Actions

If you enter the following entry to your crontab, you will receive email every day around 5 AM with a list of the upcoming actions which are due within the next 7 days.

You can of course use other text <%= link_to 'feeds provided by Tracks', feeds_path %> -- why not email a list of next actions in a particular project to a group of colleagues who are working on the project?