Alex
02-27-2003, 02:37 PM
Hi There,
I know a similar question was just asked, but I couldn't understand the answer. Hope someone can point me in the right direction.
Okay. I'm trying to make a Navigation-System 4-levels deep. Meaning:
Menu A -------------- Menu B ---------------- Menu C ---------------- Product
Thus, you have various options in Menu A, depending on what you choose, various options will appear along with a new Menu B, from which you'll make a selection and Menu C will appear, etc. etc.
I was thinking of using a clip event like the following:
---onClipEvent (load) {
_level0.posy = ["1162", "902", "620", "338", "122", "-166", "-434"];
_level0.trigger=0
}
onClipEvent (enterFrame) {
this._y = this._y+(_level0.posy[_level0.trigger]-this._y)/.8;
---}
I know a similar question was just asked, but I couldn't understand the answer. Hope someone can point me in the right direction.
Okay. I'm trying to make a Navigation-System 4-levels deep. Meaning:
Menu A -------------- Menu B ---------------- Menu C ---------------- Product
Thus, you have various options in Menu A, depending on what you choose, various options will appear along with a new Menu B, from which you'll make a selection and Menu C will appear, etc. etc.
I was thinking of using a clip event like the following:
---onClipEvent (load) {
_level0.posy = ["1162", "902", "620", "338", "122", "-166", "-434"];
_level0.trigger=0
}
onClipEvent (enterFrame) {
this._y = this._y+(_level0.posy[_level0.trigger]-this._y)/.8;
---}