[FMX] attachMovie() x/y probs

howdy - I’m just starting to get spun up with Flash and AS and have run into a bit of a roadblock. I need to have a movieclip launch from within a on (rollOver) {} call. The attaced MC will eventually be populated from some nebulous dynamic source, but in the meanwhile I’m just passing vars as below:

[AS]on (rollOver) {
this.attachMovie(“unitdetail_mc”, “unitdetails”, this.getNextHighestDepth());
unitdetails._x = 17;
unitdetails._y = 299;
unitdetails.unitBuilding_txt.text = “Blackbear Lodge”;
unitdetails.unitType_txt.text = “2 bedroom plus den”;
unitdetails.unitFootage_txt.text = “690 sq ft.”;
unitdetails.unitBathrooms_txt.text = “2”;
unitdetails.unitParking_txt.text = “heated underground”;
unitdetails.unitPrice_txt.text = “$229,000”;
unitdetails.unitFees_txt.text = “$170/month”;
}[/AS]

I’m able to load the movieclip using that code, but the “unitdetails” MC is not loading where I expect it to (check the example ). The actionscript gets called when you mouseover the reddish button (unit 4) on the left of the floorplan layout. The MC should be loading in the empy space below the floorplan layout.

Any help/pointers that y’all can send my way would be greatly appreciated!