Image previewArea on mouse over
I am trying mouseover a thumbnail to show another image somewhere else in the flash document. I'll put the coding in a quote and post the error I'm getting. I appear to be having problems IDing the 'previewArea' movieclip.

function previewLoaded(e:Event):void
{trace(this);
trace(this.getChildByName('previewArea');
while(previewArea.numChildren){ previewArea.removeChildAt(0); };
var flashmo_tn_bm:Bitmap = Bitmap(e.target.content);
flashmo_tn_bm.smoothing = true;
previewArea.addChild(flashmo_tn_bm);
}
Thank you for your help.
