Author Topic: Key codes (for Getkey() users)  (Read 18705 times)

0 Members and 1 Guest are viewing this topic.

SirCmpwn

  • Guest
Re: Key codes (for Getkey() users)
« Reply #30 on: April 07, 2010, 11:50:44 pm »
Well, in Axe, >Dec says to display a nubmer in decimal format.  Otherwise, it will use the variable as a pointer and display random gibberish from that point in memory to the next zero.  Also, >Frac will display the character represented by the variable.  For instance:
65->X
Disp X  // Displays everything from 0x00041h (hex) to the next zero
Disp X>Dec // Displays 5
Disp X>Frac // Displays "a"

Offline indubitably

  • LV2 Member (Next: 40)
  • **
  • Posts: 35
  • Rating: +1/-0
    • View Profile
Re: Key codes (for Getkey() users)
« Reply #31 on: April 07, 2010, 11:58:08 pm »
is there a tutorial of some kind with the non-basic commands?
Should i just look at a tutorial for xlib or something?

SirCmpwn

  • Guest
Re: Key codes (for Getkey() users)
« Reply #32 on: April 08, 2010, 12:00:25 am »
Hmm, tutorial...
I don't think so.  But it is getting pretty late here, I'll whip one up tomorrow.

Offline indubitably

  • LV2 Member (Next: 40)
  • **
  • Posts: 35
  • Rating: +1/-0
    • View Profile
Re: Key codes (for Getkey() users)
« Reply #33 on: April 08, 2010, 12:02:05 am »
okay thanks for the help though, the variable to decimal command will keep me busy for a while ;D

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Key codes (for Getkey() users)
« Reply #34 on: April 08, 2010, 10:09:56 pm »
The documentation HTML file explains each commands if you didn't check it yet. However, it doesn,t go in full depth for all commands yet, so it can still be confusing, especially pointers and data management.

SirCmpwn

  • Guest
Re: Key codes (for Getkey() users)
« Reply #35 on: April 08, 2010, 11:08:39 pm »
@indubitably: I posted a comparison between Axe Basic and TI-Basic that should help you out.