native.newTextField() with alpha transition bug

Dear Corona,

Problem : Windows simulator error when an alpha transition is applied to a newTextField(). See code below.

Windows Simulator (2013.2109). It works fine on Mac simulator & Android device.

Bug report has been made (#30100)

local tHeight = 30 local textField = native.newTextField( 15, 80, 280, tHeight ) textField.x = display.contentCenterX textField.y = display.contentCenterY transition.from( textField, { time=1500, alpha = 0.0 } )