hi
i am making a game i need help in health bar,
when i reduce the health, it gets reduced on both ends. i just wanted it to reduce from the right.
i used the following code on the health bar object,
onClipEvent(enterFrame){
_width=_root.health;
if(_root.health<0){
_width=0;
}
}