Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
gv79 #1
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
-
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... -
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... -
Launch Volume control pannel
Hi all Any body knows how to Launch Volume control pannel in director. Thanks Behzad Peivasteh -
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... -
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... -
TIPLVinay #2
Re: How to use image as pannel header?
Please describe which version ru using 1.5 or 2.0
TIPLVinay Guest
-
Jason Szeto #3
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
-
poonamsheth #4
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



Reply With Quote

