Hey everyone. I have a HUGE hurdle here. I am making a sort of pick and choose thingy. don't ask, LOL

Anyway even though my codes are hilarious to look at, they do work. I have a "point system" set up to tell the movie whixh frame to go to based on which MCs have been chosen.

My problem is that I can NOT for the life of me find anything that will help me swap MCs from one frame to another.

For an example here is what I have on one of my MCs:

Code:
on(rollOver){
_root.whatis = "Domino";
}
on(rollOut) {
_root.whatis="";
}
on (release) { 
	if (_root.qNum == 8){
		domino.enabled = false;
	}
	else if (_root.qNum <= 8){
tellTarget ("_root.domino") { 
         _visible = false;}
		 _root.points = 2;
		 _root.score = _root.score + _root.points;
		 _root.qNum = _root.qNum + 1;
}
    if (_root.qNum >= 1) {
		_root.bonus = _root.bonus + 1;
 }
}
As you can see, I have made the MC "disappear" once clicked, unless 8 other MCs have been clicked first.

ALL I WANT is to have this MC disappear from Frame 3 like it does now and APPEAR on Frame 4 in a certain spot.

So let's say the "domino" is the object in question.

on Frame 3 of the swf:
The player will click on the domino FIRST. (domino instance name "domino")
The domino disappears from view.
The player clicks "View Board" button that takes them to Frame 4

on Frame 4 of the swf:
The MC instance name "domino_small" has replaced the MC instance name "hit1" at X-35 Y-169
The player clicks the "Return" Button to make 7 more choices.


Seems simple, based on MC clicked, instance of small mc appears on another frame, and place holder on that other frame is gone, or replaced.

If you need visual clarifications, the fla is right here (MX Pro 2004)

Thanks for any help!

~MoN