Here’s what i want.
local actualH = display.actualContentHeight local actualW = display.actualContentWidth local centerX = display.contentCenterX local centerY = display.contentCenterY local BG = display.newRect( centerX, centerY, actualW, actualH ) BG:setFillColor( 1, 0, 0 ) bob = transition.to( BG, { time = 1000, setFillColor( 0, 0, 1 )})
But transition.to doesn’t let you do that.
–SonicX278