I have a Button with the following action:

on (rollOver) {
gotoAndPlay(2);
}
on (rollOut) {
gotoAndPlay(3);
}
on (release) {
// loadMovieNum("main_4.swf",2);
if (_root.pressed_link<>4) {
_level2.gotoAndPlay("dissappear");
_root.pressed_link = 4;
}
}


it works fine but I need it to open a file called "main_4.exe" not "main_4.swf" When I change the code to

// loadMovieNum("main_4.exe",2);

it still opens the .swf file. Can someone help me out.

-Thanks