vote up 1 vote down star

Anybody help me

How to insert the image on right top corner of panel using flex or action script . i used

-<mx:Panel x="38.5" y="28" titleIcon="@Embed('image/logo.png')" id="register" width="375" height="534" layout="absolute" title="Registration Form ">

titleIcon attributs but not use . so how to insert ?

flag
I'm sorry, I don't understand your question. Maybe you could post a sample of the code that works properly, and the code that doesn't? – quoo Apr 29 at 14:32
is it ok now . could u know tell me – vijayan Apr 30 at 6:45

2 Answers

vote up 0 vote down

Are you looking to display the image in the panel header or within the body of the panel itself?

link|flag
In the panel header – vijayan May 1 at 10:11
vote up 1 vote down

The trick is to subclass the Panel and add your button(s) in the createChildren() method:

protected override function createChildren():void
{
     super.createChildren();

     mybtn = new Button();
     mybtn.label = "I am a button";
     mybtn.visible = true;
     mybtn.includeInLayout = true;
     mybtn.addEventListener( MouseEvent.CLICK, buttonClickHandler );
     rawChildren.addChild( mybtn );
}

To make your extended panel more useful, add styles for the buttons and use getStyle() to get the icons to use.

link|flag
Johan Öbrink thank you very much . i will try ur code – vijayan May 2 at 4:59
Did it work? In that case, an upvote and an accepted answer would be nice. – Johan Öbrink May 4 at 18:45

Your Answer

Get an OpenID
or

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