How to use image as pannel header?

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default How to use image as pannel header?

    hi all,

    we here here are building a flex application for Laingorourke UK's domestic
    housing solution, which will cater the dynamic needs of bussiness to collect
    user/customer's feedback and selection on various components which will be
    used/installed in his house.

    Now the challenge, we have to macth the flex application to the corporate
    branding ( [url]www.exploreliving.co.uk/test[/url] ). as in flex style explorer there are
    header images used for pannels ( most probably ). We here also need the same.
    Can anbody guide me to the link/resource from where i can get an idea of doing
    the same.

    flex style explorer :
    [url]http://www.adobe.com/devnet/flex/articles/style_explorer.html[/url]

    thx in advance.

    warm regards
    gaurav verma

    gv79 Guest

  2. Similar Questions and Discussions

    1. Application Pannel-Database Tab
      Hi I am evaluating Dreamweaver MX 2004 and Coldfusion MX 7 . I have a windows 2000 XP and IIS 6.0 . In following the tutorials provided, I opened...
    2. Image in header column (not replacing column header text)
      I have a sortable (asc/desc) datagrid and would like to add a small arrow icon (down/up) next to the column header text to improve the UI. Is this...
    3. Launch Volume control pannel
      Hi all Any body knows how to Launch Volume control pannel in director. Thanks Behzad Peivasteh
    4. Image Header
      Hi! I don't know if this is ok, so can somebody give me some explanation. I made some php script to get Header from http request. When I...
    5. Datagrid and header with image
      Iam trying to implement sorting. I know how to display a button in the header of an datagrid. How can i display an image with down arrow and...
  3. #2

    Default Re: How to use image as pannel header?

    Please describe which version ru using 1.5 or 2.0
    TIPLVinay Guest

  4. #3

    Default Re: How to use image as pannel header?

    Gaurav,

    In Flex 2.0, you can do the following:

    <?xml version="1.0" encoding="iso-8859-1" ?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

    <mx:Panel width="400" height="300" title="My Title"
    titleBackgroundSkin="@Embed('header.gif')">
    <mx:Button/>
    <mx:TextInput/>
    </mx:Panel>

    </mx:Application>

    - Jason Szeto

    "gv79" <webforumsuser@macromedia.com> wrote in message
    news:e3mj9g$2v6$1@forums.macromedia.com...
    > hi all,
    >
    > we here here are building a flex application for Laingorourke UK's
    > domestic
    > housing solution, which will cater the dynamic needs of bussiness to
    > collect
    > user/customer's feedback and selection on various components which will be
    > used/installed in his house.
    >
    > Now the challenge, we have to macth the flex application to the corporate
    > branding ( [url]www.exploreliving.co.uk/test[/url] ). as in flex style explorer there
    > are
    > header images used for pannels ( most probably ). We here also need the
    > same.
    > Can anbody guide me to the link/resource from where i can get an idea of
    > doing
    > the same.
    >
    > flex style explorer :
    > [url]http://www.adobe.com/devnet/flex/articles/style_explorer.html[/url]
    >
    > thx in advance.
    >
    > warm regards
    > gaurav verma
    >

    Jason Szeto Guest

  5. #4

    Default Re: How to use image as pannel header?

    You can also embed the image in a class and then use it..
    [but its not the right way of prgramming. i mean images should be embedded
    whenever required,, and not before.] But still the way to do it , can be shown
    by following example

    -------------
    main1.mxml
    ---------------

    <?xml version="1.0"?>
    <mx:Application xmlns:mx="<a target=_blank class=ftalternatingbarlinklarge
    href="http://www.adobe.com/2006/mxml">

    ">http://www.adobe.com/2006/mxml">

    </a> <mx:Button label="Icon Button" icon="@Embed(source='logo.gif')"/>
    </mx:Application>

    --------------
    main2.mxml
    ------------------
    <mx:Script>
    <![CDATA[
    [Embed(source="logo.gif")]
    [Bindable]
    public var imgCls:Class;
    ]]>
    </mx:Script>

    <mx:Button label="Icon Button 1" icon="{imgCls}"/>
    <mx:Button label="Icon Button 2" icon="{imgCls}"/>

    poonamsheth Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139