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 ( www.exploreliving.co.uk/test ). 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 :
http://www.adobe.com/devnet/flex/articles/style_explorer.html[b
thx in advance.
warm regards
gaurav verma

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
anel width="400" height="300" title="My Title"
titleBackgroundSkin="@Embed('header.gif')">
<mx:Button/>
<mx:TextInput/>
</mx
anel>
</mx:Application>
- Jason Szeto
"gv79" <[email protected]> wrote in message
news:e3mj9g$2v6$[email protected]..
> 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 ( www.exploreliving.co.uk/test ). 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 :
>
http://www.adobe.com/devnet/flex/articles/style_explorer.html
>
> thx in advance.
>
> warm regards
> gaurav verma
>

Similar Messages

  • How to use images from ADFLib

    Hello OTN,
    My application is devided into several ADFLibs, one of them is CommonUI. It includes common skin and it is imported into every application part.
    There are some images which should be available in different parts, so I decided to put them in CommonUI.
    After deploying adflibCommonUI adn refreshing Resource Palette, somehow I expected to see this image there, but it isn't.
    Could someone, please, explain me, how to use images contained in imported ADFLib, for example, as imageLink icon?
    Thanks.
    ADF 11.1.2.1

    Hi,
    images need to be saved in a specific file structure in the JAR file to be accessible. See:
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/86-images-from-jar-427953.pdf
    Frank

  • How to use image maps in ADF 11g

    Can somebody point me to code snippet for using image maps in JSF Page.
    I just want to use image maps in my application..but i don't know how to use image maps in ADF.
    -Deepti

    Hi chris,
    My DataBase script is given in below
    CREATE TABLE XXSR.SR_HIERARCHY
    FORM_ID NUMBER,
    FORM_NAME VARCHAR2(30 BYTE),
    PARENT_FORM_ID NUMBER,
    FORM_LOCATION VARCHAR2(1000 BYTE),
    IMAGE_FILE ORDSYS.ORDIMAGE
    I want to store the image in database from front end using ADF 11g
    -Deepti
    Edited by: 913387 on Feb 24, 2012 5:36 AM

  • Can any one tell me how to use Image Prompt

    Hi
    Can any one tell me how to use Image Prompt in Answers?
    Thanks
    Rahman

    Had a look at this already?
    http://download.oracle.com/docs/cd/E12103_01/books/AnyUser/AboutPrompts.html
    Cheers,
    C.

  • How to use image and text in same component

    Hello
    Do you know how to use image and text in same component in java ?
    because i need this in my project ,which is chat application , to
    put the received text and any image if it is need within the text

    thanks levi_h
    JTextPane class extends JEditPane and allows you to embed
    images or other components within the text managed by the component

  • How to Use Image Processor for Multiple Sizes

    I'm trying to use Image Processor to work on a folder of images and to create several sizes of .jpg's . I find an option to Save as JPEG in one size only. Is there any way to set up Image Processor to save JPEG to multiple sizes?
    Thanks in advance for your help!!!

    Hi Mehtap,
    Using the script will give you multiple selections.
    This is how I did it and it works well. It just separated the values by semicolon ";" .
    TEXT_1.setText(DS_1.getFilterText("0CUSTOMER"));
    When selected only one value:
    When selected more than one value:

  • How to use image from a file in signature appearance.

    Hi,
    I am creating a Plugin for acrobat 9, using PubSec using DocSign sample as basis. I have created the appearance using text objects and the logos data that came with the DocSign sample. But I want to use image from a file (like, jpg) in the signature appearance creation. So far the documentation doesnt tell how to achieve this.
    Can you please tell me in a  "How-to" kinda way to achieve this?
    Thanks in advance.

    Thanks for ur prompt reply.
    There are so many samples in the sdk. which one is the "sample for adding images."?

  • How to use Image field in SQL-7 for curvs

    I sampling data from a NI-card. There will be a lot of data so I thought I should use Image-field in SQL-7 to save the hole curve. How do you do that?

    I would suggest looking into the Database Connectivity Toolset. It has complete SQL functionality and uses ADO to connect to many types of databases. I have it and it comes with example programs which demonstrate how to write to and read from databases using SQL.
    J.R. Allen

  • How to use image load gif of 「GIF87a」 by ByteArray ?

    Hi all:
    I want use image load gif file of 「GIF87a」 by ByteArray, but it not be displayed correctly on the screen, How can I do it , or How to conver 「GIF87a」 to 「GIF89a」 ?
    private function onButtonClick():void {
        fileRef.browse([new FileFilter("Images", "*.jpg;*.gif;*.png;*.swf")]);
        fileRef.addEventListener(Event.SELECT, onFileSelected);
    private function onFileSelected(e:Event):void {
        fileRef.addEventListener(Event.COMPLETE, onFileLoaded);
        fileRef.load();
    private function onFileLoaded(e:Event):void {
        var bytes:ByteArray = e.target.data;
        imageLoader.source = bytes;
    <mx:Image  id="imageLoader" onclick="onButtonClick()">

    Hi zhaojie198281,
    I've made a small modification on your code and it works fine. Try the following code,
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/mx"
            width="900" height="400">
    <fx:Script>
      <![CDATA[
       private var fileRef:FileReference = new FileReference();
       private function onButtonClick():void {
        fileRef.browse([new FileFilter("Images", "*.jpg;*.gif;*.png;*.swf")]);
        fileRef.addEventListener(Event.SELECT, onFileSelected);
       private function onFileSelected(e:Event):void {
        fileRef.addEventListener(Event.COMPLETE, onFileLoaded);
        fileRef.load();
       private function onFileLoaded(e:Event):void {
        var bytes:ByteArray = e.target.data;
        imageLoader.source = bytes;
      ]]>
    </fx:Script>
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:layout>
      <s:VerticalLayout paddingTop="10" paddingLeft="10"/>
    </s:layout>
    <s:Button label="Load!" click="onButtonClick()"/>
    <mx:Image id="imageLoader"/>
    </s:WindowedApplication>

  • Applet : How to use Images in Jar file

    I want to put all images into a jar file to improve speed of loading.
    But how to invoke images from Jar file?
    Thanks.

    @Op. It's very important for a developer to know how to find information, and that skill usually comes with experience. Google is one of the best ways to find information and solutions to the most common problems.
    Kaj

  • How to use image prompt?

    I want to use a map as image prompt. Are there some examples for that?

    Steps are :-
    1. Create new request in Answers.
    2. And click on Prompt tab.
    3. Click on create prompt , Click in Image prompt.
    4. Give Captions and image URL and other details.
    For more details use the link below.
    http://oraclebizint.wordpress.com/2007/11/02/oracle-bi-ee-101332-using-image-prompts/
    Regards,
    Som.

  • AIR Application Installer screen - name - How to use image??

    I want to use the image instead of the plain text for the name of the application. Is there any way to use image as an application name?
    PrincessWidget-app.xml
    <!-- Used as the filename for the application. Required. -->
    <filename>Princess Countdown Connection</filename>
    <!-- The name that is displayed in the AIR application installer.
    May have multiple values for each language. See samples or xsd schema file. Optional. -->
    <name>assets/Princess_logo.png</name>
    <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
    <version>v1.0.1</version>

    thanks levi_h
    JTextPane class extends JEditPane and allows you to embed
    images or other components within the text managed by the component

  • How to add image in jtable header using 'Default table model'

    Hi,
    I created a table using "DefaultTableModel".
    im able to add images in table cells but not in 'table header'.
    i added inages in table by overriding "getColumnClass" of the DefaultTableModel.
    But what to do for headers?
    please help.
    Thanks in advance.

    The 'Java 5 tutorial' is really an outstanding oneI should note the the current tutorial on the Sun website has bee updated for Java 6. It contains updates to reflect the changes made in JDK6. Once of the changes is that sorting of tables is now supported directly which is why I needed to give you the link to the old tutorial.
    http://java.sun.com/docs/books/tutorial/uiswing/TOC.html

  • CSS Header - how to create image map on header image?

    So I am pretty new to CSS.  I created a tag <div id="page_header"> and then have an image called "header.jpg" that shows up fine.  But now I want to make that header clickable so I can use it as the link back to the home page.  If it were a basic image, I could create an image map.  But since it is a CSS file, I can't figure out how to do this.  I know this has to be simple!
    Thanks for your help,
    Gary

    Thanks - so I would insert a transparent gif the same size as the header area (1000 X 300) the same way I would if it were a regular image?  Does this go before the <div id="page_header"> tag?
    Inside the div.
    <div id="page_header">
    <img src="your_transparent_image.gif">
    </div>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.com/blogspot.com

  • How to use XHeaderName1 in SOAP header

    I have a scenario in which im passing the target URL of a webservice dynamically in my mapping udf.
    I have to pass the URL to the TServerLocation parameter in SOAP header. But the error i get is that the URL is too long for TServerLocation. So i have to split it and send it using XHeaderName1,XHeaderName2 and XHeaderName3.
    Can anyone tell me how to do this.
    i saw this blog which gives me some idea but still my scenario is not working
    /people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping
    please Help

    Hi Sivasakthi Danasekaran,
    URL is an environment variable I think it will take 256 charecters only. You need to split it compulsorly.
    Reward points if needful.
    Thanks,
    RamuV

Maybe you are looking for

  • 9i report won't die after completing successfully

    We are running 9iAS 9.0.2.2 and 9iDB 9.2.0.3, all machines are Linux RedHat Linux. We have a development 9iAS server whose reports run and cleanup successfully off the 9iDB, and we have 3x9iAS production servers (when we go live) that run reports but

  • Application localization (.xib files)

    Hi, I'm new to iPhone programming, and to this forum, so first of all - hi all I need some help with localizing my app. I know how localization works for .string files, and this part of my project is done and working. However I also have to localize

  • 10.5 boot cd or 10.6.3 boot cd?

    HI I bought a mac pro (early 2008) A1186 EMC 2180, 320 GB the machine's hard drive is blank I saw OS X 10.6.3 on ebay reasonable price, but the specification on my machines original boot cd is 10.5 can I buy 10.6.3 to boot up the system?, I am asking

  • LINK BUTTON PROBLEM

    I have created one btns- (acting for add,find, update etc having same unique id )using VB.NET code.I want to write code according to the captions of the button...I mean for diff caption of the btn , diff action should perform? So , plz anyone tell me

  • Unable to instal updates

    Hi everybody I am not able to instal the update of mac os x, i have installed the updates many times but last month i re-installed os x now if i try to install the update it says "You cannot install Mac OS X Update on this volume. This volume does no