<?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: text object idiosyncrasies</title>
		<atom:link href="http://cycling74.com/forums/topic/text-object-idiosyncrasies/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/text-object-idiosyncrasies/feed</link>
		<description></description>
		<pubDate>Wed, 19 Jun 2013 18:05:49 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-40959</guid>
					<title><![CDATA[text object idiosyncrasies]]></title>
					<link>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-40959</link>
					<pubDate>Thu, 20 Nov 2008 23:34:34 +0000</pubDate>
					<dc:creator>Floating Point</dc:creator>

					<description>
						<![CDATA[
						<p>if I fill a text object with sprintf output, and then query it, it only says it has one line. I&#8217;m using carriage returns:<br />
sprintf symout %c%s%c%s%c where the first c is 13 (CR), the second &#038; third c is 9 (HT) and s is strings. This output is triggered a number of times to create a number of lines.</p>
<p>Also when I save the resulting file the tabs do not appear as tabs, but as 4 spaces in a row. I need correct formatting to export into a spread sheet. </p>
<p> Am I doing something wrong or are these behaviours by the text object unintended?</p>
<p>T</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-145393</guid>
					<title><![CDATA[Re: text object idiosyncrasies]]></title>
					<link>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-145393</link>
					<pubDate>Fri, 21 Nov 2008 01:05:23 +0000</pubDate>
					<dc:creator>i.m.klif</dc:creator>

					<description>
						<![CDATA[
						<p>i just tested with max 4.</p>
<p>it doesn&#8217;t work when you try to format messages like you did using<br />
sprintf. cr and tab are specific messages sent to text object. you<br />
can&#8217;t send ascii codes to it.</p>
<p>also, cr and tab should be separate messages, for example trying to<br />
send message  &#8220;cr bla bla tab bla bla&#8221; reports &#8220;extra arguments for<br />
message cr&#8221; in max window.</p>
<p>here is a quick and dirty demonstration. saving works.</p>
<p> if you didn&#8217;t know, you can double click on text object to quickly<br />
check the file. it will be the same when saved.</p>
<p>max v2;<br />
#N vpatcher 547 487 1147 887;<br />
#P window setfont &#8220;Sans Serif&#8221; 9.;<br />
#P window linecount 1;<br />
#P message 60 168 35 196617 write;<br />
#P button 184 38 38 0;<br />
#P message 113 93 60 196617 text part 2;<br />
#P newex 113 117 50 196617 t cr l tab;<br />
#P newex 184 118 54 196617 t tab l tab;<br />
#P message 184 93 69 196617 text part one;<br />
#P newex 113 189 40 196617 text;<br />
#P window linecount 3;<br />
#P comment 261 97 148 196617 there seems to be an extra tab in here. i<br />
don&#8217;t know why , but it works;<br />
#P fasten 6 0 5 0 189 84 118 84;<br />
#P connect 5 0 4 0;<br />
#P fasten 7 0 1 0 65 186 118 186;<br />
#P fasten 4 2 1 0 158 161 118 161;<br />
#P fasten 3 2 1 0 233 167 118 167;<br />
#P fasten 3 1 1 0 211 167 118 167;<br />
#P fasten 3 0 1 0 189 167 118 167;<br />
#P connect 4 0 1 0;<br />
#P fasten 4 1 1 0 138 161 118 161;<br />
#P connect 6 0 2 0;<br />
#P connect 2 0 3 0;<br />
#P pop;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-145394</guid>
					<title><![CDATA[Re: text object idiosyncrasies]]></title>
					<link>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-145394</link>
					<pubDate>Fri, 21 Nov 2008 01:30:03 +0000</pubDate>
					<dc:creator>Floating Point</dc:creator>

					<description>
						<![CDATA[
						<p>Hi klif<br />
Here is an example output of the sprintf object via the text object:</p>
<p>Friday 21 November 2008    10:00:01 AM    ascending major arpeggio.mid    00:00:06    arpeggiator playlist.txt     &#8730; <br />
Friday 21 November 2008    10:00:12 AM    descending arpeggio.mid    00:00:06    arpeggiator playlist.txt     &#8730; </p>
<p>as you can see text interprets sprintf correctly with carriage returns, EXCEPT, it seems it doesn&#8217;t create actual tabs, but a series of spaces. This occurs with your &#8216;tab&#8217; message box command in the example you posted.</p>
<p>it looks like its a limitation of the text object.</p>
<p>So this post is a feature request: to actually have tabs (ASCII 009) in the text object, instead of 4 spaces in a row (ASCII 032).<br />
Not really a feature, just to be consistent with its own documentation. Also that the query function actually works.</p>
<p>T</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-145395</guid>
					<title><![CDATA[Re: text object idiosyncrasies]]></title>
					<link>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-145395</link>
					<pubDate>Fri, 21 Nov 2008 01:33:04 +0000</pubDate>
					<dc:creator>Floating Point</dc:creator>

					<description>
						<![CDATA[
						<p>That last post the example text didn&#8217;t come out properly. it should have more spaces between date, time, filename, duration etc which represent the &#8216;tabs&#8217;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-145396</guid>
					<title><![CDATA[Re: text object idiosyncrasies]]></title>
					<link>http://cycling74.com/forums/topic/text-object-idiosyncrasies/#post-145396</link>
					<pubDate>Fri, 21 Nov 2008 09:42:25 +0000</pubDate>
					<dc:creator>i.m.klif</dc:creator>

					<description>
						<![CDATA[
						<p>instead of real tab, you should use tab delimiter of your choice, for<br />
example &#8220;_&#8221; . i didn&#8217;t use comma, to avoid any possible max related<br />
problems.</p>
<p>the resulting row will be:<br />
Friday 21 November 2008_10:00:12 AM_descending<br />
arpeggio.mid_00:00:06_arpeggiator playlist.txt</p>
<p>
then, save file with .csv extension</p>
<p>open with spreadsheet program (i use openoffice).<br />
check -> separated by: other :_</p>
<p>you&#8217;ll get a nice spreadsheet. then you can save it in some other<br />
spreadsheet program</p>
<p>
klif</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

