TJ,
For the sake of the people following this thread by email, could you
please take the time to combine your responses to a single thread into
one message? Over the last 2 hours I have received 13 messages from
you only pertaining to 5 threads, and most of them contain fewer than
10 words. Thanks.
Regarding your message, yes, programs display Done, and people can't
remove that...yet. Since the Nspire is relatively new, there hasn't
been much in the way of "hacking" being done, but don't fret. It's
being worked on (not by me, though). I know it's been discovered that
the tns files are really pkzip files containing a bunch of xml docs,
so it's only a matter of time.
And because of the way this works, even as a function you would not be
able to use the result as input to another calculation because it is a
string, not a number.
The original question, however, was only if you wanted it displayed as
a mixed fraction. There's no point to displaying it as a mixed
fraction if you're only going to use it in another calculation right
away. it's just a waste of computational time and button pressing.
So, if the point is to only view it as a mixed fraction, this should
work fine.
The point of Ross' program, and in fact many programs, isn't to
eliminate the built in one, but merely to provide a more desirable
input or output (in this case, esthetically speaking).
For example, I'm writing a string library (a port of Java's - I'll
post it here soon) and know that to get a substring, I could just use
the left(), right(), or mid() functions, but I find those confusing.
So, I have included two functions: substr(string, start, length) and
substring(string, start, end) which use left, right, and/or mid, but I
can access them in a much more intuitive way (to me).
--Eric