vote up 0 vote down star

Hello Flexers,

I have what seems a straighfoward situation:

I update the source property of an image, when the image is loaded i want to redraw the border skin to fit the new size of the image.

newImgEdit.addEventListener(Event.COMPLETE, loadImgComplete);
newImgEdit.source = myurl_ressource;

private function loadImgComplete(evt:Event):void {
 trace("redraw !!");
 //invalidateDisplayList();
 this.setStyle("borderSkin", ShapeContainerBorderOn);
 var img:Image = evt.currentTarget as Image;
 img.removeEventListener(Event.COMPLETE, loadImgComplete);
}

The "trace redraw" seems to happen once the image is loaded but the border still do not get redrawn with the good height and width.

Do i need to remove the listerner or it will be garbage collected later ? Any clues ?

flag

62% accept rate
Is the image control you're using loading an image of the same dimensions, or different dimensions? When you say, "with the good height and width," could you explain what appears to happen visually? Then I could probably throw in with an answer. – Christian Nunciato Jun 1 at 15:36

2 Answers

vote up 0 vote down

You should be able to call validateNow() on the item you want to re-layout.

(See 'Manually forcing layout' on http://livedocs.adobe.com/flex/3/html/help.html?content=size_position_2.html)

link|flag
vote up 0 vote down

It dit not redraw the border at the good size :/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.