how can I dispatch an event from one instance to another? I have trouble targeting them… This is the only thing that comes to my mind, but seems kinda stupid:
for (i=0; i<5; i++){
var lilSprite:MySprite = new MySprite();
addChild(lilSprite)
}
addEventListener("my", targetAll)
function targetAll(e:Event){
for (i=0; i<5; i++){
getChildAt(i).dispatchEvent(new Event("my");
}
}
//
package some {
public class MySprite extends Sprite {
public function MySprite():void {
// do something
addEventListener("my", handleMy);
if (something){
this.root.dispathEvent(new Event("my"));
}
private function handleMy():void {
if(somethingElse){
//handleEvent
}
}
}
}
}