Hi all,
I am trying to attach a double click property to a listener like this
button.addEventListener(MouseEvent.DOUBLE_CLICK, function);
but having read the help files it says that this will not work unless you activate the doubleClickEnabled property. But i cant work out how i need to do this! ;(
Can anyone please help me please or stear me in the right direction.
Thank you
Hi again
further to me previous question.
I have just managed to get a single button to work with the double click property by entering buttonName.doubleClickEnabled = true; however, i cannot get it to work on a movie clip which is what i am trying to do?!