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.


Topics - Rollum78

Pages: [1]
1
Axe / Using Files (Y0 - Y9) in Axe
« on: December 14, 2012, 02:31:31 pm »
I have an appVar in Archive and want to compare its first bytes with a string:
Code: [Select]
:.APPARCH
:"TEST"[00]->Str1
:ClrHome
:If GetCalc("appvRANDOM",Y0)         //that Y0 in [VARS] [Y-VARS] [Function]
:!If Equ>String(Y0,Str1)                  //"Invalid File Use"
:Output(0,0,"Erfolg")
:Else
:Output(0,0,"Nichts")
:End
:End
:getkey[sup]r[/sup]
:ClrHome

When i try to compile that i get an "Invalid File Use" error.
Is what i am trying even possible without unarchiving the appVar?
Or would i have to loop through each byte and compare those individually?

2
Axe / copy to Pic0 - Pic9
« on: December 03, 2012, 05:03:43 pm »
I want to copy the frontbuffer to a OS Pic-variable, like this:
Code: [Select]
:If GetCalc("Pic1",768)->P
:Copy(L6,P,768)
:Else
:random stuff
:End
But let's say i have a variable V (from 0 - 9) and want to get a pointer to "PicV"...
How would i do that?

Edit: So that for example the user can pick the picture to copy the frontbuffer to

3
General Calculator Help / Sending Programs from a TI84+ to a TI83+
« on: October 16, 2012, 10:57:40 am »
I was trying to send a TI-BASIC program from a TI84+ to a TI83+, but i just got an ERR:VERSION.
It's working fine the other way round and ASM programs can be send in both directions.
Is there any other way to send a BASIC program from a 84+ to a 83+?

(I dont't have the cable to connect the 83+ to the PC, so this is the only way i can get programs on it...)

Edit: Same goes for Str0 - 9

4
General Calculator Help / TI 84 plus display mirror inverted
« on: October 14, 2012, 07:23:56 am »
After converting a number to a fraction, the display of my TI 84 plus got mirror inverted:
For example the cursor on the homescreen os now in the top right corner, below a picture of the "MODE"-menu:
Spoiler For Spoiler:

Trying to connect the calculator some hours before the invertion didn't work (but i blame windows and its drivers...)
Resetting all ram didn't help, any ides?

Edit: Resetting all memory didn't help either...

Edit Nr.2: Reinserting the batteries did... But i wonder how that could even happen  O.O

5
Axe / Unobtainable Characters with AXE
« on: October 11, 2012, 03:39:21 pm »
I want to store some characters you can't obtain in BASIC (for example the inverted equal) to the OS Str1 with an AXE program, so i can just copy them later into my basic program.
The problem is i don't know how to access Str1 and fill it with those characters in AXE...
thx for your help

6
Axe / Large size font to buffer
« on: May 23, 2012, 04:09:40 pm »
i realized that the last character won't appear on screen when runnig this code:
Code: [Select]
.FONT
ClrHome
DiagnosticOff
"0000000000000000"->Str1    //16x 0
Fix 5      //Text->Buffer
Fix 1      //Large size font
Text(0,0,Str1)
DispGraph
Pause 3000
ClrHome
Fix 4
Fix 0
The 16. character is missing and i have no idea why... ???

7
Introduce Yourself! / Hello...
« on: May 18, 2012, 04:27:49 pm »
After a few years of TI-Basic i want to try something new and Axe seems very interesting (and powerful) so here i am... ;)

Pages: [1]