eschrict
09-26-2003, 08:51 PM
well im stumped. When I free transform my percent text and put it at any angle in my preloader it doesnt show up when i test it, yet if i put it back to default it shows up! What could i do to manipulate my PercentText box? ooh ya i'm using flashmx.
Edited: This is my action script for my preloader where my action is
stop();
_root.onEnterFrame=function() {
if (_root.getBytesLoaded() < _root.getBytesTotal()) {
Total = _root.getBytesTotal() / 1000;
Received = _root.getBytesLoaded() / 1000;
Percentage = (Received / Total) * 100;
_root.PercentText = int(Percentage) add "%";
_root.ProgressBar._xscale=Percentage;
} else {
_root.play();
_root.onEnterFrame=null
}
-------------------------------------------
_root.PercentText = int(Percentage) add "%";
My Percent Text box is fine when not touched but how can i manipulate it to be at an angle instead?
Edited: This is my action script for my preloader where my action is
stop();
_root.onEnterFrame=function() {
if (_root.getBytesLoaded() < _root.getBytesTotal()) {
Total = _root.getBytesTotal() / 1000;
Received = _root.getBytesLoaded() / 1000;
Percentage = (Received / Total) * 100;
_root.PercentText = int(Percentage) add "%";
_root.ProgressBar._xscale=Percentage;
} else {
_root.play();
_root.onEnterFrame=null
}
-------------------------------------------
_root.PercentText = int(Percentage) add "%";
My Percent Text box is fine when not touched but how can i manipulate it to be at an angle instead?