-1

I am building 2 applications in flex mobile. These applications should communicate together (a kind of chat system).

My problem is that I cannot run 2 applications in Flex Builder at the same same: any time I launch one instance, the other instance is killed.

Is there a way to launch 2 applications?

Oleh Prypin
  • 33,184
  • 10
  • 89
  • 99
yarek
  • 11,278
  • 30
  • 120
  • 219

1 Answers1

0

You can't launch them both in debug mode; but you should be able to launch one in debug mode and one in "normal" mode.

If you create a separate workspace for each project; you should be able to launch one application per workspace.

JeffryHouser
  • 39,401
  • 4
  • 38
  • 59
  • NO ! event with 2 projetcs, I can just run once instance ! – yarek Oct 04 '12 at 16:17
  • I don't understand your follow up comment. – JeffryHouser Oct 04 '12 at 16:49
  • I mean: you cannot run 2 instances. I tried in debug mode or normal mode. This works prefectly for SWF project, buit not for mobile project – yarek Oct 04 '12 at 22:29
  • @user300675, that's because ADL cannot run multiple application instances. I'd probably setup another development machine (VM would do) and run another debug version. Other than that, you can just deploy one app to a device and use the debug version on your development machine to debug the current session between the two applications. – AlBirdie Oct 05 '12 at 05:42