Never tried that but it doesn't surprize me and sorry this won't really help just explain.
If you delve into the code of Motion Paths the actual path is stored in a VML path which in it's simplest form might look like
M 0, 0, L 0.5, 0.25 E
The important bit is what this means!M=Move 0,0 is where you are now L is LINE and E is END
BUT.... 0.5 means MOVE 0.5 * slide width right and 0.25 means MOVE 0.25 * Slide Height down. You can see that if you change the slide size this could get unpredictable the distance moved is relative to the slide size.
|