Stage:
- A movieclip called “contentMC” with a textfield “contentTF” that has loaded htmlText in it with <a href> tags.
- Added MouseEvent.MOUSE_UP and MouseEvent.MOUSE_DOWN listeners to “contentMC” with:
function mouseDown(e:MouseEvent):void {
e.target.startDrag();
};
function mouseUp(e:MouseEvent):void {
e.target.stopDrag();
};
How can I enable the use of both dragging and dropping of the contentMC, and enable the use of the <a href> tag in the contentTF textfield in it?