possiblity to send #CENTER and other similars as argument.
Posted: Fri Feb 12, 2016 2:13 pm
Quite a lot of times my code goes:
When it could be:
or even:
Could there be possiblity that in future you could save especially the #CENTER in variables to be used when needed?
Code: Select all
if x=Nil
displaytext(1, #CENTER, y)
else
displaytext(1, x, y)
endifCode: Select all
if x=nil then x=#CENTER
displaytext(1, x, y)Code: Select all
my_func(text$, #CENTER, y)
...
displaytext(1, x, y)