Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Siphonic_Sugar

Pages: 1 [2] 3 4
16
Site Feedback and Questions / TI-Nspire Downgrade Problems
« on: September 17, 2015, 09:00:59 pm »
HELP ME! I downgraded my TI-Nspire's software from 3.9.1 to 3.6. It was all working and everything. I then installed Ndless, which had a successful installation. But when I unplugged the calculator from the computer, it shut off. When ever I try to turn it back on, it resets, and when it gets to the home screen, it shuts off. I already tried to reset it and it did not help.  I used the downgrade fix 391, instead of the downgrade fix 390.  What should I do to fix it?  The calculator works perfectly fine when plugged into the computer, but when I unplug it, the device turns off.
WHAT SHOULD I DO?!?

17
TI-BASIC / Re: Collision Detection
« on: September 17, 2015, 05:38:12 pm »
Thank you @Geekboy1011! I finally understand!  :D



But seriously, how would I make a program that reads the map from Str1, and puts all of the sprites in Str2?

Oh crap,  double posting... Sorry...

Edit (Eeems): merged double post.

18
TI-BASIC / Re: Collision Detection
« on: September 17, 2015, 05:27:21 pm »
So, I made a sample program using information on TI-Basic Developer.  The program worked out fine except for the displaying part.  The program didn't do anything wrong, and there wasn't an error, I just do not like how it displays everything from the string row by row.

(NOTE: The list is all on one line, I just split up to make it easier to read.)
Code: [Select]
PROGRAM:TEST
:"1111111111111111
   1000000000000001
   1000000000000001
   1000000000000001
   1000000000000001
   1000000000000001
   1000000000000001
   1111111111111111->Str1
:For(A,1,8
:For(B,1,16
:Output(A,B,sub(" X",1+expr(sub(Str1,B+16(A-1),1)),1)
:End:End
I do understand what is going on here,  I think for, for the most part... But how would I:

1) Take the numbers from Str1 and convert it to characters (like 1 is going to be X)
2) How would I store that into Str2
3) How would I display Str2 all at once

Unless there is an easier way to display everything on the home screen at once, could someone tell me how to do this?

P.S. How do I create the code box thing...?

19
TI-BASIC / Re: Collision Detection
« on: September 17, 2015, 04:41:08 pm »
Whoa! That is really helpful! :D I can't believe that I have not already found that! THANK YOU!

20
TI-BASIC / Re: Collision Detection
« on: September 17, 2015, 07:30:09 am »
Well, I guess that I was thinking of something on the home screen, probably not on the graph screen. (Sorry if I did not specify that...)

21
TI-BASIC / Collision Detection
« on: September 16, 2015, 07:18:35 pm »
Does anyone know of another way to make a collision detection program that does not use matrices? (They use up to much memory) I read the tutorial by @meishe91 about collision detection, but there was something that I was not getting.  Could someone break it down for me, or just tell me another way to do collision detection without a matrix?

22
Axe / Re: Windows XP in Axe
« on: August 15, 2015, 09:54:01 pm »
Sadly, they don't have Axe for it.

23
Axe / Re: Windows XP in Axe
« on: August 14, 2015, 05:31:43 pm »
Well, I guess I'm going to purchase the TI-84 Plus CE because my friends mom is probably going to give her TI-Napire CX CAS to me because she can't figure out how to work it according to my friend.

24
Axe / Re: Windows XP in Axe
« on: August 13, 2015, 10:36:21 pm »
Oh and thank you Sorunome for making my posts look better. :D I really appreciate it! :D

25
Axe / Re: Windows XP in Axe
« on: August 13, 2015, 08:55:08 pm »
Haha, I hate the CSE. The CE is almost 8 times faster!

26
Axe / Re: Windows XP in Axe
« on: August 13, 2015, 08:35:50 pm »
Okay. Thank you for your help! :D

Hey, I'm going to set aside this Windows XP project for a minute so I can ask this. I'm thinking about learning 68K basic and maybe a little more on Lua but what calculator do you guys think that I should get next?

1) TI-Nspire CX

2) TI-92 Plus

3) TI-84 Plus CE

27
Axe / Re: Windows XP in Axe
« on: August 13, 2015, 07:50:39 pm »
Hmm, where is the recti command?

28
Axe / Re: Windows XP in Axe
« on: August 13, 2015, 06:44:38 pm »
Sure, seems like a good idea. Thanks again for optimization. :D

29
The Axe Parser Project / Re: 2 Axe Questions
« on: August 13, 2015, 06:37:56 pm »
Okay thank you. I need that in my Windows XP program, which I am hoping can be used as a shell.

30
Axe / Re: Windows XP in Axe
« on: August 13, 2015, 06:22:59 pm »
Okay, so, obviously when I get a little farther into making this, when you click (2nd) in the bottom left corner, it won't say START (that was just added to see if clicking works), and I'll make an actual start menu pop up.

Code: [Select]
.WINDOWXP

Fix 5

32->Y
48->X

ClrHome

[E0C0A00000000000]->Pic1

0->A

Repeat getKey(15)
Lbl 1
ClrDraw
If A=1
Text(2,56,"START
End
Pt-On(X,Y,Pic1
If getKey(1)
Y+1->Y
End
If getKey(2)
X-1->X
End
If getKey(3)
0+1->X
End
If getKey(4)
Y-1->Y
End
If getKey(54)
Goto 2
End
DispGraph
End
Lbl 2
If Y>54 and X<25
1->A
End
Goto 1

Why won't this work with the lbls? When I click on the bottom left corner, the mouse stops working correctly and it won't let me press CLEAR to end the program. Oh and Haubo, thanks for the optimization help. :D I didn't add that yet because I saw your comment after I posted again.

Edit Sorunome: Added [code]-tag

Pages: 1 [2] 3 4