Hello all,
Are there special parameters to print to the simulator console? I have this example:
local bgSky = display.newImageRect(“bgSky.png”, 1750, 1000)
bgSky.x = display.contentCenterX
bgSky.y = display.contentCenterY
local redRect = display.newRect( 650, 350, 250, 250)
redRect:setFillColor( 255, 0, 0)
print( “red rect touched” )
Nothing happens prints in the console when I touch the square, only when I relaunch then red rect touched appears in the console.
I thought you just had to type print(“something”) and it would print, like when you do Hello World.
Appreciate any help,
Thanks