Image in title of cflayoutarea?

Is it possible to get an image inside of a cflayoutarea?  Not as a background, but as part of the title?
On this page, there is a small image associated with the location, they are country flags.  For now I put them next to the categories, but I hate the way they look, I'd rather have the Canada flag just to the left of Canada in the tab.
Thanks

hi
please try this
<cflayoutarea title="<img src='gb.png>" name="t1" >

Similar Messages

  • How to put the background image in Title Window?

    Hi,
    I'm newbie in flex. I 'm using Flex 4.
    Can anyone give me some guidelines on how to put the background image in Title Window?
    Is it possible to do this?
    Thanks.

    Hi,
    Check the below sample code
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Style>
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/mx";
            s|BorderContainer {
                background-image:Embed(source="image/wheres_the_green_rez.jpg");
                background-image-fill-mode:clip;
        </fx:Style>
        <s:TitleWindow width="100%" height="100%">
            <s:BorderContainer width="100%" height="100%"/>
        </s:TitleWindow>
    </s:Application>
    Regards,
    Anitha

  • Images and titles are not showing up

    I took a screen shot of it, but when I load tumblr and reddit specifically, but there are other pages, smaller images and title do not show up. I tried the trouble shooting, and the reset, and looked at extensions. Nothing worked, I still have the problem.
    When I use tumblr, and click on the number of likes/reshares and it opens the list below the pictures, all I see is small icons instead of showing me the names of who did what.
    On reddit, the top tabs (new, hot, etc) aren't showing up.

    * http://kb.mozillazine.org/Websites_look_wrong
    * http://kb.mozillazine.org/Images_or_animations_do_not_load

  • Have an image as title and form underneath?

    Hi, I'm trying to put an image on the top of my Midlet. Currently it has a form as a 'init' with a few items in it. The problem is I want an image as title intstead of String title. Can i remove the title in form and kind of move it down so that i can put an image on top of my form. if so, can you guide me how please (classes methods). Or is there any other possibilities like form in canvas maybe?
    thanks
    indy

    You can't change the Form title by an Image. One thing you can do is put an ImageItem the beginning of your Form, looking like a title. This way you can control the Image alignment and other things.
    Raphael

  • How do I import a graphic image as title card?

    I'm trying to create a title card in Fireworks, export it, and import it into iMovie.
    I'm wondering what type of image it should be, how large, and how it can be imported into iMovie.
    I"d rather not use the system's title card creator, as I don't like the background color options.
    I'm using iMovie 11.
    thanks

    I generally use Keynote to create some of my more elaborate titles (say, for wedding videos). I usually set the slide size to 1280 x 720 and save as a jpeg. You can also create animated titles and export them as a .mov file for use in iMovie. Most of my editing work involves HD clips imported as HD 1920 x 1080, but I find that using 1280 x 720 produces excellent results. All text is crisp and all graphics are immaculate (at least to my eyes).
    After exporting from Keynote I import the jpeg files to iPhoto. Then in iMovie I click on the Photo Browser and drag the images into the timeline, dropping them into their appropriate position.
    You can also drag images from any location on the hard drive (Desktop, for example). But I prefer to have them in iPhoto as I'm unlikely to move them from that location. If you move media files after importing them to iMovie, it's almost certain that iMovie will lose the link.
    I'm not familiar with Fireworks, but thought a brief outline of my experience with Keynote may be helpful.
    John

  • Image with Title/Description Hover on MouseOver

    Hello All,
    So currently I am having trouble getting this perfect. I have an image that populates dynamically, as well as Title, Description and Link to the details page. The problem is the hover is not centered to the image, and in IE it doesn't always appear when you mouse over. If anyone could please help me out I would greatly appreciate it! I haven't been able to get this to work properly, and have been working on/off for a week.
    Here is the html/php code:
      <div class="featured2">
        <h2>Featured </h2>
        <?php foreach ($feature as $featured) { ?>
      <div class="featured-pic2">
            <img src="image/<?php echo $featured['filename']; ?>" alt="" width="320" height="320" />
            <div class="title2">
            <a href="details.php?place=<?php echo $featured['link_name']; ?>">
            <span>
         <h2><?php echo $featured['name']; ?></h2>
      <p><?php echo substr($featured['description'], 0, strpos($featured['description'], '.')+1);?></p>
            </a>
            </span>
            </div>
            </div>
    <?php } ?>
      </div>
    And here is the CSS
    .featured-pic2 {
    position:relative;
    float:left;
    width:320px;
    height:320px;
    padding:5px 5px 5px 5px;
    border:#F00 }
    .title2 {
    left:0px;
    top:0px;
    position:absolute;
    float:left;
    width: 325px;
    height: 325px;
    top:0px;
    left:0px;
    .title2 a {
    color: #FFF;
    width: 320px;
    height: 320px;
    display: block;
    text-decoration: none;
    .title2 a:hover {
    background:#000;
    opacity:.60;
    filter:alpha(opacity=60);
    .title2 a span {
    display: none;
    padding:0px;
    .title2 a:hover span {
    display: block;

    Ok so I have made some modifications to the CSS as follows; What isn't correct now is that in IE9 the hover is white (no big deal) should be grey, but in Mozilla the hover is not centered (because I removed the padding on a:hover) to center it in IE. Other than that the functionality is great now! And just some minor details to work out.
    .featured-pic2 {
        position:relative;
        float:left;
        width:320px;
        height:320px;
        padding:5px 5px 5px 5px;
        border:#F00 }
    .title2 {
        left:0px;
        top:0px;
        position:absolute;
        float:left;
        width: 325px;
        height: 325px;
        top:0px;
        left:0px;
    .featured-pic2 a {
        color: #666;
        width: 320px;
        height: 320px;
        display: block;
        text-decoration: none;
    .featured-pic2 a:hover {
        background:#000;
        opacity:.60;
        ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
        filter:alpha(opacity=60);
        padding: 0px;
    .featured-pic2 a span {
        display: none;
        padding:5px;
    .featured-pic2 a:hover span {
        display: block;

  • How to change the image in title bar for JFrames

    plz give me a small code to change the image of the JFrame in the Title bar.
    i know how to change the name of the title bar .
    import javax.swing.*;
    class Rathna1 extends JFrame
    Rathna1()
    super("rathna project ");
    public class Rathna
    public static void main(String ax[])throws Exception
    Rathna1 r=new Rathna1();
    r.setVisible(true);
    r.setSize(400,400);
    Like this how to change the image of the title bar
    Message was edited by:
    therathna

    hi,
    JFrame frame;
    frame.setVisible(true);
    frame.setIconImage(new ImageIcon("icons/img007.gif").getImage());
    frame.setSize(800,600);
    i think the thing u r searching is :
    frame.setIconImage(new ImageIcon("icons/img007.gif").getImage());
    ~~~radha

  • Grainy Still Images and Titles

    I've just completed about a 10 minute film utilizing still images and video clips. It was made with the Adobe Premiere Elements 3 that came with my Sanyo Xacti camera, running on Windows XP. The video looks great all the way up until the end. I have two still images that I use that I have overlayed titles on them. The first one is a rolling title from bottom to top (like movie credits) and the second one is a still image where the text just appears and then disappears. The problem is that the pictures are extremely grainy and pixilated. Other still images that I use in the movie do not look that way, and they were taken with the same settings as the pixilated ones. When I pause the movie the picture looks normal, but when I hit PLAY it goes back to being grainy. I can only assume that the word overlays have something to do with it.
    Has anyone else experienced this problem and is there any way to make the background pictures sharper and crisper with the text overlaying it?
    Thank you.

    Guys, thank you so much for the help so far. I really appreciate it.
    Steve - The line above the stills is green. I have rendered the film and it looks fine in the view window except for the pictures in question.
    Hunt - I exported the movie to a Windows media player file and played it on that. The results for those two pictures was the same.
    I imported the images through the PE "Get Media From" tab. They were on a thumbdrive that I had imported the to from my camera.
    They are both JPEG images. The first is 2816 pixels in width and 2112 pixels in height. With a vertical and horizontal resolution of 72 dpi and a bit depth of 24. The focal length was 6mm.
    The second is 2112 pixels in width and 2816 in height. The rest of the info is the same.
    The pictures look fine when it is paused, it is only when it is playing that they are grainy and unfocused.
    Thanks for the help. I am continuing to work through the Help topics in search of an answer.
    I'm making this as a gift for my girlfriend back in the states while I am deployed here in Iraq and I am trying to make it perfect. Thanks again for all of your help.

  • Image With Title

    Hi, how are all of you? I wonder if it is possible to have an Image with Label or Title that display along with the Image itself as a single object.
    Thanks
    .:.Wahab

    Sure. In this example the image path and caption are in an XML file, and I am putting the images in:
    1) a HorizontalList
    2) a List
    3) individual Panels using a Repeater
    The images I am using are in a folder "images" under the folder containing MainApp.mxml
    --------------- data.xml ---------------------
    <?xml version="1.0" encoding="utf-8"?>
    <photos>
        <photo>
            <image>images/red30_30.JPG</image>
            <caption>Red Square</caption>
        </photo>
        <photo>
            <image>images/green30_30.JPG</image>
            <caption>Green Square</caption>
        </photo>
        <photo>
            <image>images/blue30_30.JPG</image>
            <caption>Blue Square</caption>
        </photo>
        <photo>
            <image>images/black30_30.JPG</image>
            <caption>Black Square</caption>
        </photo>
    </photos>
    ------------------ MainApp.mxml ------------------------
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
      creationComplete="photosRequest.send();">
      <mx:Script>
        <![CDATA[
          import mx.rpc.events.ResultEvent;
          import mx.collections.XMLListCollection;
          [Bindable] private var xlc:XMLListCollection;
          private function photosHandler(evt:ResultEvent):void{
            xlc = new XMLListCollection(evt.result..photo); 
        ]]>
      </mx:Script>
      <mx:HTTPService id="photosRequest" url="data.xml" result="photosHandler(event)"
        resultFormat="e4x"/>
      <mx:HBox width="100%" horizontalAlign="center" horizontalGap="30">
        <mx:HorizontalList dataProvider="{xlc}" rowHeight="100"
          columnWidth="100">
          <mx:itemRenderer>
            <mx:Component>
              <mx:VBox horizontalAlign="center" verticalAlign="middle">
                <mx:Image source="{data.image}"/>
                <mx:Text text="{data.caption}"/>
              </mx:VBox>
            </mx:Component>
          </mx:itemRenderer>
        </mx:HorizontalList>
        <mx:List dataProvider="{xlc}" rowHeight="100"
          columnWidth="100" height="405" width="110">
          <mx:itemRenderer>
            <mx:Component>
              <mx:VBox horizontalAlign="center" verticalAlign="middle">
                <mx:Image source="{data.image}"/>
                <mx:Text text="{data.caption}"/>
              </mx:VBox>
            </mx:Component>
          </mx:itemRenderer>
        </mx:List>
        <mx:HBox>
          <mx:Repeater id="rp" dataProvider="{xlc}">
            <mx:Panel title="{rp.currentItem.caption}">
              <mx:Image source="{rp.currentItem.image}"/>
              <mx:Text text="{rp.currentItem.caption}"/>
            </mx:Panel>   
          </mx:Repeater>
        </mx:HBox>
      </mx:HBox>
    </mx:Application>

  • Logo image in titles disappear when open project on other PC

    Hi You all!
    Got a problem with Premiere Pro CS5 regarding titles. We´re a group of people who uses the same CS5-project file as a template (write protected) from a server out on different computers.
    For each new project we open the template-project from the server and do a "save as" before we start editing on our own PC.
    The problem occurs with our titles in this template-project. We have a pretty straightforward title with a background and text created in the title editor. Then we also  import a logo in png-format in the title editor. This works great when we open the project on the same computer as its made on. But when someone opens the project on another computer from the server the image is gone and there's a "Logo" text where the logoimage was. To get the image back we ned to open the title in the editor, klick on the "logo" and the smal square in the tools to the right and browse the image file.
    This is hard unecessary work to do when we do changes etc in the template project.
    Hope there is some way to get the logo image to stay in the title when the project is used on other PC:s.
    Hope I have managed to explain the issue ok. Thanks for any help with this.

    You explained it well enough.
    But in my experience, you will have to redo the logo every time you switch computers.  I don't know why PP keeps losing that link, but it does.
    The better option would be to create the title in Photoshop, including the logo, and bring that into the template project instead of using a PP title.

  • How to set image in title of Panel in flex 4

    Hai Friends,
    I don't how to set title have image in  Panel(spark panel) of flex 4 , so please any one help to me  ...and send code...
    { normally title =" something text" but my case title="some image come here"  }
    Thanks & regards,
    Magesh R.

    You need to set the icon property to a Class variable that is the image (embedded image).

  • Add image to title produces blurred rectangle

    Premiere Elements 8.0.1 running on Win7-64
    If I try to add a jpeg image to a title as described by http://help.adobe.com/en_US/PremiereElements/8.0/Win/Using/WSA4307130-118B-44a7-9A27-9B62C 50A1F35.html then all I get is a light blue rectangle with fuzzy edges.
    If I uncheck "drop shadow" then the fuzzy lightblue rectangle disappears, and left is a rectangle showing the image boundaries. But te image itself is not visible. "Bring to front" makes no difference.
    How is this supposed to work?

    I used "Right-click in the Monitor panel and choosed Image > Add Image"
    I didn't add it to a text box. The Title didn't contain any graphics object when I added the image
    Pantera

  • Conversion Table: Image with Title

    I'm using conversation tables to move from Unstructured FM8 to Structured (DITA) FM10.
    I am trying to move the existing tables and graphics with titles into the DITA structure.  My understanding is that in DITA, it should look like this:
    So I've developed my conversion table to look like this:
    But when I run Structure Current Document, it doesn't wrap the (title[fig], image) in the figure element:
    The one part that seems odd to me is that when I generate the conversion table, I don't see any row that represents the image element itself.  Is that the problem?  Is there something else that I should be doing?
    Thanks!

    You need a row that has "G:" in column 1 and "image" in column 2 to indicate that anchored frames should map to the image element.
                  --Lynne

  • Do you pocket the image a title in the file ?

    How wallet file name on the image ?
    01.The need to increase the canvas size image (0.5~0.3INCH)
    02.There is a file name, text layers must be added .
    (You want to attach a file title to the bottom of the image.)
    03.And be sure to save and do bulk operations in the script?
    ※Please check the attached video and still get the script

    That depends. How do you define a line? Is it a specific number of
    characters, a String that's terminated by a newline character or some
    combination thereof?

  • Premiere 9.0 locks source files for still images and title background

    I am using Adobe Premiere 9.0
    In this version - I hjave used two previous - I have problem while uppdating images inserted in timeline and backgrounds of titles. While editing them in Photoshop I get a file lock error. Either i have to:
    Close Premiere, edit file and then restart
    Last time I did this I had problem to get image updated within Premiere. It still showed wrong image in timeline and while rendering but image gallery showed right image
    or I have to save to a new filename and then insert image/background once again in timeline/title (that takes some time - pew!)
    I had the same problem in three different installations of my laptop and two different hardwares. Last laptop and installation is about two weeks old. It is a brand new Dell with WIndows XP. Adobe Premiere 9.0. All sourcefiles is on my own harddrive - nothing on the netdrives.
    Any ideas?

    Abotu operating system - I am in the hands of IT dept
    They are planning upgrading to Windows 7. But not within the timeframe of current projects.
    The image imitation I wasn´t aware of. Is that a definied/stated limitation in Adobe Premiere? To me the intuitive image size while working with 1920 x 1080 screen is making images in same size.
    The laptop is completely new. I am definitely sure about a non-defraged-disc. 92 GB used 306 GB free.
    It dept say the hardware should be sufficient. Even the earlier laptop they tried to get working had enough capacity due to the stated demands Adobe have.
    Intel(R) Core(TM)
    i7-3520N CPU, @2.90GH
    2,89 Ghz, 3.41 GB RAM
    PAE (Physical Adress extension)
    4 GM memory,

Maybe you are looking for