<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>Cycling 74  &#187;  Topic: Max and other Programs</title>
		<atom:link href="http://cycling74.com/forums/topic/max-and-other-programs/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/max-and-other-programs/feed</link>
		<description></description>
		<pubDate>Tue, 18 Jun 2013 18:11:02 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-51391</guid>
					<title><![CDATA[Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-51391</link>
					<pubDate>Fri, 16 Jul 2010 22:27:04 +0000</pubDate>
					<dc:creator>Cody</dc:creator>

					<description>
						<![CDATA[
						<p>Is there any way max can send a message to another program? Or even run an AppleScript? Im trolling through the doc but not finding anything yet.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-184259</guid>
					<title><![CDATA[Re: Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-184259</link>
					<pubDate>Sat, 17 Jul 2010 03:09:52 +0000</pubDate>
					<dc:creator>Luke Hall</dc:creator>

					<description>
						<![CDATA[
						<p>The [shell] external will run applescripts with no problems, serch for it on <a href="http://www.maxobjects.com/">maxobjects</a>. What are you trying to do?</p>
<p>lh</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-184260</guid>
					<title><![CDATA[Re: Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-184260</link>
					<pubDate>Sat, 17 Jul 2010 16:39:16 +0000</pubDate>
					<dc:creator>nicnut</dc:creator>

					<description>
						<![CDATA[
						<p>I use ctlin and ctlout all the time to communicate with Live ( i don&#8217;t have max for Live yet) I&#8217;ve also used max to record into Logic and Live, using Soundflower as an audio driver. And I&#8217;ve also used Reaktor as a plugin within Max. </p>
<p>nick</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-184261</guid>
					<title><![CDATA[Re: Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-184261</link>
					<pubDate>Sat, 17 Jul 2010 18:38:32 +0000</pubDate>
					<dc:creator>Cody</dc:creator>

					<description>
						<![CDATA[
						<p>hm I realize my initial post was somewhat vague.  What I&#8217;m really hoping to do is take a particular list/symbol generated by my patch, copy it to the clipboard, and paste it in a new email via whatever default application is set, i.e. Mail, Entourage etc.  I haven&#8217;t gotten into the potential of an AppleScript yet so I dont know if its possible but thats the ideal goal.  Just want to streamline the process rather than copy and paste myself.</p>
<p>thanks for the quick replies!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-184262</guid>
					<title><![CDATA[Re: Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-184262</link>
					<pubDate>Sun, 18 Jul 2010 00:26:38 +0000</pubDate>
					<dc:creator>Luke Hall</dc:creator>

					<description>
						<![CDATA[
						<p>Another user has had success before and posted <a href="http://cycling74.com/forums/topic.php?id=25410">their method using applescript</a>. Take a look and see if that works for you. Obviously you can remove the bits that send the email straight away if that isn&#8217;t what you need. You can use [sprintf] to format your custom message to [shell]. </p>
<p>lh</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-184263</guid>
					<title><![CDATA[Re: Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-184263</link>
					<pubDate>Sun, 18 Jul 2010 19:51:51 +0000</pubDate>
					<dc:creator>Roman Thilenius</dc:creator>

					<description>
						<![CDATA[
						<p>audio, midi, tcp/ip &#8230; should be enough for anything i guess.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-184264</guid>
					<title><![CDATA[Re: Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-184264</link>
					<pubDate>Mon, 19 Jul 2010 00:12:42 +0000</pubDate>
					<dc:creator>seejayjames</dc:creator>

					<description>
						<![CDATA[
						<p>If it&#8217;s for email, you can use a message to Max:</p>
<p>;<br />
max launchbrowser &#8220;mailto:yourname@blah.com?subject=your subject line&#038;body=hello world, how are you today?&#8221;</p>
<p>Note the quotes, they need to be just like that to allow spaces in the fields. Quotes are squirrely in Max&#8230;try messing with them in message boxes and you&#8217;ll see. [sprintf] can let you format things more exactly once you&#8217;ve got it down.</p>
<p>One thing I couldn&#8217;t figure out is how to do a newline in the body of the message, using n and \n etc. in the message box didn&#8217;t work. Again, along with quotes, semicolons, and commas, backslashes are dealt with in somewhat unexpected ways, depending on the object you&#8217;re using&#8230;</p>
<p>The &#8220;launchbrowser&#8221; command is a little misleading, you&#8217;d think it&#8217;s always a Web browser, but actually it determines the right program based on the command and based on the user default program settings. So a web address will use a browser, a mailto will use the default email program, running a .txt file will use that program, or you can run .app or .exe programs directly. Very cool.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-184265</guid>
					<title><![CDATA[Re: Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-184265</link>
					<pubDate>Tue, 20 Jul 2010 05:08:08 +0000</pubDate>
					<dc:creator>Cody</dc:creator>

					<description>
						<![CDATA[
						<p>thanks everyone with all the quick responses! I love this forum for that. I have found the most ease with the launchbrowser message. Kinda screwy that I had to find out on the forums about this little gem, instead of within the documentation. I have since scoured all over for it to find any other useful tidbits, but it cannot be found. oh well. at least i have you guys. Thanks again! :)</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-184266</guid>
					<title><![CDATA[Re: Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-184266</link>
					<pubDate>Thu, 22 Jul 2010 19:42:11 +0000</pubDate>
					<dc:creator>Cody</dc:creator>

					<description>
						<![CDATA[
						<p>So there is still a lingering issue&#8230; Now im very interested to see what [shell] has to offer. The only problem is that both links to download on maxobjects are broken. Solution?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-and-other-programs/#post-184267</guid>
					<title><![CDATA[Re: Max and other Programs]]></title>
					<link>http://cycling74.com/forums/topic/max-and-other-programs/#post-184267</link>
					<pubDate>Thu, 22 Jul 2010 22:17:20 +0000</pubDate>
					<dc:creator>Luke Hall</dc:creator>

					<description>
						<![CDATA[
						<p>Its up on the <a href="http://www.cycling74.com/share.html">Share</a> page to download.</p>
<p>lh</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

