ava99
Erfahrenes Mitglied
hallo,
wollte dies hier:
in den untigen code einbau.
hab keine idee, wie dies mache
vielleicht hat einer von euch eine
grüße
ava99
wollte dies hier:
Code:
rightedge=550;
leftedge=0;
topedge=0;
bottomedge=400;
Code:
onClipEvent( Load ){
a = 3
b = -3
rightedge=550;
leftedge=0;
topedge=0;
bottomedge=400;
}
onClipEvent( EnterFrame ){
if (!_root.all.bod.hitTest(this)) {
if (Key.isDown(40)) {
a = a - 3
}
a = a - 0.9
if (Key.isDown(39)) {
b = b + 3
}
if (Key.isDown(37)) {
b = b - 3
}
}
if (_root.bod1.hitTest(this)) {
a = a * -0.8
b = b * -0.8
this._yscale = this._yscale - 20
this._xscale = this._xscale + 20
_root.bod1._yscale = _root.bod1._yscale - 20
} else {
_root.bod1._yscale = 100
this._yscale = 100
this._xscale = 100
}
if (_root.all.bod.hitTest(this)) {
a = a * -0.8
} else {
this._yscale = 100
this._xscale = 100
}
if (Key.isDown(38)) {
a = a + 3
}
if (_root.home.hitTest(this)) {
_root.home._x = _root.home._x + 3
_root.home._yscale = _root.home._yscale + 5
this._visible = false
}
this._x = this._x + b
this._y = this._y - a
}
vielleicht hat einer von euch eine
grüße
ava99
Zuletzt bearbeitet: