Thanks to all, I learnd and became able to make a simple up-and-down object.
/54/27/38963/1.html
Now I want to be on the next stage.
What is a simple up-and-down object?
1.If you tauch A, it moves up 1m.
2.If you touch A again, it moves down 1m.
CODE
1[ A ]
==> ==>
[ A ] 2[ A ]
Now I prepare the same two objects, A and B. And A is on B.
CODE
[ A ]
[ B ]
1.If you touch A, it moves up normaly.
2.And thereafter if you tocuh B, it also moves up normaly.
3.But both A and B are in up state, if you touch A, the both must move down.
4.Of course, you touch B at first, the both must move up.
CODE
1[ A ] [ A ] [ A ]
2[ B ] 4[ B ]
==> ==> ==> ==>
[ A ] 3[ A ]
[ B ] [ B ] [ B ]
I looked through the Wiki to work out above and found the Collision event.
But it seems to be available if those objects are physical. I think those
movings are not for physical though.
And even if Collision event is available, I have no idea how to make both of
two objects move. How should I think to accomplish this?
Anyone, please help me.