A few quick things

Previous topic - Next topic

MrTAToad

A few quick things (:) ) before the update is properly released :

1) Variables in extended types

Code (glbasic) Select
TYPE TT
a=5.5

FUNCTION Moo%:
DEBUG self.a%+"\n"
ENDFUNCTION
ENDTYPE


Compiled properly, although an integer variable called "a" isn't defined...

2)  I believe shoebox won't add JPEG files (or SETSHOEBOX wont see them)

3)  The cursor is incorrectly positioned when the onscreen keyboard and edit area is displayed in DDgui.  For some reason the cursor is at the beginning of text being displayed and not at the end.

Kitty Hello

All 3 are true. 1+2 are very hard to solve. 3 is fixed. I'll release XD

bigsofty

Quote from: MrTAToad on 2011-Jul-20
A few quick things (:) ) before the update is properly released :

1) Variables in extended types

Code (glbasic) Select
TYPE TT
a=5.5

FUNCTION Moo%:
DEBUG self.a%+"\n"
ENDFUNCTION
ENDTYPE


Compiled properly, although an integer variable called "a" isn't defined...

2)  I believe shoebox won't add JPEG files (or SETSHOEBOX wont see them)

3)  The cursor is incorrectly positioned when the onscreen keyboard and edit area is displayed in DDgui.  For some reason the cursor is at the beginning of text being displayed and not at the end.

Probably got the wrong end of the stick but shouldn't that be...

Code (glbasic) Select
DEBUG self.a#+"\n"

?
Cheers,

Ian.

"It is practically impossible to teach good programming style to students that have had prior exposure to BASIC.  As potential programmers, they are mentally mutilated beyond hope of regeneration."
(E. W. Dijkstra)

MrTAToad

No - thats the problem  =D

bigsofty

Lol, oh now I see what you mean!  :-[
Cheers,

Ian.

"It is practically impossible to teach good programming style to students that have had prior exposure to BASIC.  As potential programmers, they are mentally mutilated beyond hope of regeneration."
(E. W. Dijkstra)