I want to make these 7 events into one function that I can put on a few different buttons’ onPress function so that I don’t need to have those seven lines of code on every button, just one line instead:
tour_mc.unloadMovie();
logo_mc.tour_subnav.north_nav.enabled = true;
logo_mc.tour_subnav.south_nav.enabled = true;
logo_mc.tour_subnav.victorian_nav.enabled = true;
my_colornorth.setRGB(0x666666);
my_colorsouth.setRGB(0x666666);
my_colorvic.setRGB(0x666666);
Can somebody help me with the syntax? Thanks!