Loading external swf's

I made a simple fla in wich in the first frame you choose between two swf’s, and then the chosen swf is loaded in the next frame. It works as it should, but when i export it as an exe, it doesn’t load the swf’s, only moves to the second frame. What could be the problem?

stop();

fscommand("fullscreen", true);

btn1.onRelease = function(){
    trace("ASDASD");
    _root.gotoAndStop(2);
    _root.scena.loadMovie("file:///./Secerana/animacija.swf");
}

btn2.onRelease = function(){
    trace("ASDASD");
    _root.gotoAndStop(2);
    _root.scena.loadMovie("file:///./Jaffa/JaffaTop.swf");
}