<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Programming a Line</title>
		<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line</link>
		<description>Posts in the discussion thread &quot;Programming a Line&quot; - Convert List info from Spreadsheet to drawing lines</description>
				<copyright></copyright>
		<lastBuildDate>Tue, 21 Jul 2026 19:42:51 +0000</lastBuildDate>
		
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3562962</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3562962</link>
				<description></description>
				<pubDate>Wed, 02 Aug 2017 04:55:23 +0000</pubDate>
				<wikidot:authorName>Battlesquid</wikidot:authorName>				<wikidot:authorUserId>2693561</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Try asking some people on <a href="https://www.cemetech.net/forum/index.php">Cemetech</a>. There should be somebody who know how to work an Nspire there :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3561972</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3561972</link>
				<description></description>
				<pubDate>Mon, 31 Jul 2017 17:51:21 +0000</pubDate>
				<wikidot:authorName>Myles_Zadok</wikidot:authorName>				<wikidot:authorUserId>2935702</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The problem is, nobody really knows if it can be done or not. That's why you keep getting referred to places and people that might know. So, I think the best answer I can give you right now is that it cannot be done, or at least, nobody has figure out how to do it yet.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3561537</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3561537</link>
				<description></description>
				<pubDate>Mon, 31 Jul 2017 04:09:27 +0000</pubDate>
				<wikidot:authorName>dik99</wikidot:authorName>				<wikidot:authorUserId>2823586</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I posted a query to TI Support regarding a line function and a clear screen function and was referenced to several areas that didn't have answers. Tech support was really less than useful. If it cannot be done, I'd prefer to know rather than chase the chicken around the bush&#8230;</p> <p>Dik</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3561529</guid>
				<title>Adding a Function to the Catelogue</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3561529</link>
				<description></description>
				<pubDate>Mon, 31 Jul 2017 04:04:41 +0000</pubDate>
				<wikidot:authorName>dik99</wikidot:authorName>				<wikidot:authorUserId>2823586</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm running the Computer Link Software and the Student Software packages for the TI Nspire CX CAS. From either the computer file browser or the Hand Held (HH) file browser I have written functions for string manipulation and they are, for example, Define LibPub Str_Left (fldwidth, strvar, strleft) = Func &lt;Code&gt; EndFunc. The functions have been saved and the libraries have been updated via the software.</p> <p>The functions are saved in the catalogue under Item 6 which doesn't have a name, in a sub-directory with the function name 'Str_Left'. If I load the function from the catalogue, it comes up with the function Str_Left/Str_Left. The function name is not <strong>bold</strong> to reflect that it's a function.</p> <p>Can anyone advise me how to link the function to the program?</p> <p>Is there an easy way to import *.txt files into the TI Basic or to export *.txt files from TI Basic on this HH? It's a fabulous calculator but really terrible for programming with; it's terrible that it has been crippled.</p> <p>Is there a non-proportional font that can be loaded?</p> <p>Dik</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3502566</guid>
				<title>Re: Programming a String</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3502566</link>
				<description></description>
				<pubDate>Sun, 23 Jul 2017 01:22:39 +0000</pubDate>
				<wikidot:authorName>dik99</wikidot:authorName>				<wikidot:authorUserId>2823586</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm having difficulty having public library connections. I've saved it as a public library and it is not visible in the catalogue and have saved it as a private library and it's visible there. I've tried pasting the private library function and it still doesn't read it as a function. FillStr() works like a charm&#8230;</p> <p>©fldwidth – width of field for string insertion<br /> ©strvar – string variable to be centered<br /> Define LivPub CenterStr(fldwidth, strvar)=<br /> Func<br /> Local ls,lb,le,strng<br /> strng:=&quot;&quot;<br /> ls:=fldwidth-dim(strvar)<br /> lb:=int(((fldwidth-ls)/(2)))<br /> le:=fldwidth-ls-lb<br /> Disp ls,lb,le,strng<br /> strng:=fillstr(&quot; &quot;,lb)&amp;strvar&amp;fillstr(&quot; &quot;,le) <span style="text-decoration: line-through;">-</span><span style="text-decoration: line-through;">-</span><span style="text-decoration: line-through;">-</span> <em><strong>CenterStr()</strong>function does not see <strong>FillStr()</strong></em><br /> EndFunc</p> <p>©strvar – character(s) to be inserted in returned string<br /> ©numchrs – total number of characters in string<br /> Define LivPub FillStr(strvar,numchrs)=<br /> Func<br /> Local cntr,strng<br /> strng:=&quot;&quot;</p> <p>For cntr,1,numchrs<br /> strng:=strng&amp;strvar<br /> EndFor<br /> EndFunc</p> <p>Dik</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3488399</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3488399</link>
				<description></description>
				<pubDate>Sat, 22 Jul 2017 02:15:54 +0000</pubDate>
				<wikidot:authorName>Myles_Zadok</wikidot:authorName>				<wikidot:authorUserId>2935702</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have no idea how to use any of those tools (I looked into them). Apparently, I'm a programmer, not a designer. So if someone could make a matching logo and apply the Nspire home page CSS design to the rest of the Nspire pages, I'd really appreciate it.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3488320</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3488320</link>
				<description></description>
				<pubDate>Sat, 22 Jul 2017 02:04:21 +0000</pubDate>
				<wikidot:authorName>Battlesquid</wikidot:authorName>				<wikidot:authorUserId>2693561</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Yep, I noticed, and you did a great job! If you want to make a logo to match the theme, try LunaPic, Photoshop, or Paint.NET (there is a better tool online, but I've forgotten the name. I'll be looking for it though).</p> <p>EDIT: I found the tool, it's called <a href="https://viliusle.github.io/miniPaint/">miniPaint</a>. Awesome tool for color replacement and more.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3487928</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3487928</link>
				<description></description>
				<pubDate>Fri, 21 Jul 2017 22:14:39 +0000</pubDate>
				<wikidot:authorName>Myles_Zadok</wikidot:authorName>				<wikidot:authorUserId>2935702</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Yeah, I've heard doing any kind of graphics (even lines) is pretty difficult on Nspires. Hopefully I'll be able to come up with something when I get around to making a manual.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3487920</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3487920</link>
				<description></description>
				<pubDate>Fri, 21 Jul 2017 22:09:13 +0000</pubDate>
				<wikidot:authorName>dik99</wikidot:authorName>				<wikidot:authorUserId>2823586</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I've had mine for several months and it's an incredible handheld (it's almost too powerful)&#8230; but, the ability to do simple, obvious things for programming does not appear to be there&#8230; a real waste for such a calculator (I prefer calculator to handheld).</p> <p>The programming information using spreadsheets omits a significant item&#8230; you have to provide an individual name for the columns&#8230; you cannot duplicate a name or identify the spreadsheet you are taking the data from. I have not been able to program a 'line' using beginning and end coordinates. I cannot clear the screen prior to adding other data. There does not appear to be a 'Select Case' type of function. There is little or no information about using multi-dimensional arrays&#8230; the language seems to treat the data as List variables.</p> <p>Dik</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3487918</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3487918</link>
				<description></description>
				<pubDate>Fri, 21 Jul 2017 22:07:19 +0000</pubDate>
				<wikidot:authorName>Myles_Zadok</wikidot:authorName>				<wikidot:authorUserId>2935702</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I did as much preparation for the <a href="http://tibasicdev.wikidot.com/nspire:home">Nspire Home Page</a> style as I could, so the Nspire pages would be prepared for when I get around to making the manual. In the meantime, I'm going to finish learning CSS (which I just started learning), so I'll be able to handle any page styling that I might want to do.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3487869</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3487869</link>
				<description></description>
				<pubDate>Fri, 21 Jul 2017 21:20:30 +0000</pubDate>
				<wikidot:authorName>Battlesquid</wikidot:authorName>				<wikidot:authorUserId>2693561</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Yeah, the thing is there is little support for Nspires, mostly because of their poor ability for I/O commands. Hopefully, someone can bust out a manual for Nspire (Go Myles!).</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3487827</guid>
				<title>Re: Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3487827</link>
				<description></description>
				<pubDate>Fri, 21 Jul 2017 20:43:18 +0000</pubDate>
				<wikidot:authorName>Myles_Zadok</wikidot:authorName>				<wikidot:authorUserId>2935702</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Well, <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/dik99" ><img class="small" src="http://www.wikidot.com/avatar.php?userid=2823586&amp;amp;size=small&amp;amp;timestamp=1696963829" alt="dik99" style="background-image:url(http://www.wikidot.com/userkarma.php?u=2823586)" /></a><a href="http://www.wikidot.com/user:info/dik99" >dik99</a></span>, you are correct that there are few Nspire manuals out there. One of these days, I'm going to get myself an Nspire CX CAS, and create walk-throughs for Nspire Basic. Right now, the best manual I can find is this by Texas Instruments themselves:</p> <p><a href="https://education.ti.com/en/activities/ti-codes/nspire/10-minutes" target="_blank">TI Nspire Programming</a></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-3089764#post-3487813</guid>
				<title>Programming a Line</title>
				<link>http://tibasicdev.wikidot.com/forum/t-3089764/programming-a-line#post-3487813</link>
				<description></description>
				<pubDate>Fri, 21 Jul 2017 20:24:46 +0000</pubDate>
				<wikidot:authorName>dik99</wikidot:authorName>				<wikidot:authorUserId>2823586</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm using a TI Nspire CX CAS and am working through programming; currently trying to implement a FEM Frame analysis program.</p> <p>Is there a manner that I can take a set of data points in the form Pn(x,y,z)&#8230;from a spreadsheet application and draw a line from Pn(x,y,z) to Pn+1(x,y,z) from the spreadsheet data?</p> <p>I'm having difficulty finding a decent programming manual for the TI Nspire; does one exist? There seems to be a real lack of methods to enter data.</p> <p>Fortunately the handheld spreadsheets work very well for data entry for my frame program data, so far.</p> <p>Thanks in advance, Dik</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>