Hi there,

Trying to set the smoothing of a dynamically loaded, through XML, JPEG set to true using AS2.

I've seen an example of that would do this with this code:

createEmptyMovieClip("myMC",getNextHighestDepth()) ;
loadBitmapSmoothed("mypic.jpg",myMC);


in my code I'm loading a series of products from an XML file. Each bit of information for each product gets loaded into a seprate array...

I have a 'zoomy box' image, which loads an image, but at 200%, which I want to smooth...

so the code =

nZoompic1[i] = (childs.childNodes[EEE].childNodes[i].childNodes[18].firstChild.nodeValue);


Any ideas what the syntax would be for getting it to work?