Hola, 
 
tengo una consulta, me pasaron un codigo para ablandar imagenes que se llama re pixel data y tiene una funcion smooth.   
El tema es que no se donde ponerlo en mi swf y como referir las imagenes externas que yo estoy cargando a este codigo:    
Código actionscript:
Ver original- /// Re-create Pixel-Data 
-   
- _global.smoothImageLoad = function(imgURL, targetMovie) { 
-      var i=0 
-      do { i++ } while (eval("_root.smoothImageLoadTemp"+i) != undefined) 
-           tmc = _root.createEmptyMovieClip("smoothImageLoadTemp"+i, _root.getNextHighestDepth()) 
-           tmc.createEmptyMovieClip("ti", tmc.getNextHighestDepth()) 
-           tmc.tm = targetMovie 
-           with(tmc) { 
-                tmcl = new MovieClipLoader() 
-                tmcl.onLoadComplete = function() { 
-                     ti.onEnterFrame = function() { 
-                          pixelData = new flash.display.BitmapData(ti._width, ti._height); 
-                          pixelData.draw(ti); 
-                          tm.attachBitmap(pixelData, 1, true, true); 
-                          tm.smoothImageLoadComplete() 
-                          removeMovieClip(ti._parent) 
-                     } 
-                } 
-           tmcl.loadClip(imgURL, tmc.ti) 
-      } 
- } 
Como hago para decirle a mi imagen que cargo con un loadmovie, que lea este codigo?