- Oct 25, 2018
- 413
- 646
Hi-ho!
First I'd like to thank everyone for all their support. Back in the day, when I taught programming, I used to tell my students "Programming is like banging your head against the Wall because it feels great when you finish". That being said, I have an issue that apparently Google thinks I don't even know how to ask the correct question, so here it is.
I (with much help) have created a transform that will pan slowly up an image, like in Something Unlimited. Code works great:
and called by :
ISSUE #1
I want to be able to scroll back down, but instead of a nice smooth pan, it ZOOMS back to the bottom of the image
So my question is How do I slow it down so I can pan casually up, then casually down at the same pace?
Not looking for anyone to do my work for me , just looking to learn. Thanx in advance (again)
ISSUE #2
Not as important, but would love to learn. I wish to infinitely loop the whole thing. I have tried a gazillion variations of the JUMP statement, but I'm already in a LABEL and don't want to loop the whole label, just the show statements.
First I'd like to thank everyone for all their support. Back in the day, when I taught programming, I used to tell my students "Programming is like banging your head against the Wall because it feels great when you finish". That being said, I have an issue that apparently Google thinks I don't even know how to ask the correct question, so here it is.
I (with much help) have created a transform that will pan slowly up an image, like in Something Unlimited. Code works great:
Code:
transform panzoom:
xalign 0.54
yalign 1.0
linear 12.0 yalign 0.0
Code:
show image001 at panzoom
I want to be able to scroll back down, but instead of a nice smooth pan, it ZOOMS back to the bottom of the image
Code:
transform panzoomback:
xalign 12.0
yalign 0.0
linear 0.54 yalign 1.0
Not looking for anyone to do my work for me , just looking to learn. Thanx in advance (again)
ISSUE #2
Not as important, but would love to learn. I wish to infinitely loop the whole thing. I have tried a gazillion variations of the JUMP statement, but I'm already in a LABEL and don't want to loop the whole label, just the show statements.