I have made a noticeboard that loads jpegs dynamically. Problem is that if I need to resize the noticeboard the jpegs are no longer smooth or even readable.
I’ve already posted about using the new force smoothing in CS3 but it seems to have no effect.
Here are the examples of the noticeboard at 100% and then resized.
As you can see the notices degrade pretty quickly.
Here is the actionscript that generates the notices:
myNv.sendAndLoad("noteboardread.php", myNv, "POST");
myNv.onLoad = function () {
var x:Number = 0;
while(x<myNv.n) {
var new_mc:MovieClip = _root.box_mc.noticewindow.notices.attachMovie("template", "notice_"+x, x);
new_mc._x = myNv["noticeboardx"+x];
new_mc._y = myNv["noticeboardy"+x];
new_mc.holder.loadMovie("/images/"+myNv["image"+(x)]);
new_mc.onEnterFrame = function () : Void
{
if ( this.holder.getBytesLoaded () >= this.holder.getBytesTotal () ) {
delete this.onEnterFrame;
this.holder.forceSmoothing;
}
}
x++
}
}
}
However, it still doesn’t seem to be smoothing the jpegs - is there anything else that can be done to make these more readable.