continued from last post:
I wanted to overlap several (moving) backgrounds over one another by using scriptclip. But it seems scriptclip cannot handle layer the way I hoped it to, so instead it will use one clip and overlap it on ... its moving self. Or it will move a background that it is not supposed to move.
The way I hoped it was possible, shortly summarized:
base
pic1
pic2
pic3
scriptclip(base, """layer(pic1, x=current_frame*-5, ColorKeyMask($FFFFFF))""")
scriptclip(last, """layer(pic2, x=current_frame*-10, ColorKeyMask($FFFFFF))""")
scriptclip(last, """layer(pic3, x=current_frame*-22, ColorKeyMask($FFFFFF))""")
Here are my files. I would be glad if someone could take a look at it.
http://www.file-upload.net/download-6939432/test.zip.html
street.png is the base.
I wanted to overlap bg3 (slow moving) on bg4 (slowest moving).
Then I wanted to overlap bg2 (medium moving) on that^.
Then I wanted to overlap bg1 (fast moving) on that^.
Then I wanted to overlap that^ on the base (not moving).
Then I wanted to overlap marioside.png (moving, variable) on that^.
Then I wanted to overlap bg0 (fastest moving) on that^.
Is this possible or not?