tengo el siguiente reproductor aac que descargue del siguiente [URL="http://www.mediafire.com/?c5wx41zfmi55a0s"]link[/URL]
 
el problema es que al exportar y subir, reproduce automaticamente, necesito que el autoplay este off

este es el cod.    
Código Javascript
:
Ver originalfunction initialize()
{
    _root.connect.streamStr.text = "http://xxx.xxx.xxx:xxx/";
    _root.connect.connectStr.text = "rtmp://xxx.xxx.xx/xxx";
    _root.connect.connectButton.onPress = _root.doConnect;
    _root.connect.connectButton2.onPress = _root.doConnect;
    metaDataValues.title = "";
    metaDataValues.genre = "";
    metaDataValues.name = "";
    metaDataValues.url = "";
    doConnect();
    trace (System.capabilities.version);
}
function updateMetaData()
{
    var _loc1 = "";
    var _loc2 = "#FFFFFF";
    var _loc3 = "#FFFFFF";
    if (metaDataValues.title != "")
    {
        _loc1 = _loc1 + ("<b><font size=\'10\' color=\'" + _loc2 + "\'>Sonando: </font></b><font color=\'" + _loc3 + "\'>" + metaDataValues.title + "</font>\n");
    } // end if
    var _loc4 = "";
    _loc4 = _loc4 + metaDataValues.title;
    robnei.text = _loc4;
    if (metaDataValues.genre != "")
    {
        _loc1 = _loc1 + ("<b><font size=\'10\' color=\'" + _loc2 + "\'>Genero: </font></b><font color=\'" + _loc3 + "\'>" + metaDataValues.genre + "</font>\n");
    } // end if
    if (metaDataValues.name != "")
    {
        _loc1 = _loc1 + ("<b><font size=\'10\' color=\'" + _loc2 + "\'>Emisora: </font></b><font color=\'" + _loc3 + "\'>" + metaDataValues.name + "</font>\n");
    } // end if
    if (metaDataValues.url != "")
    {
        _loc1 = _loc1 + ("<b><font size=\'10\' color=\'" + _loc2 + "\'>URL: </font></b><font color=\'" + _loc3 + "\'>" + metaDataValues.url + "</font>\n");
    } // end if
    metaDataText.text = _loc1;
    robnei.html = true;
    robnei.htmlText = _loc1;
} // End of the function
function doConnect()
{
    if (nc == null)
    {
        nc = new NetConnection();
        nc.onStatus = function (infoObject)
        {
            trace ("nc: " + infoObject.code + " (" + infoObject.description + ")");
            if (infoObject.code == "NetConnection.Connect.Success")
            {
                playShoutcast();
            } // end if
        };
        nc.connect(_root.connect.connectStr.text);
        enablePlayControls(true);
    }
    else
    {
        if (nsPlay != null)
        {
            nsPlay.attachVideo(null);
            nsPlay.attachAudio(null);
        } // end if
        nsPlay = null;
        nc.close();
        nc = null;
        metaDataValues.title = "";
        metaDataValues.genre = "";
        metaDataValues.name = "";
        metaDataValues.url = "";
        updateMetaData();
        enablePlayControls(false);
    } 
}
function enablePlayControls(isEnable)
{
}
function playShoutcast()
{
    nsPlay = new NetStream(nc);
    nsPlay.onStatus = function (infoObject)
    {
        trace ("nsPlay: " + infoObject.code + " (" + infoObject.description + ")");
    };
    nsPlay.onHeaderData = function (infoObject)
    {
        trace ("onHeaderData");
        for (var _loc2 in infoObject)
        {
            trace ("  " + _loc2 + " = " + infoObject[_loc2]);
        } // end of for...in
        if (infoObject["icy-genre"] != undefined)
        {
            metaDataValues.genre = infoObject["icy-genre"];
        } 
        if (infoObject["icy-name"] != undefined)
        {
            metaDataValues.name = infoObject["icy-name"];
        }
        updateMetaData();
    };
    nsPlay.onMetaData = function (infoObject)
    {
        trace ("onMetaData");
        for (var _loc2 in infoObject)
        {
            trace ("  " + _loc2 + " = " + infoObject[_loc2]);
        } // end of for...in
        if (infoObject.StreamTitle != undefined)
        {
            metaDataValues.title = infoObject.StreamTitle;
        } // end if
        if (infoObject.StreamUrl != undefined)
        {
            metaDataValues.url = infoObject.StreamUrl;
        } // end if
        updateMetaData();
    };
    nsPlay.setBufferTime(10);
    nsPlay.play(_root.connect.streamStr.text);
    soundRemote.attachAudio(nsPlay);
} // End of the function
var nc = null;
var nsPlay = null;
var metaDataValues = new Array();
Stage.align = "TL";
Stage.scaleMode = "noScale";
_global.style.setStyle("backgroundColor", "0xFFCC00 ");
initialize();