This is a little involved, so bear with me.
I\'ve got two Android apps - one built in Adobe Air (the \'launcher\') and one downloaded from the google play s
What you're calling a "window" is referred to in Android as a "task". You should be able to force the target application to open in a new task by setting appropriate flags, namely FLAG_ACTIVITY_NEW_TASK
(note the launchFlags=0x10000000
):
intent:#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10000000;component=/.;end