Transition.to to jump

Hi, everyone. I’m looking for a code or a help to make my actor to jump from right to left and from left to right(portrait position). I did this using transition.to but I want that my actor jumps to arc way form. Can I do that using transition.to? Can anyone help me? Sorry my english. Thanks.

That’s my code: Jump is a touch event

local Jump = function( event )

if gameIsActive then

if event.phase == “began” then

if event.x > 1 and event.x < 319 and event.y > 1 and event.y < 450 then

if( player.x == 48 ) then
transition.to( player, { time = 400, x = 272 })
elseif( player.x == 272 ) then
transition.to( player, { time = 400, x = 48 })
end

end
end
end
end [import]uid: 40281 topic_id: 11726 reply_id: 311726[/import]