When help is called in Windows the text is left aligned. In Android the text is centre aligned. I would like the text to be left aligned in Android the same as in Windows.
Any ideas?
Thanks Roy
Code: Select all
!------------------------------------------------
rem Help box
!------------------------------------------------
defproc_Help
local h$, c$, n$ : n$ = chr$(10) + chr$(13)
c$ = "Fill Shapes"
h$ = "Select one of the five Puzzles. The Options button is top right. " + n$ + n$
h$ += "To play Fill Shapes, fill each area with one of the four colours" + n$
h$ += "but do not let the same colours touch." + n$ + n$
h$ += "Tap/click one of the colours in the pallet to fill the shape with the dot in it." + n$ + n$
h$ += "For a challenge try filling the puzzle with three or less colours, rather than four!" + n$ + n$
if windows% then
sys "MessageBox", @hwnd%, h$, c$, 0
else
sys "SDL_ShowSimpleMessageBox", 0, c$, h$, @hwnd%, @memhdc%
endif
endproc