Here is the code of a falling tree for example:
local object = Objects["tree_1"]
object.RotationCenter = {x = 1280, y = 410}
object:to(1000, {Rotation = math.rad(90)}, easeBounceOut)
You need a link to an object (first line), you have to set the rotation center to the root of the tree (second line) and the third line rotates the tree a quarter turn (90 degrees) in a time of one second (1000 ms) with a bounce effect at the end of the rotation.
This easing functions you can apply to: translation, rotation, scaling, visibility (did I forget something?)
More informations about easing functions you can find here:
http://easings.net/In Visionaire the keywords are swapped. For example "ease
OutBounce" on the website above is "easeBounce
Out" in Visionaire!