Hi i have a simple movie clip that should load an external image into it. however, it shrinks the image so that it doesnt quite fill the mc, no matter what size i make the external image (even the same size as the mc)
the code is…
this.onLoad=function(){
loadMovie(“http://www.aligray.co.uk/files/portfolio/cine11.jpg”, imagesMC);
imagesMC._alpha=0;
}
this.onEnterFrame=function(){
imagesMC._alpha+=10;
}
Why oh why does this happen??