onchange "test", "@hexcheck()" FUNCTION hexcheck() first$ = hex$ 137 //converts from decimal to hex second$ = hex$ 92 print first$ //first 16 bits print second$ //second 16 bits full$ = first$(7 to 8) + second$(7 to 8) //grabs the useful hex bits from the first and second strings of 16 bits print full$ //shows the full amount in hex ENDFN