Type Number Event touch Revision 2017.3060 Keywords touch, xStart
The x position of the touch from the "began"
phase of the touch sequence.
local function drawLine( event ) if ( event.phase == "ended" ) then local line = display.newLine( event.xStart, event.yStart, event.x, event.y ) line.strokeWidth = 5 end end Runtime:addEventListener( "touch", drawLine )