Have you tried not using a behavior and moving the object directly with the polar equation r=a*cos(2*theta)?
Something like:
Var theta=0
Var rot=0
Every tick
— sprite: set position to 320,240
— add 30*dt to theta
— sprite: move 200*cos(2*theta) pixels at angle theta+rot
That will move it along the path and it starts on a leaf. You can rotate the whole path with the rot variable.
You can also change the angle of the sprite to be at the angle its moving by saving the old position before moving and setting the angle to angle(prevX,prevY,x,y) after you move it.