I found some good input on how to comment ActionScript and how to toggle comments on and off by adding a slash in front of the block comment sign. Read more here.
//* thisIsCodeIWant.toToggle(onOff); andMoreCodeHere(); //*/
Uncommented comments:
/*
thisIsCodeIWant.toToggle(onOff);
andMoreCodeHere();
*/