Chris Kurt
Erfahrenes Mitglied
onClipEvent (enterFrame) {
temp=this._currentframe;
if (temp > 10)
with (this) {
_x=(_x>550)?10_x+5);
_y=100+math.sin(_x/20)*50;
}
}
so müsste das gehen, indem du erst guckst an welcher stelle das huhn grad is (ob es noch fliegt oder schon explodiert) und dementsprechend sinus an oder aus.
falls das nich klappt nochma ne andere schreibweise
onClipEvent (enterFrame) {
temp=getProperty(_root.huhn,_currentframe);
with (this) {
_x=(_x>550)?10_x+5);
_y=100+math.sin(_x/20)*50;
}
}
so in der art...
·kuat·
temp=this._currentframe;
if (temp > 10)
with (this) {
_x=(_x>550)?10_x+5);
_y=100+math.sin(_x/20)*50;
}
}
so müsste das gehen, indem du erst guckst an welcher stelle das huhn grad is (ob es noch fliegt oder schon explodiert) und dementsprechend sinus an oder aus.
falls das nich klappt nochma ne andere schreibweise
onClipEvent (enterFrame) {
temp=getProperty(_root.huhn,_currentframe);
with (this) {
_x=(_x>550)?10_x+5);
_y=100+math.sin(_x/20)*50;
}
}
so in der art...
·kuat·