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
2010-05-21 17:16:10
A:
Hi,
Have a look at: LoaderInfo.url
class Main extends Sprite{
public function Main(){
trace(this.loaderInfo.url);
}
}
OXMO456
2010-05-21 22:59:22