The image below shows my edit box. I've included a button that uses the same font, so you can see how it should look. I can't work out what I'm doing wrong, you'll see from the code that I'm changing every parameter in the AppGameKit Kingdom to try and fix it, but to no avail. You can even see that things like the border don't show.
` *** Create the edit box
eBox = createEditBox()
setEditBoxSize(eBox,32 * length,30)
setEditBoxTextSize(eBox,28)
setEditBoxPosition(eBox,360 - ((length * 32)/2),225)
setEditBoxBorderSize(eBox,4)
setEditBoxBackgroundColor(eBox,240,240,240,255)
setEditBoxBorderColor(eBox,255,255,255,255)
setEditBoxVisible(eBox,1)
setEditBoxFocus(eBox,1)
setEditBoxText(eBox,default$)
setEditBoxMaxChars(eBox,length)
setEditBoxFontImage(eBox, g.gameFontId)
SetEditBoxTextColor( eBox, 255, 0, 0 )
SetEditBoxDepth(eBox, 2)