This is what I see from line 243
//set posns
mImageArea.setSize(imgW,imgH);
mImageArea.setPosn(imgX,imgY);
mThumbArea.setPosn(thumbX,thumbY);
mCaption_mc.txtText._width = mThumbArea.width;
mCaption_mc._x = thumbX;
mCaption_mc._y = thumbY + mThumbArea.height +mThumbArea.navHeight + Thumb.padding;
mTitle_mc.txtText._width = mThumbArea.width;
mTitle_mc._x = thumbX;
mTitle_mc._y = thumbY - (Thumb.padding + mTitle_mc.txtText.textHeight);
//download link
mDownloadLink_mc._x = Math.floor (w - mDownloadLink_mc._width - 10);
mDownloadLink_mc._y = Math.floor (h - mDownloadLink_mc._height - 10);
resizeBkgnd();
}
}
public function showCaption(index:Number){
var cap = mXMLManager.imageCaptions[index];
if (cap == undefined) cap = "";
mCaption_mc.txtText.htmlText = cap;
}
public function openURL(){
getURL(Options.linkURL,"_blank");
}
Line 272
Line 260 is resizeBkgnd();
What do I do with that? I don't see anywhere I can change the position.