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 - nitacku

Pages: 1 ... 19 20 [21]
301
News / Jeremy joins Omnimaga coding team
« on: August 29, 2007, 07:11:00 pm »
I just want to thank everyone for allowing me to be a part of the team. I am very excited and anxious to be given such a privilege.

I know I've been mostly on United-TI lately, but I will now make it a habit to spend equal time here as well.

I will always give my best effort to be a helpful contributing member.

302
TI-BASIC / Manipulating Pictures
« on: January 28, 2007, 04:33:00 pm »
You can't use the xLIB recallpic command unless the pics are in the calc's memory, not the app. Otherwise nothing will be displayed.

303
TI-BASIC / Manipulating Pictures
« on: January 28, 2007, 01:43:00 pm »
Well it is not really accessing it directly from the app.
What happens first in the program is a RecallPic A-S. Then I use the xLIB storepic command real(9,0,201-218) to store each of the pics into the calcs memory.
After the pic is stored, I have to Archive it as well, otherwise I will run out of memory.

This is the process I am using on all 18 pictures.
It is slow and takes up way too much memory.
Does anyone know of a better way?

304
TI-BASIC / Manipulating Pictures
« on: January 28, 2007, 11:51:00 am »
How do you extract pictures from an app created with BasicBuilder and Archive them into the calcs memory?

xLIB uses the pics that are stored in the calcs memory.
BasicBuilder creates an app with the pics compressed into the it.

It is quite a process to get the pics to the memory (a process I wish was far easier)
I have only come up with one way so far.

The method:
c1-->
CODE
ec1For(X,1,19
If X=1
Then
RecallPic A
real(9,1,200+X
real(9,0,200+X
Archive /whatever the name is/
End
If X=2
Then
etc...

End
c2
ec2
This code only gets run once when the user firsts starts the Bowling program.

If anyone can come up with a way easier than this (I'm sure there must be), I will hail them as the calc god.

Pages: 1 ... 19 20 [21]