Quit / Exit Button :S sorry im new

Hi, really sorry, i am VERY new to flash :S

Closing Projector Movies:

on (release) {
fscommand(“quit”);
}

I assume this closes the projector instantly, can i make one that asks for confirmation first?

Like “Are you sure you wish to close the CD Yes / No”

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.