hi,
I have a flash application this application is having only
one single frame, every thing is available on the single frame..
i want to use preloader for this applicaton....
Preloader is on tha same single frame..
i have a text box named txtBX on stage.. and using the
following code to monitor number of bytes loded.. but here i am
unable to see the progess of bytes loaded in the text box..
it is appearing with number of total bytes when all flash
application is completely loaded.
function chk() {
_root.txtBX.text = _root.getBytesLoaded();
}
setInterval(chk, 10);
do u have any solution ??