I am making the flash bit of a kiosk. The swf will be running in a exe shell.
Is there a way to have the swf see what is containing it (browser, exe shell, my hand, your hand...) and if it is contained by the exe shell it will call fscommands, otherwise it wont? The exe isn't finished yet, and I'd like to test my swf without it giving me security errors. I'd also like to be able to show my boss the swf in as few clicks as possible :P
Something along the lines of this pseudocode:
ActionScript Code:
function firefscommands(e:Event):void{
var displayswf=whatever.is.displayingTheSwf;
if(displayswf==exeShell){
fscommand("yellmystatement");
}
}
Ideas?