Wallapers dont cover the entire canvas

I've been trying to make some wallpapers for some handsets
and whenever I send them to my phone via a txt msg and install them
they never take up the entire canvas. It doesn't seem to matter
what size image I am using, i've even tried using images larger
than the screen size of the phone and still i'm left with a
wallpaper that doesnt expand to the entire canvas.
Anyone have any idea why this is happening ? Ive been trying
on the lg vx8500 and lg1500 and have had similar problems with both
so it must be something on my end but i have no clue what it could
be.
I've been using photoshop to create the gifs then i use
http://www.funformobile.com/
to send the image to my phone via txt msg.

"BobFromTheYear5K" <[email protected]> wrote
in message
news:go40au$f1q$[email protected]..
> Ok, this is an act of pure desperation. I generally like
to figure this
> stuff
> out on my own, but I'm stumped on this one. It may be
worth noting that
> I'm
> fairly new to Flex.... :-)
>
> I've built a Home Screen for a kiosk app I'm working on.
There's a nav
> bar
> along the bottom of the screen with some buttons. One of
which is
> supposed to
> display a custom Options Menu.
>
> So to get started along this path, I added a Panel to
the main Canvas
> containing the Home Screen and gave it "0,0" coordinates
and a size of
> 100% x
> 100%. I set the 'z' property to "999", the idea being
that it would sit
> on top
> of and cover the entire Home Screen.
>
> However, the x, y, height & width properties are all
being completely
> ignored.
> The Panel is always drawn centered on the Canvas and is
only about 25% as
> large as it should be. Though oddly it's height &
width are correctly
> proportioned.
>
> Has anyone encountered anything like this? Is there
something obvious I'm
> just not seeing or am forgetting to do?
>
> Here's the code if it helps and thanks!
Could you boil it down and provide a more simple example? I
don't want to
mentally construct your component from your code, and because
you have used
custom components, it's not possible to physically copy and
paste your code
and get something that will work.

