Hello,
i just trying to learn basic flash programming skills, now i got a program that load an image from my local machine, and show it with uiloader component, code is something like:
var myImage:String = "picture.png"
var request:URLRequest = new URLRequest(myImage);
uiLoader.load(request);
it´s working fine, but when dynamically change the picture, i notice a flicker while loading, there is any way to avoid this flicker? i mean, like double-buffering or so.
Thanks.