SlideShare a Scribd company logo
Coding pada Scene 1



stop();

next2.onPress = function(){

           gotoAndPlay("Scene2",1);

};




Coding pada Scene 2

stop();

nilai=0;

onEnterFrame=function(){

           if(random(10)==0){

                  apel   =      attachMovie("manalagi",

           "manalagi"+_root.getNextHighestDepth(),

           _root.getNextHighestDepth(),

           {_x:random(430),_y:-20});

                  apel.onEnterFrame=function(){

                          this._y+=10;

                          if(this.hitTest(tangkap)){

                                   nilai+=1;

                                   removeMovieClip(this);

                          }

                  };

           }

};

tangkap.onEnterFrame=function(){

           startDrag(this,true,25,610,475,610);

};

More Related Content

PDF
Diff & Integral formula the newtun
PDF
Java Thread Cronometro
DOCX
Cerveza programa
PDF
Java AWT Calculadora
DOCX
Programacion
DOCX
Luis cuñas programacion
DOCX
Code pic
PDF
Diff & Integral formula the newtun
Java Thread Cronometro
Cerveza programa
Java AWT Calculadora
Programacion
Luis cuñas programacion
Code pic

What's hot (18)

PPTX
Алексей Кутумов, C++ без исключений, часть 3
KEY
Sbaw090630
TXT
Assignment
PDF
Configuracion para 877 con fuses
DOCX
c ++ informe Nº5 ucsm
DOCX
Info clasa
DOCX
Rafael vasquez
DOCX
Hace una calculadora en jeank
PDF
openFrameworks基礎 動きを生みだす、アニメーション入門 - 芸大グラフィックスプログラミング演習B
PDF
Overshoot
PPTX
Membuat traffic light dengan avr at mega
DOCX
PPTX
[ShaderX5] 4.4 Edge Masking and Per-Texel Depth Extent Propagation For Compu...
KEY
Sbaw091027
DOCX
DOC
Sources
PDF
Pendekatan Inversi Linier dengan Matriks Jacobi pada Kasus Perhitungan Hipose...
Алексей Кутумов, C++ без исключений, часть 3
Sbaw090630
Assignment
Configuracion para 877 con fuses
c ++ informe Nº5 ucsm
Info clasa
Rafael vasquez
Hace una calculadora en jeank
openFrameworks基礎 動きを生みだす、アニメーション入門 - 芸大グラフィックスプログラミング演習B
Overshoot
Membuat traffic light dengan avr at mega
[ShaderX5] 4.4 Edge Masking and Per-Texel Depth Extent Propagation For Compu...
Sbaw091027
Sources
Pendekatan Inversi Linier dengan Matriks Jacobi pada Kasus Perhitungan Hipose...
Ad

Viewers also liked (18)

PDF
Integridade jornada
PDF
Akoses encantamentos de ifã
KEY
BioLiveCd
PPTX
watch bulls vs hurricanes live tv stream
PPTX
Inspire DGT 業務創意部案例分享 20161219
PPT
La inteligencia 1
PDF
Harley Quinn
PPTX
에버노트 설치및 PC용 에버노트 설치
PPT
God is in the Details
PDF
Connected insurance Observatory - Il giornale delle Assicurazioni
PPTX
Visual Strategies
PDF
教練5步驟-5分鐘認識教練(COACH)
DOC
rahul rathour
PPTX
Manifest Mobiliteit 2.0. Sven Vlassenroot (VIM). Mobility As a Service.
PPT
Cousin cate
PPT
Hora Santa Jesús Eucaristía
DOC
PDF
Manifest Mobiliteit 2.0. Wout Baert (Fietsberaad). Fiets en innovatie
Integridade jornada
Akoses encantamentos de ifã
BioLiveCd
watch bulls vs hurricanes live tv stream
Inspire DGT 業務創意部案例分享 20161219
La inteligencia 1
Harley Quinn
에버노트 설치및 PC용 에버노트 설치
God is in the Details
Connected insurance Observatory - Il giornale delle Assicurazioni
Visual Strategies
教練5步驟-5分鐘認識教練(COACH)
rahul rathour
Manifest Mobiliteit 2.0. Sven Vlassenroot (VIM). Mobility As a Service.
Cousin cate
Hora Santa Jesús Eucaristía
Manifest Mobiliteit 2.0. Wout Baert (Fietsberaad). Fiets en innovatie
Ad

Coding manalagi

  • 1. Coding pada Scene 1 stop(); next2.onPress = function(){ gotoAndPlay("Scene2",1); }; Coding pada Scene 2 stop(); nilai=0; onEnterFrame=function(){ if(random(10)==0){ apel = attachMovie("manalagi", "manalagi"+_root.getNextHighestDepth(), _root.getNextHighestDepth(), {_x:random(430),_y:-20}); apel.onEnterFrame=function(){ this._y+=10; if(this.hitTest(tangkap)){ nilai+=1; removeMovieClip(this); } }; } }; tangkap.onEnterFrame=function(){ startDrag(this,true,25,610,475,610); };