views:

28

answers:

2

Hello i need to know there my flash application is running. in object src my domain. but flash running on others domains. and i want to know where. and send it with request on my server. Thanks. sorry for y bad grammar.

A: 

write some code in your application to send it's domain to a server. There are also good 3rd party tools that can track your app, i like mochi: http://www.mochimedia.com/developers/

Jason Spitkoski
A: 

Hi,

Have a look at: LoaderInfo.url

class Main extends Sprite{

      public function Main(){
           trace(this.loaderInfo.url);  
      }

}
OXMO456