Question
moviecliploader problem
i ve the code above and the result is someting like this :
www.yusufonaldi.com/layer/kliploader.swf
while preloading it shows the swf files first frames and stops. after loading sometimes it doesn't work, sometimes works if you refresh the page. i did'n solve this problem. what can it be?
-i use flash 8
-i ve used to video2swf software to convert the video file to swf.
-swf is 370 kb.
-i publish the fla in A.S.2 and flash 8 format
var klipLoader = new MovieClipLoader();
klipLoader.onLoadStart = function (bosklip) {
kutu.text="laoding"
}
klipLoader.onLoadProgress = function (bosklip, yuklenen, total) {
yuzde=Math.floor( yuklenen/total*100);
bar._xscale=yuzde;
kutu.text="% "+yuzde+" yükleme yapıldı"
}
klipLoader.onLoadComplete = function (bosklip){
kutu._visible=false;
bar._visible=false;
barcervece._visible=false;
}
klipLoader.onLoadInit = function (bosklip) {
bosklip._width = 170;
bosklip._height = 170;
}
klipLoader.onLoadError = function (bosklip, hata) {
if(hata=="URLNotFound"){
kutu.text="Dosya bulunamadı";
}else if(hata=="LoadNeverCompleted"){
kutu.text="Bağlantı kesildi";
}
}
klipLoader.loadClip("a1.swf","_root.bosklip");
while preloading it shows the swf files first frames and stops. after loading sometimes it doesn't work, sometimes works if you refresh the page. i did'n solve this problem. what can it be?
-i use flash 8
-i ve used to video2swf software to convert the video file to swf.
-swf is 370 kb.
-i publish the fla in A.S.2 and flash 8 format
var klipLoader = new MovieClipLoader();
klipLoader.onLoadStart = function (bosklip) {
kutu.text="laoding"
}
klipLoader.onLoadProgress = function (bosklip, yuklenen, total) {
yuzde=Math.floor( yuklenen/total*100);
bar._xscale=yuzde;
kutu.text="% "+yuzde+" yükleme yapıldı"
}
klipLoader.onLoadComplete = function (bosklip){
kutu._visible=false;
bar._visible=false;
barcervece._visible=false;
}
klipLoader.onLoadInit = function (bosklip) {
bosklip._width = 170;
bosklip._height = 170;
}
klipLoader.onLoadError = function (bosklip, hata) {
if(hata=="URLNotFound"){
kutu.text="Dosya bulunamadı";
}else if(hata=="LoadNeverCompleted"){
kutu.text="Bağlantı kesildi";
}
}
klipLoader.loadClip("a1.swf","_root.bosklip");