I just did it like this. The paddle is on the bottom of my screen, facing up. That is why the velocity angles are between 0 and -180.
I don't really understand the code, what does the "[x of self]+[number]>[x-center] of [other actor]" means?
[x of self] means the x position in screen of the actor.
I'll give example for [x-center] of [other actor].
Say the other actor is 40 px (x) x 40 px (y) . The screen is 320 px (x) x 480 px (y). x center of other actor is 20 px from the x of the actor.
Say the other actor is placed at origin of the screen (0,0). x center of the other actor would then be 20 px.
Did I make myself clear?