Hey,
I am currently using the CoronaSKD-2013.2076 - latest version of the CoronaSDK that includes Graphics 2.0 and have encountered a (for this project) big issue. The phases are not sent along.
Using following code I look at all the values in the event table
local scrollListener = function(event) for key,value in pairs(event) do print(key,value) end end slider = widget.newScrollView { top = 275, left = 0, width = display.contentWidth, height = 350, scrollWidth = 465, scrollHeight = 670, friction = 0, verticalScrollDisabled = true, listener = scrollListener, hideScrollBar = true, backgroundColor = {0,0,0,0} }
Only this is returned:
target table: 0x7fb8de4202e0 direction right limitReached false
No phase is being sent with the event table. How can I fix this?