а можно поконкретней ?

Код AS3:
public function Main():void
{
if (stage) init();
else addEventListener(Event.ADDED_TO_STAGE, init);
// получаем данные из flashVars
// id просматривающего приложение
flashVars = stage.loaderInfo.parameters as Object;
viewer_id = flashVars['viewer_id'];
// secret для генерации сигнатуры
secret = flashVars['secret'];
// id сессии
sid = flashVars['sid'];
// адрес API-сервиса
api_url = flashVars['api_url'];
auth_key = flashVars['auth_key'];
VK = new APIConnection(flashVars);
VK.api('getProfiles',{ uids: viewer_id,fields:'photo_big,sex,bdate,city,country,education'},onComplete, onError);
}
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
.....
}
Если так то не работает..Прелоудер до конца доходит, но главная флешка не грузится..