This question is a follow up to the questions on link: Making a Movieclip which is set as mask clickable and respond to MouseEvents
The structure of your layers that I have on stage looks like this:
holder_mc
- dragCanvas_mc
- mask_mc
- canvas_mc
dragCanvas_mc - used for panning puposes.
mask_mc - Mask for canvas_mc
I am facing a problem now. I cannot get MouseEvents to be registered on the canvas_mc
This is required because I have to make drawings to the canvas
holder_mc.canvas_mc.addEventListener(MouseEvent.MOUSE_DOWN,onStartDrawing);
function onStartDrawing(evt:MouseEvent)
{
trace("Hello");
}
I cannot see Hello in output window. Any idea where I am wrong. Thanks in advance.
1st- does your canvas_mc is an empty movie clip? if yes then you need to add some background where you would be able to click.2nd- does your dragCanvas_mc is overlaying the canvas_mc? if yes it shold not, because it will take all of the mouse event to it self. – Jevgenij Dmitrijev Jul 27 '11 at 8:04