Here is my site. http://www.alimirza.com
Loading is perfect with loadbar but it doesn’t going well with percentage field which shows only 1% or 2% though bar progress with the load data.
One more thing on my index.swf the main loader doesn’t appear and work.
[AS]
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent100;
_root.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
_root.gotoAndStop(5);
}
[/AS]
I double checked them.
loadBar for external swf is working perfectly but same place loadText %field not working at all infact giving 1% or 2% doesn’t excede.
Let me upload my FLA’s n If you do get sometime to look at them
thanks.
mlkdesign that right for the external.swf and thanks for it:)
But
what about loader on my main swf.its not showing up at all.
on first frame script is following with label “kick”
[AS]
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent100;
_root.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
_root.gotoAndStop(5);
}
[/AS]
on 4th frame
It is embeded with all characters.
because I am using the same loader’s copy everywhere else in mysite.
Problem is being loadbar and textfiled and loading…mc in first frame do not appear till 48kb or 50kb loaded.