"If" statement for MC Timeline-frames

Hi, I would like to apply an action to something if a key is down AND if a MC is on frame1 of its timeline. (if both actions are performed). Now,

[AS]
if (Key.isDown(Key.CONTROL) and ************ ) {
actionsactionsactions
}

[/AS]

Is there an “if that mc is on that frame”-statement in Flash MX?

[AS]if (yourmovieclip._currentframe == 1 && Key.isDown(Key.CONTROL)) {
//do your stuff
}[/AS]