AttachMovie & Scrollpane

Hello all,

I’m having a little difficulty with attachMovie and my scrollpane and was wondering if some fresh eyes could be of some service.

<code>
mcMap.mcAB.onRelease = function() {
_r.gotoAndPlay(“open”); // Open infobox
attachMovie(“FScrollPaneSymbol”, “myPane”, 5, {hScroll:false, vScroll:true, dragContent:false});
myPane.setScrollContent(“currentPosting”);
myPane.setSize(625, 218);
var currentPosting = myPane.getScrollContent();
// LOAD PROJECT ITEMS INTO DUPLICATED MOVIECLIP
for (var i = 0; i<_r.AlbertaPostings.length; i++) {
currentPosting = _r.mcInfoBox.mcPostings.duplicateMovieClip("_r.mcInfoBox.mcPostings"+i, i);
currentPosting._y = -100+(i*19);
currentPosting._x = -312.4;
</code>

When the user clicks on a province, an infobox pops up showing them a list of all the availiable positions for that area. The list shows, however the duplicated mc’s aren’t attaching to the scrollpane so there’s no scrolling going on. Just a long list of positions. Can anyone see where I’m going wrong here?

Thanks for your time.