Good day,
I was wondering if it is possible to insert a timer on my Rectangle Object?
my objective is achieve the same function and behavior like this one, but only using a timer:
local function muRuntime(event) print("RUNTIME FUNCTION") end local a = display.newRect(\_W/2,\_H/2,100,100) a.enterFrame = muRuntime Runtime:addEventListener("enterFrame",a)
