Nicht mehr ganz neu hier
Hallo ich hab ein kleines problem ich hab ein mp3 player gebaut und wollte da eine positions anzeige einbauen. dazu habe ich einfach einen waagerechten strich gemacht und ein kleines quadrat der halt auf dem strich langläuft
so zwar ein tutorial dazu gefunden aber irgendwie klappt das nich so ganz
hier mal der code
onClipEvent(load){
startx = this._x;
}
onClipEvent(enterFrame) {
this._x = startx + (261*(((_root.snd.position)*100)/_root.snd.duration/100));
if(_root.snd.position == _root.snd.duration && _root.posi < _root.anzahl && _root.snd.position > 2) {
_root.posi++;
this._x = startx;
_root.playSound();
} else if (_root.snd.position == _root.snd.duration && _root.posi == _root.anzahl&& _root.snd.position > 2) {
_root.posi = 1; this._x = startx;
_root.playSound();
}
}
was muss ich machen damit es funktioniert
so zwar ein tutorial dazu gefunden aber irgendwie klappt das nich so ganz
hier mal der code
onClipEvent(load){
startx = this._x;
}
onClipEvent(enterFrame) {
this._x = startx + (261*(((_root.snd.position)*100)/_root.snd.duration/100));
if(_root.snd.position == _root.snd.duration && _root.posi < _root.anzahl && _root.snd.position > 2) {
_root.posi++;
this._x = startx;
_root.playSound();
} else if (_root.snd.position == _root.snd.duration && _root.posi == _root.anzahl&& _root.snd.position > 2) {
_root.posi = 1; this._x = startx;
_root.playSound();
}
}
was muss ich machen damit es funktioniert