Kax my old friend.
How does this work
Do i put it on the finish line.
I did that dont work.
Did you undertand what i said if not Exaplined better
I am making a car game so far one level one car and one finish line.
When my car hits the Finish line i want it so the lpas(Dynamic text)
Goes up only one.
Then when it hits the checkpiont and all the checkpoints.
It will make it so when i hit the finishline again it will o up.
See what i mean.
Maybe an example will help me.
That works good
But i dont have to go in a the track
I only have to go up and down and get filled up on the laps.
Maybe checkPints can help ill try that.
Can someOne please help please.
I want checkPints i guess i almost had it but it messed up.
Maybe an example
Do you want my FLA
::He crys a river and will die the next day::
onClipEvent (load) {
_root.checkpoint1._visible = true
_root.checkpoint2._visible = false
_root.checkpoint3._visible = false
// and so on
}
onClipEvent (enterFrame) {
if (this.hitTest(_checkpoint1)) {
_root.checkpoint2._visible = true
}
if (this.hitTest(_root.checkpoint2)) {
_root.checkpoint3._visible = true
}
// and so on
}