Similar Messages

  • Once you delete a second partition on your hard drive and there is only blank space how do you enlarge the original "Macintosh HD" to cover the entire hard drive space?

    I just delete a partition on my drive and wanted to 1 either enlarge my original partition to cover the entire space, or 2 create a new partition in the free space. The problem is when I attempt to drag down the Macintosh HD partition and hit apply nothing happens. When i try to partition the free space (80 gigs) I hit apply and the new partition is only 200 mb with the 79 gigs still free space... HELP PLEASE.

    Ah...so you've now learned why it's best not to change your mind after partitioning the bootup volume. 
    As far as I know, there's no "built-in" way to recover the free space after deleting a partition.
    You're probably looking at third party software to accomplish what you're looking for.  Here's one:
    http://www.drivetoolbox.com/volume-manager.php
    I can't speak to how well it works....I've never used it.  But, according to the site, it will do what you need it to do.
    I hope this helps.

  • Using iWeb want background photo to cover the entire computer screen.  how large a photo do i need?

    Am using iweb. Want to put a large photo across the entire computer screen, not just the web page.  How large a photo do I need?

    Have a look :
    http://dl.dropbox.com/u/3563737/Lycos/Beach.html
    Use your own image and paste the code in a HTML snippet.
    The size of the image depends on the size of the browser window of your visitor. And it will never be larger than the browser window.

  • Expand the Background Image to Cover the Entire Region Title

    I have a region title that contains an image and it has a height of 2 rows but the background image (blue image) is not expanding in the area (the css contains repeat for the background). The application uses theme 2. Can someone help?
    CSS:
    .rc-title {
        background: url("../images/bg-region-blue-l.gif") repeat scroll 0 0 transparent;
        float: left;
        width: 100%;
    div.rc-blue-top
        background: url("../images/bg-region-blue-l.gif") repeat scroll 0 0 transparent;
        float: left;
        width: 100%;
    }I created the application on APEX.ORACLE.COM:
    Workspace: RGWORK
    User: TESTER
    Password: test123
    Application : CSRSR (33558)
    Select Signage from the menu (only choice).
    You will see that one of the tabular forms has Nameplates and an image, another tablular form has an image but no text (Nameplates) even though it is there. I would live the blue to cover both the image and the text.
    Please help
    DB: 10g
    APEX 4.1
    APEX 4.2 (APEX.ORACLE.COM) works the same way.
    Robert
    http://apexjscss.blogspot.com

    sect55 wrote:
    fac586 ,
    I would like to try the second option:
    >
    Another option would be to eliminate the problem by moving the nameplate images out of the region titles. There's horizontal space within the regions that will allow these images to be positioned to the left of the tabular forms, which would look OK.
    But how do I reference the horizontal space within the regions? I looked at the template for the region:
    <div class="rounded-corner-region float-left-100pct" id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES#>
    <div class="rc-blue-top"><div class="rc-blue-top-r">
    <div class="rc-title">#TITLE#</div>
    <div class="rc-buttons">#CLOSE##PREVIOUS##NEXT##DELETE##EDIT##CHANGE##CREATE##CREATE2##EXPAND##COPY##HELP#</div>
    </div></div>
    <div class="rc-body"><div class="rc-body-r"><div class="rc-content-main">#BODY#<br />
    </div></div></div>
    <div class="rc-bottom"><div class="rc-bottom-r"></div></div>
    </div>and couldn't find out to put the image in the horizontal space.
    Can you please help me by providing the details? There are two options, depending on the role you see the nameplate images playing on the page. I've used the two regions to provide one example of each.
    *1. Nameplate as eye-candy:* If there's sufficient information in the region title, region content and item labels to make the nameplate images superfluous in providing information to the user, and you're just using them to improve the appearance of the page, then they can be applied purely using CSS.
    /* Nameplate image as CSS eye-candy */
    #nameplates-ndc div[id$="catch"] {
      min-height: 36px;
      padding-left: 113px;
      background: transparent url(#WORKSPACE_IMAGES#nameplate_ndc.gif) top left no-repeat;
      background-size: 103px;
    }Note the use of the CSS3 <tt>background-size</tt> property to resize the image. If the app has to run in browsers that don't support this then you'll have to drop it and create an image of the exact size required for use in the <tt>background</tt> rule.
    *2. Nameplate as content:* If the nameplate images are necessary to provide information to the user, then they have to be included in the region (and they must have an <tt>alt</tt> attribute providing an alternative representation of the information contained in the image).
    Put the image in the region Header:
    <img src="#APP_IMAGES#nameplate_n.gif" width="103" alt="Nameplate (name only)" />and float it so it sits alongside the form:
    /* Nameplate image as page content */
    #nameplates-name .rc-content-main img {
      float: left;
      margin-right: 10px;
    }

  • When will there be a better protective case to cover the entire ipad2

    My friend was holding on to his with the "smart cover" wrapped behind it, and the magnets released and he dropped his iPad2 on the ceramic tile.
    I know "do not hold onto the iPad 2 by the cover" be realistically speaking, you grap things anaware or repercussions sometimes.
    I am on my 4th iPhone. Things happen.
    Steve Orlando

    Check this new case out.
    http://www.speckproducts.com/tablet-ipad-cases/ipad-2-cases/pixelskin-hd-wrap-ip ad-case-black.html?utm_content=email.lists%40comcast.net&utm_source=VerticalResp onse&utm_medium=Email&utm_term=&utm_campaign=In%20Stock%21%20PixelSkin%20HD%20Wr ap%20%26%20ToughSkin%21%21content

  • How to resize images in Photoshop Elements so that they cover the screen on a widescreen tv?

    I'm having difficulty resizing my photos in landscape
    view so that they cover the entire screen on our
    widescreen tv.  Also, how to do them as batch
    files.  I have Photoshop Elements 9.0.
    Thank you.

    The picture has to be the right pixel size.  If your camera can't take a wide screen picture then you have to crop each picture to the proper pixel size.  What I do is crop with no restrictions.  Make the width 8.348 inches and the height 4.696 inches and resolution 300.  After croping your picture will be 1920 x 1080 pixels.  You can now adjust to whatever size picture you want.  If you do some investigating on the internet you can probably find various sites that tell you what pixel dimensions for any size picture.  And also for inch dimensions.    I hope this helps.

  • The firefox browser page covers the entire screen including the time icon in the lower right hand corner.

    The browser page originally did not cover the entire page Also, I must place my cursor on the upper limit of the browser page to access the search and Firefox tool bar now.

    Hi,
    You're in fullscreen mode, press F11 to go back to normal.
    Jack

  • How can I target the background canvas with toolkit for createjs?

    Hello again everyone,
    I have been tooling around a bit with Flash and toolkit for createjs. I am trying to create a navigation menu that plays animated icons when the user mouses over them.
    http://www.thephotoncore.com/navigation.html
    The navigation consists of 8 <li> tags for the main nav buttons and inside each of those tags is a unique canvas element. For some reason, the icons animate ONLY when the mouse hovers over the graphics INSIDE each button and not the container canvas itself. Is there a way for me to start and stop the animation for when the user mouses in and out of the entire canvas element for each button?
    *IDEALY I want the the animation to start and stop for when the user mouses in and out of the <li> tags containing the <canvas> tags. I am not sure if this would work with createjs, but it would be perfect if I could do it that way.*
    Thanks again!
    -DJ

    Let me know if this didn't make any sense. Essentially I want the code to go like:
        this.frame_0 = function() {
            this.stop();
            (*parent <li> of this <canvas> item*).onMouseOver = function() {
                this.gotoAndPlay(1);
            (*parent <li> of this <canvas> item*).onMouseOut = function() {
                this.gotoAndStop(0);
        this.frame_179 = function() {
            this.gotoAndPlay(1);

  • Firefox suddenly now covers the entire screen and even excludes the time icon in the lower right corner.

    The browser page originally did not cover the entire page Also, I must place my cursor on the upper limit of the browser page to access the search and Firefox tool bar now.

    How can I answer my own question? If I knew the answer, I would not have asked the question.

  • Muse tablet version does not cover the full screen

    I created a website and it shows well on desktop and mobile versions.  However, the tablet version does not horizontally cover the entire screen.

    Most commonly this is caused by content that's off the right side of the page. Phone and Tablet browsers zoom so the content (not just the page) fit in the width of the device. Use Select All in Design view in Muse to look for items off the right of the page (or the applied master page).

  • How to change the entire cover to my iPhone4? how much does it cost?, how to change the entire cover to my iPhone4? how much does it cost?

    i have ruined the metallic part of the cover, and also the display, i would like to know if Apple does change the entire cover, and, in case, how much does it cost??

    Apple will replace the phone for $149. They do not repair phones.

  • I need to resize my canvas after finishing my layers, how can I also enlarge the entire image?

    I spent many hours working on a project and failed to check canvas size before completing all of my layers. I need a bigger size canvas to print on regular 8.5x11 paper. After I change the canvas size, is there a way to enlarge all of my layers at once, without terribly screwing up the resolution? I'm not completely familiar with many of the available tools in CS6. Thank you:)

    So my guess since I can not see what you did, is instead of using the image>image size to resize the entire document, you added canvas leaving the layers at their original size.
    You can either select all the layers and group them or create a smart object. Then scale the group or object. How much you enlarge the layers will determine the quality change. The exception to that is any layers that are vector like paths and live type as they are resolution independant.

  • Is there going to be a new cover anytime soon that protects the entire iPad which the smart cover doesnt do?

    Is there going to be a new cover released that protects the entire ipad2??

    User to user forum, no apple here.
    Speculation is against TOS.
    http://www.myincipio.com/iPad-2-Cases-Accessories/Incipio-iPad-2-Smart-feather-U ltralight-Hard-Shell-Case.asp
    Not made by apple, but sound like what you are looking for.

  • I want to have each track in an album have individual artwork, but have a different picture for the entire album thumbnail.  How can I do this? At the very leasr, how can I choose which picture is the thumbnail, because it just picks one at random?

    I have an album that comes with indivisual artwork for each track.  I would like to have each track have its own artwork, but still have the entire album have the real album cover.  So when I'm looking at the album's section on iTunes or my iPhone I see the album cover, but when I select an indivual track to play from that album I see the individual track artwork.  I can't figure out how to do this.

    Right-click the track in your iTunes library, Get Info, and open the Artwork tab.  You can paste in the artwork for that individual track.

  • How can I see the entire "title" of a page (now truncated)?

    I see that Firefox is now truncating the "title" of web pages. I cannot see any good reason for this because the space to the right of the title is blank. I think it was done in the "do anything to make changes to Firefox" department but in this case it is not an improvement and provides the user with less information.
    How can I fix the browser so I can again see the entire "title" as provided by the web page designer? I don't want to take extra steps (if any) to see it. I want it to display automatically each time.

    That is on the tab. A tab has a maximum width because otherwise a long title would cover the full tab width.
    You can make the Windows title bar visible again in the open the customize window via the 3-bar Firefox menu button (Customize is at the bottom left).<br />
    There you will find the choice to have the title bar visible.

Maybe you are looking for

  • Financial statement version in gl accounting

    hello all, What is a financial statement version in G/l accounting. How do we replicate it on BW side. I am trying to do reports like cash flow, net assets, and the functional consultant provided me with information saying that you will get financial

  • TS1717 iTunes will not automatically recognize a CD in the optical reader

    iTunes will not automatically show me CD contents or import CD when I insert into the CD/DVD reader.  To back up a little, iTunes WILL recognize the very first CD that I insert after powering up the PC, but none thereafter.  It doesn't matter if I cl

  • F110 Idoc generation

    hi Folks, i want to generate an idoc PEXR2002 using transaction f110 ( automatic payment program) Does anybody have any idea on how to do it. your inputs are valuable. Regards, Padma

  • How to call Web Services with Sun Java Studio Creator?

    Can someone from Sun please explain how to use the sample Web Services USWeather and GoogleSearch in Sun Java Studio Creator (no Portlet Application)? I read the Web Service Tutorial Accessing Web Services (http://developers.sun.com/prodtech/javatool

  • Microsoft Outlook Sync Quest

    Has anyone tired and/or been successful in syncing their Zen Micro with Microsoft Outlook? Any tips or tricks before I try? Thanks