Buttons NOT working in INfinite menu

The buttons dont seem to work.

If I press on the buttons I want to go the the some scene (home) and open large image of thumbnail scroll

I have used this

on (release) {
_root.gotoAndPlay(“home”, 7);
}

It wont work. but when i change the code to:

on (release) {
getURL(“http://www.momentumdesign.com.au/”);
}

it works.

I have tried

on_(release)_{

______root.gotoAndPlay(“Scene 2”,_1);

}

but no luck

Thanks
http://www.isweb.com.au/craig/

hmmm… try using telltarget command instead…

on (release) {
tellTarget(_root) {
gotoAndPlay(“home”,7);
}
}

Hope it helps… :slight_smile:

Thanks

That works

No problem… :slight_smile: I’ve also been through with that problem before. :slight_smile: hehe

Cheers!