Hi I tried to do this :
local line = display.newLine( self.contentGroup, txtScoreValue.x - (txtScoreValue.width/2), txtScoreValue.y + 30, txtScoreValue.x + (txtScoreValue.width/2), txtScoreValue.y + 30) line:setStrokeColor( 255, 225, 204 ) line.strokeWidth = 8
but the setStrokeColor actually causes a runtime error and strokeWidth doesnt change the line thickness?
I tried to follow the documentation but it seem those property and method doesn’t work
How can I change the color and the thickness of a line?