Flash Player Settings

by luciferous forked from [Prototyping] Microphone Study #04 逆再生 (diff: 192)
♥0 | Line 13 | Modified 2012-11-30 03:50:28 | MIT License
play

ActionScript3 source code

/**
 * Copyright luciferous ( http://wonderfl.net/user/luciferous )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/cKbx
 */

// forked from alumican_net's [Prototyping] Microphone Study #04 逆再生
package
{
    import flash.system.Security;
    import flash.system.SecurityPanel;
    import flash.display.Sprite;
    
    public class Main extends Sprite
    {
        public function Main():void
        {
            Security.showSettings(SecurityPanel.MICROPHONE);
        }
    }
}