For example:
-- before call moveLoc
prop:getLoc() -- 0, 0
action = prop:moveLoc( 0, 100, 0.5 )
MOAIThread.blockOnAction( action )
-- after call moveLoc
prop:getloc() -- 0, random from 99 - 101
The random number based on the MOAIEaseType using . So i have to save the "wanted coordinate" and call setLoc() after end action. Has anyway to have an "absolute coordinate" after calling moveLoc()?

