I’ve tried to build up a little menu/breadcrumb, which I thought would be as simple as could be. Buttons with InstanceNames and their corresponding FrameLabel. Home, Portfolio and Contact work, but not the others? I even put a basic trace to see if the onRelease was working, and it wasn’t, even though the code for each button is the same??
Thanks in advance to anyone who can show me what I’ve done wrong.
stop();
btn_home.onRelease = function() { gotoAndStop('home'); }
btn_portfolio.onRelease = function() { gotoAndStop('portfolio'); }
btn_film.onRelease = function() { gotoAndStop('film'); }
btn_posters.onRelease = function() { gotoAndStop('posters'); }
btn_artwork.onRelease = function() { gotoAndStop('artwork'); }
btn_visualskecthes.onRelease = function() { gotoAndStop('visualskecthes'); }
btn_titlesequences.onRelease = function() { gotoAndStop('titlesequences'); }
btn_salesmaterials.onRelease = function() { gotoAndStop('salesmaterials'); }
btn_music.onRelease = function() { gotoAndStop('music'); }
btn_other.onRelease = function() { gotoAndStop('other'); }
btn_corporateid.onRelease = function() { gotoAndStop('corporateid'); }
btn_publications.onRelease = function() { gotoAndStop('publications'); }
btn_theatre.onRelease = function() { gotoAndStop('theatre'); }
btn_typefaces.onRelease = function() { gotoAndStop('typefaces'); }
btn_contact.onRelease = function() { gotoAndStop('contact'); }