I’ve done an Air app and now I realize I need to run two instances of it at the same time. I’ve searched the web and first it seemed that it was impossible, but I’ve found something about the invoke event. Pretty much all I’ve found was for flex and I just use plain flash cs5 so it’s of no good to me. So far I have this function that I think is supposed so be called every time the app is launched:
function invokeHandler(e:InvokeEvent) {
}
NativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE, invokeHandler);
If this is right, what I’m totaly missing is the “open a new instance” part. Is that even possible? Thanks for the help, it is much appreciated as I am new to both AS3 and Air!