Working with ActionScript 3.0, is there a way to determine if my SWF file is been played in the standalone Flash Player or using a browser plugin?
+2
A:
Capabilities.playerType does this:
so:
if (Capabilities.playerType == "StandAlone") {
trace("standalone")
}
dtt101
2010-06-07 15:07:27
the value for a plugin test is "PlugIn"
dtt101
2010-06-07 15:11:45
Thank you very much... Exactly what I wanted!
Michel Lemieux
2010-06-09 15:26:26