hola, hay un codigo para cuando tenes sitios que se redimensionan. lo que hace es resamplear la imagen una vez que se carga, al tamaño actual del navegador.
El unico contra es que tenes que cargar la imagen externa:
Código actionscript:
Ver original_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)
}
}
mymc.smoothImageLoadComplete = function() {
trace("yeah baby yeah!!!")
}
smoothImageLoad("fotos/lkbk_baja/8.jpg", contenedor_lookbook_8)