Author Topic: Clear screen -TI-Nspire  (Read 7360 times)

0 Members and 1 Guest are viewing this topic.

Offline joao9856

  • LV3 Member (Next: 100)
  • ***
  • Posts: 73
  • Rating: +3/-0
    • View Profile
Clear screen -TI-Nspire
« on: January 26, 2013, 07:57:09 am »
How do i make clearscreen in TI-Nspire basic while in a program?

Offline renatose

  • LV5 Advanced (Next: 300)
  • *****
  • Posts: 209
  • Rating: +4/-0
  • watch out the power balls
    • View Profile
Re: Clear screen -TI-Nspire
« Reply #1 on: January 26, 2013, 09:04:28 am »
you don't. the nspire basic is not graphics capable like TI-8x calculators.

Offline joao9856

  • LV3 Member (Next: 100)
  • ***
  • Posts: 73
  • Rating: +3/-0
    • View Profile
Re: Clear screen -TI-Nspire
« Reply #2 on: January 26, 2013, 09:06:07 am »
so there is no way of cleaning displayed things while in a program?

Offline renatose

  • LV5 Advanced (Next: 300)
  • *****
  • Posts: 209
  • Rating: +4/-0
  • watch out the power balls
    • View Profile
Re: Clear screen -TI-Nspire
« Reply #3 on: January 26, 2013, 09:22:43 am »
yeap. you can always make a Lua script - that you can create in computer software - or a C/ASM program with ndless.

Offline joao9856

  • LV3 Member (Next: 100)
  • ***
  • Posts: 73
  • Rating: +3/-0
    • View Profile
Re: Clear screen -TI-Nspire
« Reply #4 on: January 26, 2013, 09:27:15 am »
thanks but i'll figure something to bypass printing

Offline Rhombicuboctahedron

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 437
  • Rating: +41/-6
    • View Profile
Re: Clear screen -TI-Nspire
« Reply #5 on: January 26, 2013, 11:59:35 am »
Well, there is Menu->action->Clear History
But I don’t think there is anyway of getting that into a program

Offline Jonius7

  • python! Lua!
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1918
  • Rating: +82/-18
  • Still bringing new dimensions to the TI-nspire...
    • View Profile
    • TI Stadium
Re: Clear screen -TI-Nspire
« Reply #6 on: January 28, 2013, 10:57:50 pm »
Well, there is Menu->action->Clear History
But I don’t think there is anyway of getting that into a program

Yeah, there is no programmable component to clear history from the Calc app in TI-nspire. You have to do it manually through Menu->Action->Clear History

thanks but i'll figure something to bypass printing

If what you want is to hide some text from the Calc app history, you can use textboxes.
Code: [Select]
Text "You lost the game!",0the ",0" at the end tells the calc to exclude the text from the Calc app output.
« Last Edit: January 28, 2013, 10:58:40 pm by Jonius7 »
Programmed some CASIO Basic in the past
DJ Omnimaga Music Discographist ;)
DJ Omnimaga Discography
My Own Music!
My Released Projects (Updated 2015/05/08)
TI-nspire BASIC
TI-nspire Hold 'em
Health Bar
Scissors Paper Rock
TI-nspire Lua
Numstrat
TI-nspire Hold 'em Lua
Transport Chooser
Secret Project (at v0.08.2 - 2015/05/08)
Spoiler For Extra To-Be-Sorted Clutter:

Spoiler For Relegated Projects:
TI-nspire BASIC
Battle of 16s (stalled) | sTIck RPG (stalled) | Monopoly (stalled) | Cosmic Legions (stalled)
Axe Parser
Doodle God (stalled while I go and learn some Axe)

Offline Rhombicuboctahedron

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 437
  • Rating: +41/-6
    • View Profile
Re: Clear screen -TI-Nspire
« Reply #7 on: January 28, 2013, 11:05:09 pm »
Oh, wow, that is really useful. Thank you!

Offline joao9856

  • LV3 Member (Next: 100)
  • ***
  • Posts: 73
  • Rating: +3/-0
    • View Profile
Re: Clear screen -TI-Nspire
« Reply #8 on: January 29, 2013, 01:25:24 pm »
i'm using those, i was trying to avoid them because its harder to use variables in the middle of those but i guess I'll have to use this:
Code: [Select]
Text "I have "&string(x)&" peanuts!",0
But thanks jonius7
« Last Edit: January 29, 2013, 01:26:07 pm by joao9856 »

Offline Jonius7

  • python! Lua!
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1918
  • Rating: +82/-18
  • Still bringing new dimensions to the TI-nspire...
    • View Profile
    • TI Stadium
Re: Clear screen -TI-Nspire
« Reply #9 on: March 03, 2013, 03:12:56 am »
Yeah, it does make labeling multiple variables more fiddly with the &s but it gets the job done :)
Programmed some CASIO Basic in the past
DJ Omnimaga Music Discographist ;)
DJ Omnimaga Discography
My Own Music!
My Released Projects (Updated 2015/05/08)
TI-nspire BASIC
TI-nspire Hold 'em
Health Bar
Scissors Paper Rock
TI-nspire Lua
Numstrat
TI-nspire Hold 'em Lua
Transport Chooser
Secret Project (at v0.08.2 - 2015/05/08)
Spoiler For Extra To-Be-Sorted Clutter:

Spoiler For Relegated Projects:
TI-nspire BASIC
Battle of 16s (stalled) | sTIck RPG (stalled) | Monopoly (stalled) | Cosmic Legions (stalled)
Axe Parser
Doodle God (stalled while I go and learn some Axe)