Advertisement
temannyatemanmabok

Script sub_potofolio

Oct 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. sub_portofolio.tombol_photo.addEventListener(MouseEvent.CLICK, perintah);
  2. sub_portofolio.tombol_video.addEventListener(MouseEvent.CLICK, perintah);
  3.  
  4. function perintah(e:MouseEvent){
  5. var nama = e.currentTarget.name.substr(7);
  6. if (nama == "photo"){
  7. sub_portofolio.gotoAndStop("hal_photo");
  8. }
  9. if (nama == "video"){
  10. sub_portofolio.gotoAndStop("hal_video");
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement