Fscommand b.s

i have a flash file, with 3 buttons that are coded to execute each of the 3 flash exe’s in it’s own fscommand subdirectory.

only one will launch. why is this so?

of course the files all open when i click them, why will only one launch via button?

button codes, respectively:

on(release){
fscommand(“exec”, “File1.exe”);
}

on(release){
fscommand(“exec”, “File2.exe”);
}

on(release){
fscommand(“exec”, “File3.exe”);
}

only the button for File1 launches the file! Wtf?