Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/10/2011, 09:49
kidart
 
Fecha de Ingreso: junio-2010
Mensajes: 108
Antigüedad: 14 años, 7 meses
Puntos: 2
Como linkear imagen a codigo

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
  1. /// Re-create Pixel-Data
  2.  
  3. _global.smoothImageLoad = function(imgURL, targetMovie) {
  4.      var i=0
  5.      do { i++ } while (eval("_root.smoothImageLoadTemp"+i) != undefined)
  6.           tmc = _root.createEmptyMovieClip("smoothImageLoadTemp"+i, _root.getNextHighestDepth())
  7.           tmc.createEmptyMovieClip("ti", tmc.getNextHighestDepth())
  8.           tmc.tm = targetMovie
  9.           with(tmc) {
  10.                tmcl = new MovieClipLoader()
  11.                tmcl.onLoadComplete = function() {
  12.                     ti.onEnterFrame = function() {
  13.                          pixelData = new flash.display.BitmapData(ti._width, ti._height);
  14.                          pixelData.draw(ti);
  15.                          tm.attachBitmap(pixelData, 1, true, true);
  16.                          tm.smoothImageLoadComplete()
  17.                          removeMovieClip(ti._parent)
  18.                     }
  19.                }
  20.           tmcl.loadClip(imgURL, tmc.ti)
  21.      }
  22. }

Como hago para decirle a mi imagen que cargo con un loadmovie, que lea este codigo?