GLBasic forum

Main forum => Bug Reports => Topic started by: MrTAToad on 2011-Jul-20

Title: A few quick things
Post by: 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.
Title: Re: A few quick things
Post by: Kitty Hello on 2011-Jul-20
All 3 are true. 1+2 are very hard to solve. 3 is fixed. I'll release XD
Title: Re: A few quick things
Post by: bigsofty on 2011-Jul-21
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"

?
Title: Re: A few quick things
Post by: MrTAToad on 2011-Jul-21
No - thats the problem  =D
Title: Re: A few quick things
Post by: bigsofty on 2011-Jul-21
Lol, oh now I see what you mean!  :-[