Flash Actionscript : Cookie Örnek Uygulaması

advertisement
Cookie Örnek Uygulaması
Cookie Örnek Uygulaması
Movie Clip'e ait sesi açıp kapatan ve bu durumu cookie ile tarayıcıya yazıp
daha sonra siteye gelindiğinde cookie değerine göre animasyondaki sesi
açıp kapatan uygulama örneği
Aşağıdaki kodlar Action Script 3.0 a göre yazılmıştır.
var SesYok:String=stage.loaderInfo.parameters["sessiz"]; //Sayfadan Gelen parametre
var Cerezim=SharedObject.getLocal("SesVarmiYokmu"); //Nesnemizi çagıralım
if (Cerezim.data.SesVarmi==null){
//Nesne yok demekki, olusturalim
Cerezim.data.SesVarmi=1; //Degiskenimiz
Cerezim.flush();
}
var Ses:SoundTransform = new SoundTransform();
seskes.addEventListener(MouseEvent.CLICK, onClick);
if(SesYok=="1"){
Ses.volume = ;
SoundMixer.soundTransform = Ses;
seskes.gotoAndStop(2); //Ses acma animasyon
}
if(Cerezim.data.SesVarmi==){
SesiKapat();
}
function onClick(event:MouseEvent):void {
if (Ses.volume>) {
SesiKapat();
} else {
SesiAc();
}
}
function SesiKapat(){
www.dijitalders.com
Cookie Örnek Uygulaması
1
Cookie Örnek Uygulaması
Ses.volume = ;
SoundMixer.soundTransform = Ses;
seskes.gotoAndStop(2); //Ses acma animasyonu
Cerezim.data.SesVarmi=; //Sesi kapatti bilgisini tarayiciya kaydediyoruz
Cerezim.flush();
}
function SesiAc(){
Ses.volume = 1;
SoundMixer.soundTransform = Ses;
seskes.gotoAndStop(1); //Ses kapama animasyonu
Cerezim=SharedObject.getLocal("SesVarmiYokmu");
Cerezim.data.SesVarmi=1; //Sesi acti bilgisini tarayiciya kaydediyoruz
Cerezim.flush();
}
www.dijitalders.com
Cookie Örnek Uygulaması
2
Download