
Код:
Error: Error #2136: SWF-файл file:///C|/Documents%20and%20Settings/Admin/Рабочий%20стол/Preloader/Preloader.swf содержит недопустимые данные.
at Menu/addButtons()
at Menu()
at Game/frame2()
at flash.display::MovieClip/gotoAndStop()
at Game/goToMenuAndStop()
at Function/http://adobe.com/AS3/2006/builtin::apply()
at com.greensock.core::TweenCore/complete()
at com.greensock::TweenLite/renderTime()
at com.greensock.core::SimpleTimeline/renderTime()
at com.greensock::TweenLite$/updateAll()
Не могу разобраться с данной ошибкой!
Появляется когда вызывается функция добавления кнопок на сцену.
Вот данная функция:

Код:
function addButtons():void {
var btnP:SimpleButton = new btnPlay();
var btnSL:SimpleButton = new btnSelectLevel();
var btnQ:SimpleButton = new btnQuit();
var btnMG:SimpleButton = new btnMoreGames();
var btnI:SimpleButton = new btnInstructions();
var btnE:SimpleButton = new btnEditors();
btnP.x = 275;
btnP.y = 10;
btnSL.x = 272;
btnSL.y = 10;
btnQ.x = 275;
btnQ.y = 10;
btnMG.x = 272;
btnMG.y = 10;
btnI.x = 272;
btnI.y = 10;
btnE.x = 275;
btnE.y = 10;
Game.gameLink.addChild(btnP);
Game.gameLink.addChild(btnSL);
Game.gameLink.addChild(btnQ);
Game.gameLink.addChild(btnMG);
Game.gameLink.addChild(btnI);
Game.gameLink.addChild(btnE);
addMovePlay();
function addMovePlay():void {
TweenLite.to(btnP, 0.3, {x:180, y:170, ease:Elastic.easeOut, onComplete:addMoveSelectLevel});
}
function addMoveSelectLevel():void {
TweenLite.to(btnSL, 0.3, {x:235, y:170, ease:Elastic.easeOut, onComplete:addMoveMoreGames});
}
function addMoveMoreGames():void {
TweenLite.to(btnMG, 0.3, {x:270, y:170, ease:Elastic.easeOut, onComplete:addMoveInstructions});
}
function addMoveInstructions():void {
TweenLite.to(btnI, 0.3, {x:325, y:170, ease:Elastic.easeOut, onComplete:addMoveEditors});
}
function addMoveEditors():void {
TweenLite.to(btnE, 0.3, {x:385, y:170, ease:Elastic.easeOut, onComplete:addMoveQuit});
}
function addMoveQuit():void {
TweenLite.to(btnQ, 1, {x:280, y:217, ease:Elastic.easeOut});
}
}
Даже не догадываюсь где может быть ошибка!!!