[Resolved] newRect, setReferencePoint, and width

Why does this rect not expand along the positive x axis?

local trect = display.newRect(30, 10, 1, 15)  
trect:setFillColor(0,255,0,255)  
trect:setReferencePoint(display.TopLeftReferencePoint)  
trect.trans = transition.to(trect, {time=3000, width=200})  

It expands both positive and negative. How is a positive x axis only, width transition achieved? [import]uid: 21331 topic_id: 24260 reply_id: 324260[/import]

try giving changing the xScale value in transition.to. [import]uid: 64174 topic_id: 24260 reply_id: 98047[/import]

Doh! You da man! Thanks for the kick! [import]uid: 21331 topic_id: 24260 reply_id: 98069[/import]