Ho un sacco di pulsanti e ad ognuno devo associare questo script:
codice:
_root.galldesign.intgalldesign.d1.puls.onRelease = function() {
	_root.imagermenu._index = 1;
	if (_root.imagermenu.initialized && _root.imagermenu._currentframe == 16) {
		_root.imagermenu.gotoAndPlay("out");
	} else {
		_root.imagermenu.loadImage(_root.imagermenu._index);
	}
};
_root.galldesign.intgalldesign.d2.puls.onRelease = function() {
	_root.imagermenu._index = 2;
	if (_root.imagermenu.initialized && _root.imagermenu._currentframe == 16) {
		_root.imagermenu.gotoAndPlay("out");
	} else {
		_root.imagermenu.loadImage(_root.imagermenu._index);
	}
};
_root.galldesign.intgalldesign.d3.puls.onRelease = function() {
	_root.imagermenu._index = 3;
	if (_root.imagermenu.initialized && _root.imagermenu._currentframe == 16) {
		_root.imagermenu.gotoAndPlay("out");
	} else {
		_root.imagermenu.loadImage(_root.imagermenu._index);
	}
};
Qualche anima pia mi saprebbe aiutare a fare un riassunto