Available since version: Gideros 2011.6
"x"
"y"
"z"
"rotation"
"rotationX"
"rotationY"
"scaleX"
"scaleY"
"scaleZ"
"alpha"
"redMultiplier"
"greenMultiplier"
"blueMultiplier"
"alphaMultiplier"
"anchorX"
"anchorY"
"anchorZ"
(number) = Sprite:get(param)
-- the following two lines do the same thing
x = sprite:getX()
x = sprite:get("x")
-- the following two lines do the same thing
y = sprite:getY()
y = sprite:get("y")
-- the following two lines do the same thing
rotation = sprite:getRotation()
rotation = sprite:get("rotation")
-- the following two lines do the same thing
scaleX = sprite:getScaleX()
scaleX = sprite:get("scaleX")
-- the following two lines do the same thing
scaleY = sprite:getScaleY()
scaleY = sprite:get("scaleY")