I was interested in seeing what could be done with the graph screen, and I started to learn some of the commands. I started out with learning how to graph a basic cursor:
Code:
Then, using Kerm's book on coding, I made a program that allows the user to move the cursor around the graph screen. (I still need to finish optomizing it for ti 84 plus CE)
Code:
What I want to do now, is have different icons that represent different programs I have made. Then you could move the cursor over, hit enter, and then it would run the program. I think I will just make more subprograms that draw each one of the icons for my programs, but I don't know how to have it check to see if the cursor is over one of the program icons.
Code:
Pxl-Change(B,A
Pxl-Change(B+1,A
Pxl-Change(B+2,A
Pxl-Change(B+3,A
Pxl-Change(B+4,A
Pxl-Change(B+5,A
Pxl-Change(B+6,A
Pxl-Change(B+7,A
Pxl-Change(B+8,A
Pxl-Change(B+9,A
Pxl-Change(B+10,A
Pxl-Change(B+11,A
Pxl-Change(B+11,A+1
Pxl-Change(B,A+1
Pxl-Change(B+2,A+3
Pxl-Change(B+4,A+5
Pxl-Change(B+6,A+7
Pxl-Change(B+7,A+6
Pxl-Change(B+7,A+7
Pxl-Change(B+8,A+5
Pxl-Change(B+9,A+5
Pxl-Change(B+10,A+6
Pxl-Change(B+10,A+7
Pxl-Change(B+11,A+7
Pxl-Change(B+12,A+7
Pxl-Change(B+13,A+7
Pxl-Change(B+13,A+6
Pxl-Change(B+13,A+5
Pxl-Change(B+13,A+4
Pxl-Change(B+12,A+4
Pxl-Change(B+11,A+4
Pxl-Change(B+10,A+4
Pxl-Change(B+9,A+3
Pxl-Change(B+1,A+2
Pxl-Change(B+3,A+4
Pxl-Change(B+5,A+6
Pxl-Change(B+10,A+2
Then, using Kerm's book on coding, I made a program that allows the user to move the cursor around the graph screen. (I still need to finish optomizing it for ti 84 plus CE)
Code:
120->A:80->B
AxesOff:ClrDraw
Repeat K=45
prgmCURSOR1
Repeat K
getKey->K
End
prgmCURSOR1
If K=24 and A>5
A-4->A
If K=26 and A<250
A+4->A
If K=25 and B>4
B-4->B
If K=35 and B<200
B+4->B
End
AxesOn
What I want to do now, is have different icons that represent different programs I have made. Then you could move the cursor over, hit enter, and then it would run the program. I think I will just make more subprograms that draw each one of the icons for my programs, but I don't know how to have it check to see if the cursor is over one of the program icons.