Alert popup sent from outside source

Hi all,

I had a quick question regarding sending users to my future games.  I was wondering if it was possible to make it so that when I release a new game I can send out alerts (the in-app popups) to my other games telling players to check out my new game (not the push notification, but rather the popup dialogue box).

If something like this is possible it would be great if you can point me in the right direction towards getting something like this to work.

Thanks!

You could have a web server where you could have a text file with a message in it (you might also want to have a date in it as well). Then you can use network.request() to fetch the file. If the date is newer than the last time you showed a message, then you can popup an alert.

But your other apps would have to know about how to do this.

Rob

You could have a web server where you could have a text file with a message in it (you might also want to have a date in it as well). Then you can use network.request() to fetch the file. If the date is newer than the last time you showed a message, then you can popup an alert.

But your other apps would have to know about how to do this.

Rob