Movieclip events

how do you call an onClipEvent(enterframe) of a movieclip to happen when that movieclip is pressed?

on(press) {
onClipEvent(enterframe) {
//code to happen when movieclip is pressed
}
}

when i type this in i get an error because on events cannot be nested within other on events. how can you get around this?