151
TI-Nspire / Re: Jens' Script Editor - An on-calc lua editor
« on: July 24, 2013, 11:04:18 am »
Ok, I see that; I'll go to work now to make it ultra compatible
Btw. I just finished working (more copy/pasting) on the portable nspire scripting API reference guide and it's viewer (small and easy via RichTextBox) and I think it doesn't look that bad yet, but it is 11KB big because of all the text, should I integrate it anyways? (Of cause on page 1.2)
Edit: I always searched a way to finally delete variables and now I guessed: "If 'Delvar xxxx' works in the calculator, maybe math.eval('Delvar xxxx') works in the skript..." and I guessed right! Thank you very much for that hint, now the editor wont create random variables! (I tested if the entered name is a math variable via 'if not var.strore("test"..name,"") then...' and that produced many stored empty variables, now they'll get deleted right after saving!) And also deleted files will be really deleted (not just overwritten by var.store(name,""))
Btw. I just finished working (more copy/pasting) on the portable nspire scripting API reference guide and it's viewer (small and easy via RichTextBox) and I think it doesn't look that bad yet, but it is 11KB big because of all the text, should I integrate it anyways? (Of cause on page 1.2)
Edit: I always searched a way to finally delete variables and now I guessed: "If 'Delvar xxxx' works in the calculator, maybe math.eval('Delvar xxxx') works in the skript..." and I guessed right! Thank you very much for that hint, now the editor wont create random variables! (I tested if the entered name is a math variable via 'if not var.strore("test"..name,"") then...' and that produced many stored empty variables, now they'll get deleted right after saving!) And also deleted files will be really deleted (not just overwritten by var.store(name,""))