hey guys,
im making a portfolio atm, its an interactive one, where as you can control the Guy with the keyboard (like a rpg game), walk around a room and once you go to the tv,computer, books etc, a movieclip will play showing all the works ive done, in each category. i set up hittest all over the room, so once you hit it, the movieclips of the works will show. i have a problem, i also have links on the side, so if the user doesn want to use the keyboard can just click away to see my works. the problem is for some reason theres conflict, i try to click on the links and they dont work. eg on the images button i have
on (release) {
_root.images.gotoAndPlay(1)
}
and then on the hittest movieclip (for the guy to walk over) i have:
onClipEvent (enterFrame) {
if (this.hitTest(_root.Guy)) {
this._alpha = 100;
} else {
_root.images.gotoAndPlay(1);
}
}
for some reason the button doesnt work at all, unless i have the guy over the hittest area, then i can click it and it will show, really confused.
to give you guys a better idea, here is my fla, pleazzz help
http://www.student.cofa.unsw.edu.au/~z3162245/helpplz.fla
cheers