local t1 = native.newTextField( 10, 300, 180, 30 ) transition.from( t1, { time = 100, x = 200 } ) transition.to( t1, { time = 100, x = 200 } )
Hey Icy Spark, everyone,
Let’s get clear on “you have to pass a display object to a transition.to call”. That means you’re calling a transition on a nil object.
It was not there in Transition1.0 and thus things were error prone.
So if you run my small snippet above, it will work. If you get the error you mentioned, then you are really calling a transition on a nil object…
Alex