If this is for the PC or MAC then the event.phases woudl be like this
local function onRowTouch(event) local row = event.target if event.phase == "down" then local rowIndex = event.target.index print("Row Index: " .. rowIndex) elseif event.phase == "up" then print("hello") end return true end
And what is your event listener?
