<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://mindjetlabs.com/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>AppleScripts</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/default.aspx</link><description>These are scripts for automating tasks for MindManager 6 Mac.</description><dc:language>en</dc:language><generator>CommunityServer 2.1 (Build: 60809.935)</generator><item><title>Main Topics to iCal Todos</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry731.aspx</link><pubDate>Tue, 06 Feb 2007 20:50:13 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:731</guid><dc:creator>jeffrey.w.lynch</dc:creator><slash:comments>0</slash:comments><description>&lt;div&gt;This AppleScript sample demonstrates how to walk the contents of a Mindjet MindManager map and add topics from the map as iCal todos. It only adds todos for topics that have a due date. This version of the script uses the main topics for iCal calendars (and creates it if it doesn&amp;#39;t exist) and then adds all subtopics with end dates as todo items. . The calendar remembers the unique id of the topic in the &amp;quot;description&amp;quot; field so that it can keep track of things. This is mostly used to figure out if a topic has been deleted from the map so that we can remove the corresponding todo item.&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;See the first in this series &amp;quot;MapToiCal&amp;quot; for more details.&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;Enjoy!&lt;/div&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/731/download.aspx" length="5005" type="application/octet-stream" /></item><item><title>Map to iCal Todo</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry730.aspx</link><pubDate>Tue, 06 Feb 2007 20:14:00 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:730</guid><dc:creator>jeffrey.w.lynch</dc:creator><slash:comments>0</slash:comments><description>Please see the description of &amp;quot;Map to iCal&amp;quot; for more information.&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;This script just changes from using iCal &amp;quot;events&amp;quot; to using iCal &amp;quot;todos&amp;quot;.&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;Enjoy!&lt;/div&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/730/download.aspx" length="5077" type="application/octet-stream" /></item><item><title>Map to iCal</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry728.aspx</link><pubDate>Tue, 06 Feb 2007 18:43:36 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:728</guid><dc:creator>jeffrey.w.lynch</dc:creator><slash:comments>0</slash:comments><description>&lt;div&gt;This AppleScript walks all the topics in the front-most MindManager map looking for topics with start and/or end dates (i.e. &amp;quot;task topics&amp;quot;). Using the central topic text as the iCal calendar name, one new event will be created for each task topic. Subsequent executions of the script will update the iCal events with new/changed information from the map. &lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;Notes:&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;- This is a ONE WAY operation currently. It takes information from MindManager and puts it into iCal. The inverse is left as an exercise for the user!&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;- if the script is run on two or more maps with the same central topic name, then only the data from the last map will be in the calendar. &lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;- If a task topic is removed from the map, the corresponding event will be removed from iCal. &lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;- If a topic has both a start date and an end date, the iCal event will be tagged as &amp;quot;all day&amp;quot;. This gives you the nice bars in the calendar view.&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;- If a topic has only an end date, it will receive a start date of &amp;quot;today&amp;quot;.&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;- If during an update either the start date or end date are removed, the start or end date will be updated with &amp;quot;today&amp;quot;.&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;- The topic unique ID is stored in the &amp;quot;location&amp;quot; field of the iCal event. If this is changed or deleted, the event will lose the connection to the map and will be removed the next time the script is run.&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;To use the script:&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;1) Launch MindManager 6 Mac and open a map that has start or end dates on some of the topics.&lt;/div&gt;&lt;div&gt;2) Open &amp;quot;MapToiCal.applescript&amp;quot; in the Script Editor.&lt;/div&gt;&lt;div&gt;3) Run!&lt;/div&gt;&lt;div&gt;&lt;br class="khtml-block-placeholder" /&gt;&lt;/div&gt;&lt;div&gt;Suggestion:&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre;"&gt;	&lt;/span&gt;Save the script as an application and put it in your Dock or script menu for easy access!&lt;/div&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/728/download.aspx" length="5312" type="application/octet-stream" /></item><item><title>Firefox to MindManager 6 Mac AppleScript</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry486.aspx</link><pubDate>Thu, 07 Dec 2006 19:59:30 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:486</guid><dc:creator>brookstein</dc:creator><slash:comments>4</slash:comments><description>This is a handy AppleScript created by a member of our Mac Development Team, Scott Thompson, that sends the name of the page you are currently visiting in Firefox to MindManager.&amp;nbsp; It adds the name of the page as a subtopic and creates a hyperlink back to it.&amp;nbsp; It&amp;#39;s great for doing research or keeping track of your favorite sites in a map.&lt;br /&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/486/download.aspx" length="4986" type="application/octet-stream" /></item><item><title>Spotlight to Map</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry60.aspx</link><pubDate>Thu, 24 Aug 2006 20:42:08 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:60</guid><dc:creator>Michael S. Scherotter</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;The Spotlight To Map sample script is an example of an &lt;A href="http://www.apple.com/applescript/studio/"&gt;AppleScript Studio application&lt;/A&gt;. The objective of the sample is to demonstrate how to capture information in MindManager through AppleScript. This sample is packaged as a zip archive which contains the sample in both source code form and as a built executable.&lt;/P&gt;
&lt;P&gt;The SpotlightToMap application allows you to search the contents of your hard drive for a word or phrase, and collects the results of that search into a map with the&amp;nbsp; query results sorted into categories within a map. The application relies on the Mac OS X &lt;A href="http://www.apple.com/macosx/features/spotlight/"&gt;Spotlight&lt;/A&gt; search engine to perform the query.&lt;/P&gt;
&lt;P&gt;To run the script, you can simply double click the SpotlightToMap application. The computer will put up a search window into which you can enter the word or phrase that you would like to search for. When you click the "Search" button, the application will begin a series of Spotlight searches and send the results to MindManager.&lt;/P&gt;
&lt;P&gt;In MindManager, if you have a map open and a topic selected, the results of the &lt;A href="http://www.apple.com/macosx/features/spotlight/"&gt;Spotlight &lt;/A&gt;search will be added as subtopics of that selected topic. If you do not have a topic selected, the search results will be added as subtopics of the central topic of the frontmost map. If you do not have a map open in MindManger, then the SpotlightToMap application will create a new map in MindManager and add the search results as subtopics of the central topic.&lt;/P&gt;
&lt;P&gt;&lt;FONT size=4&gt;Requirements:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Mindjet MindManager 6 Mac&lt;/LI&gt;&lt;/UL&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/60/download.aspx" length="55159" type="application/x-zip-compressed" /></item><item><title>Mail to Map</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry59.aspx</link><pubDate>Thu, 24 Aug 2006 20:41:02 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:59</guid><dc:creator>Michael S. Scherotter</dc:creator><slash:comments>0</slash:comments><description>&lt;DIV&gt;
&lt;P&gt;Applescript that demonstrates how MindManager can represent information from other applications in new, and helpful ways.&lt;/P&gt;
&lt;P&gt;The script examines the mail messages in Apple's built-in e-mail client (often known simply as "Mail" or "Mail.app") and builds a map based on the contents of the currently selected mail messages in Mail.&amp;nbsp; It collects a list of the senders for each e-mail in the selection and creates a main topic for each unique sender.&amp;nbsp; For each e-mail sent by that person, it adds a subtopic that includes information about each e-mail that the person sent.&lt;/P&gt;
&lt;DIV&gt;To use the script, start Mail.app and select a group of messages you wish to collate.&amp;nbsp; Then run the sample script using the AppleScript Script Editor.&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id=source_IDALYJ1B&gt;&lt;FONT size=4&gt;Requirements:&lt;/FONT&gt;&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV&gt;Mindjet&amp;nbsp;MindManager 6 Mac&amp;nbsp;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/59/download.aspx" length="3485" type="text/plain" /></item><item><title>Map to Pages Outline</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry58.aspx</link><pubDate>Thu, 24 Aug 2006 20:40:07 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:58</guid><dc:creator>Michael S. Scherotter</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;AppleScript&amp;nbsp;that both convert the structure of a map into a linear outline form and save the resulting text into Apple's Pages word processor.&amp;nbsp; There are two versions of the script which each represent the structure of the outline, in Pages, in their own way.&amp;nbsp; &lt;B&gt;MapToPagesOutlineWithTabs&lt;/B&gt; will indent subtopics in the outline by prefixing the topic text with tab characters.&amp;nbsp; This make the outline structure of the resulting document very apparent.&amp;nbsp; &lt;B&gt;MapToPagesOutlineWithIndents&lt;/B&gt; uses Pages' own outline capabilities.&amp;nbsp; The script changes indent level of the paragraph corresponding to a topic to reflect its level in the outline's hierarchy.&lt;/P&gt;
&lt;P&gt;To use the scripts, simply ensure that the map whose structure you wish to outline is the front most document open in MindManager and run the script using the AppleScript Script Editor.&lt;/P&gt;
&lt;P&gt;For more information about Pages, please see &lt;A href="http://www.apple.com/iwork/pages/"&gt;Apple's iWork web site&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;FONT size=4&gt;Requirements:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Mindjet MindManager 6 Mac&lt;/LI&gt;&lt;/UL&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/58/download.aspx" length="4318" type="text/plain" /></item><item><title>OmniOutliner to Map</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry57.aspx</link><pubDate>Thu, 24 Aug 2006 20:38:35 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:57</guid><dc:creator>Michael S. Scherotter</dc:creator><slash:comments>0</slash:comments><description>&lt;DIV&gt;
&lt;P&gt;AppleScript that&amp;nbsp; demonstrates how to build a map from hierarchical data found in another application. The script takes the front most document in &lt;A href="http://www.omnigroup.com/applications/omnioutliner/"&gt;OmniOutliner&lt;/A&gt; and builds a map in MindManager whose structure matches the outline.&amp;nbsp; To use the script, open the OmniOutliner document whose map representation you wish to construct and run the script using the AppleScript Script Editor.&lt;/P&gt;&lt;/DIV&gt;
&lt;DIV id=source_IDACUJ1B style="DISPLAY:none;"&gt;&lt;FONT size=4&gt;Requirements:&lt;/FONT&gt;&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV style="DISPLAY:none;"&gt;Mindjet MindManager 6 Mac&amp;nbsp;&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/57/download.aspx" length="2679" type="text/plain" /></item><item><title>Map to OmniOutliner</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry56.aspx</link><pubDate>Thu, 24 Aug 2006 20:37:31 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:56</guid><dc:creator>Michael S. Scherotter</dc:creator><slash:comments>2</slash:comments><description>&lt;DIV&gt;
&lt;P&gt;Applescript that demonstrates how an application can walk through the hierarchy of a map and transfer information from the topics of the map to another program. In particular, this script creates an &lt;A href="http://www.omnigroup.com/applications/omnioutliner/"&gt;OmniOutliner &lt;/A&gt;document whose outline structure matches that of a map.&lt;/P&gt;
&lt;P&gt;To use the script, open the map you wish to convert in MindManager and run the script using the AppleScript Script Editor.&lt;/P&gt;
&lt;P&gt;&lt;FONT size=4&gt;Requirements:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;MindManager 6 Mac&lt;/LI&gt;&lt;/UL&gt;
&lt;P id=source_IDAGSJ1B style="DISPLAY:none;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id=source_IDAGSJ1B style="DISPLAY:none;"&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/56/download.aspx" length="2763" type="text/plain" /></item><item><title>Color Main Topic Lines</title><link>http://mindjetlabs.com/cs/files/folders/applescripts/entry55.aspx</link><pubDate>Thu, 24 Aug 2006 20:35:38 GMT</pubDate><guid isPermaLink="false">dc0ed168-ddb3-4ca3-855b-6bc812d319a8:55</guid><dc:creator>Michael S. Scherotter</dc:creator><slash:comments>2</slash:comments><description>&lt;P&gt;Applescript that takes a pre- existing map and changes the line color of each of the main topics so that they take on the colors of the rainbow.&amp;nbsp; To use the script, open the map you want to change in MindManager and ensure that it is the front most MindManager document, then run the script with the AppleScript Script Editor.&lt;/P&gt;
&lt;P&gt;&lt;FONT size=4&gt;Requirements&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;MindManager 6 Mac&lt;/LI&gt;&lt;/UL&gt;</description><enclosure url="http://mindjetlabs.com/cs/files/folders/55/download.aspx" length="3226" type="text/plain" /></item></channel></rss>