but the script acts great on other guys computer.
hope anybody knows how this happened... I use Windows XP and Lua For WIndows 5.1..
require "wx"
frame = nil
function main()
frame = wx.wxFrame( wx.NULL, wx.wxID_ANY, "wxLua",
wx.wxDefaultPosition, wx.wxSize(450, 450),
wx.wxDEFAULT_FRAME_STYLE )
panel = wx.wxPanel(frame, wx.wxID_ANY)
frame:Show(true)
end
main()
wx.wxGetApp():MainLoop()