<?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: send message to line</title>
		<atom:link href="http://cycling74.com/forums/topic/send-message-to-line/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/send-message-to-line/feed</link>
		<description></description>
		<pubDate>Tue, 18 Jun 2013 23:55:52 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/send-message-to-line/#post-28036</guid>
					<title><![CDATA[send message to line]]></title>
					<link>http://cycling74.com/forums/topic/send-message-to-line/#post-28036</link>
					<pubDate>Sun, 08 Oct 2006 16:03:09 +0000</pubDate>
					<dc:creator>martinex</dc:creator>

					<description>
						<![CDATA[
						<p>HEllo,<br />
I made a script which make a string like :</p>
<p>function bang(){<br />
var a=&#8221;0 100 0 200&#8243;;<br />
outlet(0,a);<br />
}</p>
<p>and I send it to a line~ object in order to make a complex (or not) envelop to drive a *~ object.</p>
<p>every time i get the message:<br />
error: line~doesn&#8217;t understand &#8220;0 100 0 200&#8243;  </p>
<p>If I make a messagebox with &#8220;0 100 0 200&#8243; in it and send it to the line~, no problem.<br />
WHat is the way to format it with js?</p>
<p>
David from France</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/send-message-to-line/#post-85651</guid>
					<title><![CDATA[Re: send message to line]]></title>
					<link>http://cycling74.com/forums/topic/send-message-to-line/#post-85651</link>
					<pubDate>Sun, 08 Oct 2006 16:12:15 +0000</pubDate>
					<dc:creator>Emmanuel Jourdan</dc:creator>

					<description>
						<![CDATA[
						<p>On 8 oct. 06, at 18:03, martinex wrote:</p>
<p>> I made a script which make a string like :<br />
><br />
> function bang(){<br />
> var a=&#8221;0 100 0 200&#8243;;<br />
> outlet(0,a);<br />
> }<br />
><br />
> and I send it to a line~ object in order to make a complex (or not)  <br />
> envelop to drive a *~ object.<br />
><br />
> every time i get the message:<br />
> error: line~doesn&#8217;t understand &#8220;0 100 0 200&#8243;</p>
<p>Hi,</p>
<p>As the error message suggests, you&#8217;re sending a wrong message to the  <br />
line~ object. You need to send a &#8220;list&#8221; (an Array in js), or send the  <br />
values directly.</p>
<p>function bang() {<br />
	outlet(0, 0, 100, 0, 200);<br />
}</p>
<p>or</p>
<p>function bang() {<br />
	// array solution 1<br />
	var a = [ 0, 100, 0, 200 ]; // create an array of for elements<br />
	outlet(0, a);<br />
}</p>
<p>or</p>
<p>function bang() {<br />
	// array solution 2<br />
	var a = new Array(4);<br />
	a[0] = 0;<br />
	a[1] = 100;<br />
	a[2] = 0;<br />
	a[3] = 200;<br />
	outlet(0, a);<br />
}</p>
<p>Best,</p>
<p>ej from France too (the world is really small, isn&#8217;t it?)</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/send-message-to-line/#post-85652</guid>
					<title><![CDATA[Re: send message to line]]></title>
					<link>http://cycling74.com/forums/topic/send-message-to-line/#post-85652</link>
					<pubDate>Sun, 08 Oct 2006 16:20:03 +0000</pubDate>
					<dc:creator>martinex</dc:creator>

					<description>
						<![CDATA[
						<p></p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

