- vpriority() is not effective
- tBackgroundAlpha()/gBackgroundAlpha()/kBackgroundAlpha() are not effective immediately.
- When you exit the BASIC program after using gTransform() with valid transformation argument, the screen size is wrong the next time it run.
- In the input statement, character in the input does not appear.
- When you set initial value to dim float by {}, error occurs.
- In the function with array argument, an error occurs when you pass the array to the child function.
- Element number check of the second or later dimension of the array was incorrect.
- The source line pointed by the run-time errors is incorrect.
- The error message which occurred in external function is not display.
-
After vpriority() call, you may call this function. So it will be reflected immediately.
func allPageUpdate(page;int)
print " ";:// modify this line to no problem to display text
apage(GPAGE0):line(0,0,0,0,0)
apage(GPAGE1):line(0,0,0,0,0)
apage(GPAGE2):line(0,0,0,0,0)
apage(GPAGE3):line(0,0,0,0,0)
apage(page)
endfunc
Example : vpriority(page,GPAGE0,GPAGE1,GPAGE2,TPAGE):allPageUpdate(page) -
After the function call, you may call the functions which draw each screen.
For example, tBackgroundAlpha():print " ".
- At program end, you must call gTransform() for releasing transformation.
- There is no workaround of input statement bug. Please wait V2.2.
- Please assign by (element No.)=float value one by one.
- There is no workaround of this bug. Please wait V2.3.
- Please check your self.
- In most cases, run-time error is pointing to the next line that occurred. If the line is comment line, it points further next line.
- There is no workaround of this bug. Please wait V2.3.
In addition, the following is a specification:
- When you use dimension argument in internal function, you can not use enum constant to the size specified.
Example : func f(masu(WW,WW);int):// error occur
- The internal function's name and argument are registered within preprocess of compile.
- The enum constant is determined within compile process.
- Therefore, in preprocess, the enum constant is not referable.
No comments:
Post a Comment