no, but you could make a movie clip that opened up when you pressed that button, that ‘looked’ like a confirmation window. Then in that confirmation window put the fscommand on the ‘yes’ button.
so:
your exit button:
on (release) {
confimationMC.gotoandPlay(2); //confimationMC is the instance name of your MC,
}
confirmation MC has two buttons:
“yes” button:
on (release) {
fscommand("quit");
}
no button:
on (release) {
gotoandStop(1); // tells the confimationMC timline that this button is on to go to a frame
}
as far as the specific code in regards to frames and whatnot, you’ll have to come up that, but hopefully that will get you headed in the right directionn.