|
And, in a Windows world (I don't know about their Mono support) LuaInterface wraps .NET nicely. I'm writing such an app at the moment, and callbacks are such a pleasure: ps.MouseMove:Add(function(sender,e) local coord = get_coordinate(ps,Point(e.X,e.Y)) coordPanel.Text = ('(%5.1f,%5.1f)'):format(coord.X,coord.Y) end) (One can also do Swing apps with LuaJava)steve d.
Hello Steve, I think you are writing a GPS application, no ? on pda or full windows ? Noël