Innanzi tutto devi avere tre istanze diverse della tua clip filmato. Facciamo finta che le chiami btn1, btn2 e btn3

In un fotogramma chiave nella stessa clip che contiene le tre istanze dei bottoni (chiaramente ognuna delle quali con il rispettivo nome istanza appena sopra indicato) aggiungi un codice tipo questo:

codice:
btn1.onPress = function(){
   getURL("pagina1.html");
};

btn2.onPress = function(){
   getURL("pagina2.html");
};

btn3.onPress = function(){
   getURL("pagina3.html");
};