Can someone send me a exemple of a window. Like the Calculator from Soada?
Huh?
This code above isn’t including content, I don’t know how to program it. But you can set in the Main class the Name and the Logo of the Window with
-- setup
win = Window(50, 50)
win.logo = readImage("Documents:Logo")
win.name = "My Window Test"
-- draw
win:draw()
-- touched (t)
win:touched(t)
--[[
Information
With win.drawing = true, you can set it visible again.
]]
@TokOut thanks