Show / Hide Movies

Hi there,
I’ve created a movie clip that will act as a corsor, and when a key is pressed it will show and hide, between two movie clips. The two clips have instance variables setup - castle_in and castle_out.

Also, can i make it so it’s binded to a letter-key for instance, rather than the mouse as it is right now?

This is my code but it only works after one press:


_root.castle_out._visible = false;
_root.castle_in._visible = true;

_root.spotter.onPress = function() {
    if (_root.castle_out._visible=true) {
        _root.castle_in._visible = true;
        _root.castle_out._visible = false;
    }
    if (_root.castle_in._visible=true) {
        _root.castle_in._visible = false;
        _root.castle_out._visible = true;
    }
};

Any help will be helpful thanks,

Chavs