Hello all,
Can anyone confirm that this causes AppGameKit to crash:
SetWindowTitle( "Crash_EditBox" )
SetWindowSize( 1024, 768, 0 )
SetVirtualResolution( 1024, 768 )
SetOrientationAllowed( 1, 1, 1, 1 )
Edit1 = createeditbox()
seteditboxposition(Edit1,180,198)
seteditboxsize(Edit1,330,28)
seteditboxtextsize(Edit1,26)
seteditboxmaxchars(Edit1,30)
seteditboxtext(Edit1, "Edit1")
do
print("Space deletes and recreates editbox1.")
if (getrawkeypressed(32)) // Space
DeleteEditBox(Edit1)
Edit1 = createeditbox()
endif
Sync()
loop
Basically it's just creating and deleting editboxes.
Thanks
James