Nicht mehr ganz neu hier
Nunja ich habe folgendes Problem beim teil 2 dieser meines Überflugs nach zu sehen doch sehr guten Tutorial reihe.
Und zwar Liefert mir die Aktion auf dem Ball
onMouseMove = function(){
mc._width = _xmouse;
mc._height = _ymouse;
}
einen Compiler fehler : Anweisung muss innerhalb einer on/onClipEvent-Prozedur vorliegen
Ich habe jetzt schon folgendes probiert:
onClipEvent (mouseMove) {
onMouseMove = function(){
mc._width = _xmouse;
mc._height = _ymouse;
}
updateAfterEvent();
}
und
onClipEvent (enterFrame) {
onMouseMove = function(){
mc._width = _xmouse;
mc._height = _ymouse;
}
updateAfterEvent();
}
Compiler Fehler ist weg aber machen tut das ding garnichts ;/
Und zwar Liefert mir die Aktion auf dem Ball
onMouseMove = function(){
mc._width = _xmouse;
mc._height = _ymouse;
}
einen Compiler fehler : Anweisung muss innerhalb einer on/onClipEvent-Prozedur vorliegen
Ich habe jetzt schon folgendes probiert:
onClipEvent (mouseMove) {
onMouseMove = function(){
mc._width = _xmouse;
mc._height = _ymouse;
}
updateAfterEvent();
}
und
onClipEvent (enterFrame) {
onMouseMove = function(){
mc._width = _xmouse;
mc._height = _ymouse;
}
updateAfterEvent();
}
Compiler Fehler ist weg aber machen tut das ding garnichts ;/
Zuletzt bearbeitet: