<?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: notifications to prowl (or growl)</title>
		<atom:link href="http://cycling74.com/forums/topic/notifications-to-prowl-or-growl/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/notifications-to-prowl-or-growl/feed</link>
		<description></description>
		<pubDate>Wed, 19 Jun 2013 19:59:33 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/notifications-to-prowl-or-growl/#post-58276</guid>
					<title><![CDATA[notifications to prowl (or growl)]]></title>
					<link>http://cycling74.com/forums/topic/notifications-to-prowl-or-growl/#post-58276</link>
					<pubDate>Sun, 31 Jul 2011 17:08:56 +0000</pubDate>
					<dc:creator>joshualeeginsburg</dc:creator>

					<description>
						<![CDATA[
						<p>hi &#8211; </p>
<p>i want to be able to send push notifications to my iphone from max through prowl.<br />
is there a way to do this from max?</p>
<p>thanks, </p>
<p>josh</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/notifications-to-prowl-or-growl/#post-209357</guid>
					<title><![CDATA[Re: notifications to prowl (or growl)]]></title>
					<link>http://cycling74.com/forums/topic/notifications-to-prowl-or-growl/#post-209357</link>
					<pubDate>Sun, 31 Jul 2011 20:10:44 +0000</pubDate>
					<dc:creator>earsmack</dc:creator>

					<description>
						<![CDATA[
						<p>Here is a script that I use to register itself with Growl and then send messages from iChat. Growl is then configured to send these to Prowl, which push to the iOS device. This works &#8211; all you have to do is tweak it to your specific need and get max to launch/execute it. Part of this came from an Apple example script.</p>
<p>(* INSTRUCTIONS<br />
iChat includes the ability, within its preferences panel, to assign AppleScript scripts to a wide variety of iChat events. The following handler is called when a text invitation is received.<br />
*)</p>
<p>tell application &#8220;GrowlHelperApp&#8221;<br />
	&#8211; Make a list of all the notification types that this script will ever send:<br />
	set the allNotificationsList to ¬<br />
		{&#8220;Initial Message Recieved&#8221;, &#8220;Message Recieved&#8221;}</p>
<p>	&#8211; Make a list of the notifications that will be enabled by default.<br />
	&#8211; Those not enabled by default can be enabled later in the &#8216;Applications&#8217; tab of the growl prefpane.<br />
	set the enabledNotificationsList to ¬<br />
		{&#8220;Initial Message Recieved&#8221;, &#8220;Message Recieved&#8221;}</p>
<p>	&#8211; Register our script with growl.<br />
	&#8211; You can optionally (as here) set a default icon for this script&#8217;s notifications.<br />
	register as application ¬<br />
		&#8220;iChatGrowlMe&#8221; all notifications allNotificationsList ¬<br />
		default notifications enabledNotificationsList ¬<br />
		icon of application &#8220;Script Editor&#8221;<br />
end tell</p>
<p>using terms from application &#8220;iChat&#8221;<br />
	on received text invitation this_message from this_buddy for this_chat<br />
		set this_name to the name of this_buddy</p>
<p>		tell application &#8220;GrowlHelperApp&#8221;<br />
			notify with name ¬<br />
				&#8220;Initial Message Recieved&#8221; title ¬<br />
				&#8220;Initial Message Recieved&#8221; description ¬<br />
				this_name &#038; &#8220;: &#8221; &#038; this_message application name &#8220;iChatGrowlMe&#8221;<br />
		end tell</p>
<p>		(*EXAMPLE: this routine automatically accepts a text chat invitation for specified buddies<br />
		set this_name to the name of this_buddy<br />
		if the name of this_buddy is in {&#8220;Johnny Appleseed&#8221;} then<br />
			set the greeting_name to the first name of this_buddy<br />
			if the greeting_name is &#8220;&#8221; then set the greeting_name to this_name<br />
			accept this_chat<br />
			send &#8220;Hello &#8221; &#038; greeting_name &#038; &#8220;!&#8221; to this_chat<br />
		end if<br />
		*)<br />
	end received text invitation</p>
<p>	on message received this_message from this_buddy for this_chat<br />
		set this_name to the name of this_buddy</p>
<p>		tell application &#8220;GrowlHelperApp&#8221;<br />
			notify with name ¬<br />
				&#8220;Message Recieved&#8221; title ¬<br />
				&#8220;Message Recieved&#8221; description ¬<br />
				this_name &#038; &#8220;: &#8221; &#038; this_message application name &#8220;iChatGrowlMe&#8221;<br />
		end tell</p>
<p>		(*EXAMPLE: this routine automatically sends a random response to messages from specified buddies<br />
		set this_name to the name of this_buddy<br />
		if the name of this_buddy is in {&#8220;Johnny Appleseed&#8221;} then<br />
			set canned_responses to {&#8220;Oh, I know!&#8221;, &#8220;I was just thinking about that.&#8221;, &#8220;Maybe tomorrow.&#8221;, &#8220;Seems logical.&#8221;}<br />
			set this_response to some item of the canned_responses<br />
			send this_response to this_chat<br />
		end if<br />
		*)<br />
	end message received</p>
<p>end using terms from</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/notifications-to-prowl-or-growl/#post-209358</guid>
					<title><![CDATA[Re: notifications to prowl (or growl)]]></title>
					<link>http://cycling74.com/forums/topic/notifications-to-prowl-or-growl/#post-209358</link>
					<pubDate>Sun, 31 Jul 2011 23:02:35 +0000</pubDate>
					<dc:creator>earsmack</dc:creator>

					<description>
						<![CDATA[
						<p>So much for i before e except after c &#8211; just noticed some spelling errors but you get the idea.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

