Programalama > FLASH

Etiketler: aktif, pasif, buton

Ort. 0
Puan ver:
sahnemizin ilk frame ine şu kodlar yazılır;


//protoyu yaziyoruz
MovieClip.prototype.butonlari_iptal_et = function (buton) 
{ 
for (var i in this) 
{ 
if (this[i].__proto__ == Button.prototype) 
{ 
this[i].enabled = !buton; 
} 
else if (this[i].__proto__ == MovieClip.prototype && this[i]._parent == this) 
{ 
this[i].butonlari_iptal_et (buton); 
} 
} 
};

//protoyu fonksiyona donusturuyoruz
kur (MovieClip.prototype, "butonlari_iptal_et", 1); 

//kullanim_sekli
butonlari_iptal_et (true); 
mc.butonlari_iptal_et (false);


Yorumlar                 Yorum Yaz
Bu hazır kod'a ilk yorumu siz yapın!
KATEGORİLER
ASP - 240
ASP.NET - 24
C# - 75
C++ - 174
CGI - 8
DELPHI - 247
FLASH - 49
HTML - 536
PASCAL - 246
PERL - 11
PHP - 160
WML - 9
XML - 2
Copyright © 2002 - 2024 Hazır Kod - Tüm Hakları Saklıdır.
Siteden yararlanırken gizlilik ilkelerini okumanızı tavsiye ederiz.
hazirkod.com bir İSOBİL projesidir.