CoboCards App FAQ & Wishes Feedback
Language: English Language
Sign up for free  Login

This flashcard is just one of a free flashcard set. See all flashcards!

All main topics / Internet/Intranet / Flash und Webtechnologien / FLASH und Internet
74
Warum funktioniert das Drag & Drop nicht richtig?

stop();
this.objekt_mc.buttonMode = true;
this.objekt_mc.addEventListener(MouseEvent.MOUSE_DOWN, onHand);

function onHand (e:MouseEvent):void {
e.target.startDrag(false, new Rectangle (100,100,550,400));

}
stop();
Es fehlt der Eventlistener zum Loslassen:


this.objekt_mc.buttonMode = true;
this.objekt_mc.addEventListener(MouseEvent.MOUSE_DOWN, onHand);

function onHand (e:MouseEvent):void {
e.target.startDrag(false, new Rectangle (100,100,550,400));
stage.addEventListener(MouseEvent.MOUSE_UP, onLoslassen);
}

function onLoslassen (e:MouseEvent):void {
this.objekt_mc.stopDrag();
stage.removeEventListener(MouseEvent.MOUSE_UP, onLoslassen);
}
New comment
Flashcard info:
Author: CoboCards-User
Main topic: Internet/Intranet
Topic: Flash und Webtechnologien
Published: 14.10.2014

Cancel
Email

Password

Login    

Forgot password?
Deutsch  English