The component lets you load external images that can be magnified with a built in magnifier.
//Lets you define the scale of the magnifier
public function get/set scale(scaleNumber:Numer)
//Lets you define the path to the image
public function get/ser source(pathToImage:String)
//Lets you define the size of the component at runtime
public function setSize(width:Number, height:Number)
zoom_mc.setSize(300, 300);
zoom_mc.scaleFactor = 5;
zoom_mc.source = "http://mysite.com/myImage.jpg";
Questions & Comments