If I have only one destination for my event, does it then make sense to use
function someFunction(e:Event):void
{
e.stopImmediatePropagation();
//more code
}
or does it not make any difference?
In my mind if the ‘event’ is not stopped it keeps going and somehow uses up system resources until it finally hits the bottom or bubbles out of the top. But then I don’t base this on anything other than speculation. Also as the native code seems to create masses of events all over the place I imagine that this must be incorrect as it would be extremely inefficient ?
Thanks for your consideration, any light shed on the matter is greatly appreciated.
S.