NetPerformance
Erfahrenes Mitglied
Hallo,
ganz unten " trace(_root.kugelName._y);" gibt undefined aus .. why ?!
das duplizieren der movies funktioniert ohne probleme.. ich kann aber die movies nicht ansprechen.
Gruß und Dank
Aaron
ganz unten " trace(_root.kugelName._y);" gibt undefined aus .. why ?!
das duplizieren der movies funktioniert ohne probleme.. ich kann aber die movies nicht ansprechen.
Gruß und Dank
Aaron
Code:
onClipEvent (load)
{
_root.kugel._visible = false;
counter = 1;
}
onClipEvent (enterFrame) {
if (this._x>=504) {
this._x = 504;
}
if (this._x<=18) {
this._x = 18;
}
if (Key.isDown(Key.RIGHT)) {
this._x += 5;
}
if (Key.isDown(Key.LEFT)) {
this._x += -5;
}
if (Key.isDown(Key.SPACE))
{
_root.kugelName = "kugel"+counter;
// trace(_root.kugelName);
kugelNameX = _root.kanone._x+15;
kugelNameY = _root.kanone._y-10;
_root.kugel.duplicateMovieClip(_root.kugelName, counter, {_y:kugelNameY, _x:kugelNameX});
counter++;
/*
function moveKugel()
{
_root.kugelName._y += 10;
trace(_root.kugelName);
}
setInterval(moveKugel, 50);
*/
}
_root.kugelName._y += 50;
trace(_root.kugelName._y);
}