100% width rectangles not stretching 100% in mobile (phone view)

Muse shows that the rectangle stretches to 100% width, but on iOS devices (iphone 4 and 5), there is a gap by the scroll bar. Since mobile is vital to web development, I would love to know when this fix is coming???

Could you please attach the file again?
Regards,
Neha
Re: 100% width rectangles not stretching 100% in mobile (phone view)

Similar Messages

  • Will not print files from mobile phone says it **may have** a virus- and deletes the file

    My HP photosmart premium with wireless ePrint, will not print files from mobile phone says it **may have** a virus- and deletes the file?!? My Fiance has the same phone, and I used it. It completed the file??? If I text message and E-mail address, my cell phone will come up as and E-mail address... has anyone else had this issue? Is it because I texted the the file? It didn't seem to be and issue on any of the other mobile phones used.... I am out of answers.... I tried to E-mail as well...
    Thanks in advance

    I have nearly the same problem, the printer discards my print job even when i have entered my email address as authorised senders.
    Details from my other post:
    I sent 2 emails to the printer:
    - one is a 3 lines of text and numbers in a GIF file sent as an attachment
    - another is a jpg circuit diagram paste in a word doc sent as an attachment
    both are classified as spam and refused to print. i have no email coming back saying it failed (even i have checked "Email Job Status" in ePrint Settings.
    So what will this HP printer print?
    How can I switch this useless spam filter off?
    I have get this filter off! I need this email printing to work reliably, that is a major reason I bought this printer
    Any suggestions are welcomed...
    HP's slogan on the box:
    "Now you can print from virtually anywhere" (but get discarded every single time!)

  • 100% Width rectangle not working

    I followed the instructions from this article, and it is not working. Any ideas?
    Creating a 100% width rectangle element that spans the entire width of a browser window.
    I did everything it says to do here, but it does not scan across the browser when I preview, and the "red lines" to detect when rectangle sides are flush with the page do not appear.
    I'm in CS6.

    Thank you for posting.
    I've created a small video to show how to create a 100% width rectangle element. Please refer to the following Link : http://screencasteu.worldsecuresystems.com/aish/2013-03-21_1414.swf
    Hope this helps.
    Regards,
    Aishvarya Raj Rastogi

  • Slideshow images will not display correctly on mobile phone

    Hello,
    I have a website which I used several slideshows, in areas I would typically just used a rectangle and fill with photo.  This was done because my client wants to be able to update the images through business catalyst.  Unfortunately, when viewed on a mobile phone (I am using iOS 7) the slide show images do not display correctly.
    What can be done to fix this?  Is there another workaround I should try?
    Thanks!

    Hi Nicole
    The images that you are using on parties page are stretched , if you check the image frame you can see that.
    As a result the image frame is stretched over the side image , they are not showing properly. If you resize from Muse end , then also it would not be fixed because Muse remembers the image size as you have inserted and when viewed , Muse stretches the image to original size as how it was inserted.
    Please resize the images outside Muse , use any image editor like Photoshop and then use the exact dimension of the image frame on page.
    This would resolve the issue.
    Thanks,
    Sanjit

  • Midlet not running on actual mobile phone

    hi,
    i made a small mdilet game its running fine on sun tool kit 2.5. but when i try to run it on any mobile phone the mobile phone becomse blank and dont shows anything. im using Nokia 6630,6280 and sony erricson K800i.
    please help me asap....

    actually im trying to make some sort of bluetooth chess game. i used Tiled Layer class to make the background (chess board) then i put imgaes on that chess board which i created with TiledLayer.
    the problem is this that when i made only TiledLayer and displayed it on the midlet it worked fine on all phones but when i pute images on top of that TiledLayer then mobile phones dont show anything not even the chess board
    heres the code...
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.game.GameCanvas;
    import javax.microedition.lcdui.game.TiledLayer;
    public class GameScreen extends GameCanvas implements CommandListener, Runnable {
      // make ImageSet object
      private ImageSet imageSet;
      // instance of Graphics object
      private Graphics g;
      // the game boundary
      public static final int GAME_WIDTH = 160;
      public static final int GAME_HEIGHT = 160;
      // board block size
      public static final int BLOCK_X = 18;
      public static final int BLOCK_Y = 19;
      public static final int B_H_X = 3;
      public static final int B_H_Y = 1;
      // the new x,y origin of the game
      public final int GAME_START_X = (getWidth() - GAME_WIDTH)/2;
      public final int GAME_START_Y = (getHeight() - GAME_HEIGHT)/2;
      // the end x,y positions of the game
      public final int GAME_END_X = 18 * 8 ;
      public final int GAME_END_Y = 19 * 8 ;
      // block size of elements
      public final int BLOCK_SIZE_X = 18;
      public final int BLOCK_SIZE_Y = 19;
      // anchor for the golden ones
      public static final int GRAPHICS_TOP_RIGHT = Graphics.TOP | Graphics.RIGHT;
      // anchor for the blue ones
      public static final int GRAPHICS_VCENTER_RIGHT = Graphics.VCENTER | Graphics.RIGHT;
      // golden elements location the chess Image
      private final int goldElmtInImg[] = {0,8,3,4,7,2,9,0};
      // blue elements location the chess Image
      int blueElmtInImg[] = {0,9,2,5,6,3,8,1};
      // these are the images which we will get from ImageSet class
      private Image goldens[];
      private Image blues[];
      // these two images are gray and white area of the chess board
      //0 = white
      //1 = gray
      private Image chkImg[];
      public GameScreen() {
        super(true);
        try {
          jbInit();
        catch(Exception e) {
          e.printStackTrace();
      private void jbInit() throws Exception {
        g = getGraphics();
        chkImg = new Image[2];
        //create a new ImageSet
        imageSet = new ImageSet();
        // Set up this Displayable to listen to command events
        setCommandListener(this);
        // add the Exit command
        addCommand(new Command("Exit", Command.EXIT, 1));
        try {
          // makes chess Images
          imageSet.makeImages();
          drawImages(g);
        }catch(Exception e){
           e.printStackTrace();
       * The main GAME LOOP which goes infinity untill cancelled by the user
      public void run(){
       * Draws the images on the screen on specific locations
       * @param g Graphics: used to draw images on the board.
      public void drawImages(Graphics g){ 
        boolean flag = false;
        chkImg = imageSet.makeChkBox();   
        // paint the cheass board on the screen
        imageSet.createChessBoard(GAME_START_X,GAME_START_Y).paint(g);
        // set color to black and draw a rectangle around the chess board.
        g.setColor(0x000000);
        g.drawRect(GAME_START_X,GAME_START_Y,GAME_END_X,GAME_END_Y);
        goldens = imageSet.getGoldens();
        blues = imageSet.getBlues();
        // setting the color to green.
        g.setColor(0,255,0);
        g.drawRect(GAME_START_X+BLOCK_SIZE_X*4,GAME_START_Y+BLOCK_SIZE_Y*5, (GAME_START_X+BLOCK_SIZE_X*4)+BLOCK_SIZE_X,
                                                                         (GAME_START_Y+BLOCK_SIZE_Y*5)+BLOCK_SIZE_Y);
        System.out.println(GAME_START_X+BLOCK_SIZE_X*4+BLOCK_SIZE_X+"      "+GAME_START_Y+BLOCK_SIZE_Y*5+BLOCK_SIZE_Y);
        // drawing golden and blue elements
        g.drawImage(goldens[1],GAME_START_X+B_H_X,GAME_START_Y+B_H_Y,Graphics.TOP|Graphics.LEFT);
        g.drawImage(goldens[10],GAME_START_X+B_H_X,GAME_START_Y+BLOCK_Y+B_H_Y,Graphics.TOP|Graphics.LEFT);
        g.drawImage(blues[0],GAME_START_X+B_H_X,GAME_START_Y+BLOCK_Y*7+B_H_Y,Graphics.TOP|Graphics.LEFT);
        g.drawImage(blues[11],GAME_START_X+B_H_X,GAME_START_Y+BLOCK_Y*6+B_H_Y,Graphics.TOP|Graphics.LEFT);
        for (int i =1; i<=7; i++){ 
          g.drawImage(goldens[goldElmtInImg],GAME_START_X+BLOCK_X*i,
    GAME_START_Y+B_H_Y,Graphics.TOP|Graphics.LEFT);
    g.drawImage(blues[blueElmtInImg[i]],GAME_START_X+BLOCK_X*i,
    GAME_START_Y+BLOCK_Y*7+B_H_Y,Graphics.TOP|Graphics.LEFT);
    if(flag==true){
    g.drawImage(goldens[10],GAME_START_X+BLOCK_X * i +B_H_X ,
    GAME_START_Y+BLOCK_Y+B_H_Y,Graphics.TOP|Graphics.LEFT);
    g.drawImage(blues[11], GAME_START_X BLOCK_X * i B_H_X,
    GAME_START_Y + BLOCK_Y * 6 +B_H_Y,Graphics.TOP | Graphics.LEFT);       
    flag = false;
    else{
    g.drawImage(goldens[11],GAME_START_X+BLOCK_X * i +B_H_X ,
    GAME_START_Y+BLOCK_Y+B_H_Y,Graphics.TOP|Graphics.LEFT);
    g.drawImage(blues[10], GAME_START_X BLOCK_X * i B_H_X,
    GAME_START_Y + BLOCK_Y * 6 + B_H_Y,Graphics.TOP | Graphics.LEFT);
    flag = true;
    public void commandAction(Command command, Displayable displayable) {
    /** @todo Add command handling code */
    if (command.getCommandType() == Command.EXIT) {
    // stop the MIDlet
    ChessProject.quitApp();
    the helping class ImageSet which extracts the images from rerource file and manipulates them
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.game.GameCanvas;
    import javax.microedition.lcdui.game.TiledLayer;
    public class ImageSet {
        // create a 2d array to store coordinates of images and their size
        // 1. size x
        // 2. size y
        // 3. location on the PNG
        private final int elements[][] = {{13,15,15},   // Gray Rock
                                         {13,15,28},   // White Rock
                                         {16,16,46},   // Gray Bishop
                                         {16,16,63},   // White Bishop
                                         {18,17,81},   // Gray Queen
                                         {18,17,99},   // White Queen
                                         {17,17,116},  // Gray King
                                         {17,17,133},  // White King
                                         {16,16,149},  // Gray Knight
                                         {16,16,167},  // White Knight
                                         {13,17,181},  // Gray Pawn
                                         {13,17,194}   // White Pawn
        private final int CELLS[] = {
                                    2, 1, 2, 1, 2, 1, 2, 1,
                                    1, 2, 1, 2, 1, 2, 1, 2,
                                    2, 1, 2, 1, 2, 1, 2, 1,
                                    1, 2, 1, 2, 1, 2, 1, 2,
                                    2, 1, 2, 1, 2, 1, 2, 1,
                                    1, 2, 1, 2, 1, 2, 1, 2,
                                    2, 1, 2, 1, 2, 1, 2, 1,
                                    1, 2, 1, 2, 1, 2, 1, 2
      // anchor for the golden ones
      public static final int GRAPHICS_TOP_RIGHT = Graphics.TOP | Graphics.RIGHT;
      // anchor for the blue ones
      public static final int GRAPHICS_VCENTER_RIGHT = Graphics.VCENTER | Graphics.RIGHT;
      // array of images others
      private Image allImagesOne[];
      // array of images mine
      private Image allImagesTwo[]; 
      public Image chessImg;
      // image to make the chess board
      private Image backgrndImg; 
      // to create the chess board
      private TiledLayer background; 
      private Image chkImg[] = new Image[2];
       * construction for initializing values
      public ImageSet() {
        allImagesOne = new Image[12];
        allImagesTwo = new Image[12];
        try{
          chessImg = Image.createImage("/chess.png");
          backgrndImg = Image.createImage("/board.png");     
        }catch(Exception e){
          e.printStackTrace();
       * This method creates the chess board and returns it to the calling code
       * @param GAME_START_X int: start position of game x axis
       * @param GAME_START_Y int: start position of game y axis
       * @return TiledLayer: the TiledLayer object returned
      public TiledLayer createChessBoard(int GAME_START_X, int GAME_START_Y){
        //create TiledLayer of image
        background = new TiledLayer(8, 8, backgrndImg,18 ,19);
        for (int i =0; i<CELLS.length; i++){
          int column = i % 8;
          int row = (i - column)/8;
          background.setCell(column, row, CELLS);
    System.out.println(GAME_START_X+" "+GAME_START_Y);
    background.setPosition(GAME_START_X,GAME_START_Y);
    return background;
    * this method creates two check boxes of board.png and returns to calling program
    * @return Image[]
    public Image[] makeChkBox(){
    chkImg[0] = Image.createImage(18,19);
    chkImg[1] = Image.createImage(18,19);
    chkImg[0].getGraphics().drawImage(backgrndImg, 18,0,GRAPHICS_TOP_RIGHT); // gray area
    chkImg[1].getGraphics().drawImage(backgrndImg, 37,0,GRAPHICS_TOP_RIGHT); // white area
    return chkImg;
    * Make the images of chess game and fill them in 2 arrays of the users one and two.
    public void makeImages() throws Exception{
    int tempVar =0;
    // get golden images
    for (int j = 0; j < 12; j++) {
    allImagesOne[j] = Image.createImage(elements[j][tempVar],
    elements[tempVar][++tempVar]);
    allImagesOne[j].getGraphics().drawImage(chessImg, elements[j][++tempVar], 0,
    GRAPHICS_TOP_RIGHT);
    tempVar-=2;
    setGoldens(allImagesOne);
    // get the blue images
    for (int j = 0; j<12; j++){
    allImagesTwo[j] = Image.createImage(elements[j][tempVar],
    elements[tempVar][++tempVar]);
    allImagesTwo[j].getGraphics().drawImage(chessImg,
    elements[j][++tempVar], 0,
    GRAPHICS_VCENTER_RIGHT);
    tempVar-=2;
    public void setGoldens (Image allImagesOne[]){
    this.allImagesOne = allImagesOne;
    public void setBlues(Image allImagesTwo[]){
    this.allImagesTwo = allImagesTwo;
    public Image[] getGoldens (){
    return this.allImagesOne;
    public Image[] getBlues (){
    return this.allImagesTwo;

  • 100% Width Slideshow Not Displaying Images Correctly In Phone Version...

    Hi all... Again.
    2nd issue encountered tonight since working on the mobile version of my current project. Having copied, pasted and resized the 100% width slideshow from the homepage of my Desktop version to my Phone version and after having applied different resolution images and published successfully, I made some edits to a different page (the main "About" page, nothing to do with the Homepage) and published only to find that the images in the slideshow are now not displaying correctly...
    After the first (of eight) image, it seems to skip the next one entirely and apply the text for the 2nd image to the 3rd image, the text for the 3rd image to the 4th image and so on... Additional to that, it seems to also randomly use the Desktop resolution images for four of the images... WHY?!
    I made NO changes to the slideshow since the last publish so WHY has it changed?
    I've tried re-applying the correct images and re-uploading; no change. I've tried doing a full-upload; no change. I've tried closing down Muse and trying again; no change. My only option left really is to either update to the October 27th edition of Muse (which I was deliberately holding off on, until I completed this project, which aside from the mobile version is done!), or to revert back to the previous version of Muse in the hopes either of these will resolve the issue. Only problem with that is I've started using the text sync features and the new contact form features (such as ReCaptcha, which is a pain in and of itself if you want to use two forms on one page!! Heaven forbid!)... So I'd really rather not have to revert back but I also don't really want to risk screwing anything up further with the latest update, as has happened on more than one occasion for me when in the middle - or near the end - of projects!
    Is anyone else encountering this? Anyone able to replicate it? Anyone know how to fix it? I'm really reluctant to continue on with the Phone version of this project until I know I won't keep encountering this sort of thing...
    Any help would be appreciated.
    Thanks.

    In the words of Gomer Pyle, "Well Golly!"
    Thanks. lol

  • TS1559 Why is that my wifi  on my iphone 4sbdoes not work? my mobile phone carrier cannot help either

    I have already tried the solution posted online. did not work

    I'm having the same problem. Albums/songs that I've purchased on my iphone5 through iTunes keep disappearing from my music library. When I switch on the 'show all' setting in the iTunes and App store settings I can see it there again and download from the cloud, but it's still a pain in the *** having the keep re-downloading music that i've already downloaded! It only ever seems to be the last album I purchased that it happens to, and there doesn't seem to be any pattern to when or why it disappears. I thought maybe it might be to do with the overnight backup process, but my phone backs up every night when I plug it in to charge and the music doesn't disappear every night! It seems completely random. I go looking for a particular song and it just isn't there anymore. I've scoured the net but can't find a reason why this is happening.
    It's an iphone5 on ios 8.0  Anybody got any ideas?

  • RAZR not recognized as "Mobile Phone"

    I have been trying to get my PBook to recognize my RAZR as a Mobile phone. First the basics - my PBook (15" Aluminum 1.25 GHz / FW 800) has built-in BT and that is working fine. I can see the device and can xfer files using the BT File Transfer util. I am setting the phone as discoverable, and the little Bluetooth icon flashes on the phone. I'm running Tiger with all updates installed - all that are available via Software Update as of today's date.
    If I use the "Any Device" option in the BT setup wizard, my phone shows up in the list and I can successfully pair with it. If instead I choose "Mobile Phone" I can't see the phone. I've tried deleting the Bluetooth preference .plist files, removing the device pairings and then re-running the wizard, but the only thing I can get to work is the "Any Device" option. After being paired, the following shows up in the BT "Device" tab in System Preferences:
    Device Name: troy's RAZR
    Device Address: 00-14-9a-dc-15-8a
    Device Type: Computer
    Device Services: , Voice Gateway, Hands-Free voice gateway, OBEX Object Push, OBEX File Transfer, Dial-up networking Gateway
    Paired: Yes
    Configured: Yes
    Favorite: Yes
    Connected: Yes
    I'm having problems getting the PBook to actually 'see' the phone as a modem (have also followed a bunch of other instructions here, including d/l-ing some of the modem scripts for the Moto phones). I can't iSync with BT, either. The RAZR is not seen by iSync.
    I'm missing some key parts of the setup that are done via the Mobile Phone setup screen, and I think that is the root of my problem. Any ideas on how to fix this? Why is the RAZR not recognized as a Mobile phone?
    Thanks!!

    I can't get my PowerBook to recognize my V3 at all. I have had complete success with my V600, but today I got a new V3, and I'd like to get my numbers from the V600 to the V3. There are too many to copy them to the SIM card (I hate the way it's all or nothing!), so I'm trying to do it with iSynch. I have managed to synch the V600 with no difficulty, but I can't even pair the V3. Is there some optimum position you need to hold the phone in relation to the PowerBook, some secret incantation or what? I tried selecting Mobile phone and Any device, but neither one works, and I've tried it on two different user accounts, so I don't think it's a preferences issue either.

  • Unhappy with BT Broadband anywhere mobile phones

    BT Broadband anywhere mobile phones
    £210 to buy a HTC Hero or HTC Touch 2 for £107 for a secondary account
    Oh and the tariff and prices dont apply for a secondary account
    Strange this isnt mentioned in the terms and conditions.
    What a letdown BT !!!, more business for another provider who offered me £10 a month for unlimited texts and no charge for a HTC Touch 2 handset in the end.
    HTC Hero was £25 a month with unlimited texts

    @Dodcobbler - no its not bad for a mobile phone.  How much data usage do you have?
    Interesting sum to do is phone + usage (inluding data) +b b option 3 = ?
    I dont think you can price these phones standing alone from the BB package that has to go with them.  IMHO it is that £ which is the salient point.  We kept ping-ponging that point back week after week last year prior to the news being announced, but the data usage and composite price in the round was never really taken up.  Neither was the second handset.  Neither was the lifting of 'bundling' legislation which now allows BT to offer a 'one stop shop' of BB, TV, landline + mobile.
    They do offer a credit card though, which is very nice indeed.
    AQ.
    "Welcome to Royston Vasey - You'll never leave."

  • Deleting emails on laptop and mobile phone

    1.When I delete emails on my laptop, the same emails will not delete from my mobile phone and vice versaThis makes me delete emails on laptop and on my mobile phoneHow do I correct this! 2. I have folders set up on my email account on my laptop but the folders will not display on my mobile phone  How do I correct this? 

    To do what you want, you need to set up the account on both devices using IMAP instead of POP3.  That way everything is synced, and anything you do to an email on one device is reflected on the other.  Here are the settings-----------------
    http://customer.comcast.com/help-and-support/internet/email-client-programs-with-xfinity-email/
    You didn't say what client you are using on the laptop, but both it and the phone will probably set  up the account automatically when you put in the user ID and password, as most clients now will detect Comcast accounts as IMAP compliant by default.  If not you can just enter the settings manually.

  • Is there a way of reading multiple accounts mail together like mobile phones?

    I've just installed thunder bird, and set up my multiple accounts ,is there away to set up thunder bird or is there a plug in to view all new mail simultaneously.showing the mail as they are received and colour coding them to the account they was received from. just like my android mobile phone .

    View menu (alt+V) > folders > unified.

  • Full-browser window flash, 100% width/height not working

    Hello.
    I'm pretty sure this issue has been discussed before but I
    couldn't find a suitable answer.
    I need my flash website to fill the whole browser window. In
    the 1st frame of my .fla file I used:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    In the Publish Settings, I used 100% width and height and
    Default scale mode.
    I even tried adding CSS styles to the .html file, defining
    padding and margin as 0px and applying them both to the body tag
    and to a custom class that was later applied to the object tag that
    embeds the .swf file on the html.
    Still, the latest versions of Firefox, Safari and Opera (all
    on Mac OSX Leopard) still display a border around the website.
    What can I do? Thanks in advance.

    Thank you for posting.
    I've created a small video to show how to create a 100% width rectangle element. Please refer to the following Link : http://screencasteu.worldsecuresystems.com/aish/2013-03-21_1414.swf
    Hope this helps.
    Regards,
    Aishvarya Raj Rastogi

  • Stream 8 tablet location does not work on T-mobile broadband

    On my HP Stream 8 tablet, location works fine with GPS only (GNSS on; Mobile Broadband, Wi-Fi, and Bluetooth off).
    However, if I turn on Mobile Broadband and connect to T-Mobile and turn off GNSS (or GNSS on inside where there is no GPS signal) and keep Wi-Fi and Bluetooth off, the location gives very odd results.  Last week the map showed Phoenix as my location (I am actually located in San Francisco).  This week, it gives Brentwood or Clayton, CA, both more than 30 miles away.
    HP tech support said call T-Mobile.  T-Mobile said they had occasionally seen equally odd locations.
    I went to a nearby T-Mobile store.  They had a Samsung Galaxy Tab 4 which always gave a correct location, within 100 feet using T-Mobile alone.  Manually moving the map to a different location in an attempt to confuse it and turning it on and off, it would still find the correct location.  No surprise there, my three year old Virgin Mobile LG android cell phone does just as good a job at finding locations.
    (The T-mobile store also had an iPad Mini 3 that I was able to confuse.  On T-Mobile alone and clicking on My Location in maps, it produced a grid that was blank except for a line saying that it was unable to find a location, no info or link to what to do next.  The T-Mobile store did not have a Stream 8.  The Microsoft Store has a Stream 8 but it is not connected to Mobile Broadband.)
    Does anyone else have this problem?  Is my unit defective? There  are times that a GPS signal is unavailable and a T-mobile broadband signal is available, and it seems that this unit should be able to find a location at least as well as my cell phone.
    Thanks.

    I see the same basic results, wifi=off, bluetooth=off, gnss=off, t-mobile=on. Open win8.1 map-app shows my location in LA south of the 101/110 junction. I'm in SF Bay area near San Jose about 400 miles away. Turn on wifi and map-app shows me at my real address. With t-moile only, opened win8.1 IE, went to www.bing.com/maps location also shows LA.
    My only t-mobile account is the stream8 free 200mb/month data plan, don't think they have my real address anywhere. My t-mobile "phone" number is 720 area code in the Denver area. No idea why middle of LA is the t-mobile location. Must be a "feature, not a bug".

  • Is it just my Z10 or are they all essentially just a must be tethered to working power "not so mobile" phone

    Here's the chronology of my phone day that started at 7:15 and ended with the phone completely dead at 10:30 sharp.  Obviously, this is not nearly desirable for a phone:
    Unplugged from charger with 100% batt 7:15am. 
    7:30. 85% batt only wrote a memo entry for 1-2 mins.
    7:45 phone was dormant screen off the entire past interval. 80 % battery
    7:52 after 5 min phone call batt at 75% Note trying to make call took 52 second for phone to populate names associate with numbers on frequently called list (i.e. stored address book entries weren't showing as such and just showing number, not the name). 
    Updated memo with battery after phone call for 2 min battery @ 70 %. Phone acting like dumb terminal where you type faster than processor can handle and where auto correct really mangled stuff because of the inability for the processor to act normal.
    8:43. checked battery status after 45 min motorcycle ride with phone in trunk no missed calls 5 new emails, battery down to 55%.
    5 min Internet browsing then meeting 8:55-10:11 left phone at desk (not plugged in). 2 missed calls and 5 emails.  Battery down to15%.
    Stepped away from desk for 2 phone calls 8 min and 5 min. Phone turned off 3 second after plugging into charger at just before 10:30.
    Basically the phone with the Blackberry supplied charger takes longer to charge than to deplete the battery. 
    I've been a 7+ year Blackberry fan, but this $550 device feels like a bad letdown.  It's not acceptable as a work phone.  And I spend enough time away from a power source that if anything bad happens, (accident, car failure, etc, I have no way to call for help.)  This phone is a tragedy.  How many people are like me, less than 2-3 months into the new phone and looking at switching.  I've loved the traditional Blackberry usability and consider myself a total poweruser.  Now that I've been forced to learn Androidisms courtesy of the new Blackberry OS, Blackberry has already trained me to just get a real Android....
    Is there hope, or is this what it's going to stay like?  Life's too short for a phone that is this inadequate.  Is it just this device, or are all Z10's like that?   Calling Blackberry support, they are resigned, not helpful, and there is no movement to switch out my device or otherwise fix things, which implies problems are systemic rather than fixable at the device level.
    Thanks!
    F

    That is not normal.
    remove SD card and see if battery life improves, if it does then backup the data on it and format it in the device and move items back.
    Remove emails accounts one at a time and see if battery life improves.
    I have 6 email accounts, face book and twitter and mine will last 12 hours or more depending on how much I use it.
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Can not see the contacts in E63 mobile phone

    Hi,
    I amusing E63 mobile phone. I am not been able to view the contacts in the mobile, so not been able to use the same. But when an incoming call comes in I do get the name resolution of the person calling and his mobile no which is stored in the contacts.
    I tried backing up the mobile and all the time the backup of contacts could not happened and besides Contacts rest all is backed up....
    Pls do let me know how to resolve this issue..
    Thanks in advance...

    Hey  kartik_sh
    Welcome to the forum, your contacts are on the sim card and they will need to be either copied to Contacts on your phone for easy access.
    It is not clear from your description what could be causing this issue, so I will present a couple of possibilities. The first is that the contacts that you cannot see are stored on the SIM card and not in the phone memory, to remedy this you can follow these steps to copy your contacts into the phone memory:
    Menu>Communic.>Contacts>Options>SIM contacts>SIM directory>Options>Mark/Unmark>Mark all>Options>Copy to Contacts
    If this is not the case, and if after selecting Contacts you see the options Go Online and ChatServiceBuddy, it means that the ”Ovi Contacts Chat” service is selected as the default view. This service has been discontinued and replaced by Nokia’s new Chat service powered by Yahoo. You can set your default Contacts view back to the contact information stored in your phone by following these steps:
    •Select Menu>Communic.>Contacts
    •Press the left navigation key to select the central field at the top of the screen, then press the centre of the navigation key to open the menu, and finally select Phone
    •You should now see the contacts stored in phone memory. To make this the default view, select Options>Settings>Default contact list>Phone
    If you are interested in the new Chat application, you can switch the Contacts view back to the Ovi Contacts view, select Go Online and sign in with the same user identity and password that you use to log into this forum. Your phone would then remind you that Ovi Contacts Chat is discontinued and take you through the steps to download and install the new Chat application. We would recommend that you use a WLAN connection for this.
    If the two suggestions above do not resolve your issue, we can investigate further.
    Out of interest, when you say that creating a back-up did not successfully back-up contacts, do you mean that you created the back-up with Nokia Suite and the report displayed at the end of the process indicated an error? If there was no error during the back-up process, it is likely that the back-up was successful and we still need to work out whý the information is not appearing in your phone.
    Let me know if it works 
    Kind regards
    Carl
    If this post answers your question, you can help others by clicking the green accepted solution' button.
    Please ask your questions to the main board and not to my mailbox. Thank you.

Maybe you are looking for

  • How to delete multiple email messages from my Iphone 5c; email folder?

    How to delete multiple email messages from my Iphone 5C; email folder.

  • How to solve this problem"exception in thread "main" java.lang.noclassdeff"

    I am a tyro of java programming . i downloaded the j2sdk-1_4_2_09-windows-i586-p.exe from www.java.sun.com and installed it at the defaulted path C:\j2sdk1.4.2_09, then i wrote down my first java program as follow: public class hello public static vo

  • BizTalk Message Debatching

    Hi Experts, Can you please suggest which below one best for performance consideration? For, Debatching messaging we can do it for two ways  1. Debatching in Pipeline using Envelope schema. (OR) 2. In orchestration using For loop , like below  Getting

  • Since installing Yosemite postgres no longer works

    I've tried restarting server, creating a new server, none of it works. I've tried "Reload configuration" "Restart Server" "New Server Registration"  None of them work.  Also tried "mkdir /usr/local/var/postgres/pg_tblspc" How can I get postgres worki

  • No sound Satellite R15-S822

    After uninstalling Disney's Alice in Wonderland game, I no longer have sound. I am running XP-sp2. I also lost my keyboard and am using the input panel to type this. HELP! Chris Solved! Go to Solution.