Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check if a SWF is running as an AIR app?

I'm wondering if there is a way for a SWF to check at runtime whether it is running as an online SWF or an AIR app? I need to use the same SWF to run both online and locally, however when running as an AIR app, external assets are located in a different directory. I'd like to check whether a SWF is local or online so I can change the source path for external assets accordingly.

Thanks, Sandro

Edit: I just realized this might be a dumb question. :) I may just use flashvars to tell the SWF that it is running within an AIR app.

like image 798
Sandro Avatar asked Apr 08 '10 17:04

Sandro


1 Answers

You can use the Capabilities class.

import flash.system.Capabilities;

switch (Capabilities.playerType) {
    case 'Desktop':
        //air runtime
        break;
    case 'PlugIn':
    case 'ActiveX':
        //browser
        break;
}

Further information from Adobe's ActionScript 3 Reference.

like image 101
mrkishi Avatar answered Sep 28 '22 13:09

mrkishi