Jag är ganska ny på flasch och har jusst börjat försökalära mej lite actionscript... hmm... verkar ha blivit nått cp med koden...Problem med flash...
Nu har jag gjort så man kan flytta en bild med pilarna.. de här koden har jag använt
<code>
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
this._x+=20;
} else if (Key.isDown(Key.LEFT)) {
this._x-=20;
}
if (Key.isDown(Key.DOWN)) {
this._y+=20;
} else if (Key.isDown(Key.UP)) {
this._y-=20;
}
}Sv: Problem med flash...
Jag är ganska ny på flash och har just börjat försöka lära mej lite actionscript
Nu har jag gjort så man kan flytta en bild med pilarna.. den här koden har jag använt
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
this._x+=20;} else if (Key.isDown(Key.LEFT)) {
this._x-=20;
}
if (Key.isDown(Key.DOWN)) {
this._y+=20;
} else if (Key.isDown(Key.UP)) {
this._y-=20;
}
}