BlackBerry BlackBerry 10 10 Word Wrap

Q10 is my first BlackBerry and so far I am very happy with it. However, there is one thing that is very annoying.

No return to the line in the HTML emails and in the browser.

So far, I found 2 options:

  • Resize to ridiculously small fonts to make a line to adapt to the screen
  • Scroll left and right all the time.

But these solutions are so 2005...

If you decide to build a high-end phone with only 25% of the pixels in a S4 of the Galaxy, then at least make a few adjustments to the software. At the present time, browsing and reading emails on my 3 years of low-end android phone 240 x 320 pixels are more a pleasure.

This message indicates that it is currently unavailable. They suggest the drive mode, but that cuts of the navigation menu.

Is there an estimated date for when newline will be available?

I took things into their own hands, because you noted this as a bug of 6 months, with no results.

Here is the page of github with the fix.

Visit this browser page the BlackBerry10 (works with desktop as well), to test.

How to use:

  1. Visit this page
  2. Favorite of some links, which seem useful to you
  3. Visit a Web site
  4. Press 'K '.
  5. Select the bookmark to return to the line

Please tell me what you think. I should do a post for this?

Tags: BlackBerry Smartphones

Similar Questions

  • BlackBerry Q10 Q10 browser Word Wrap issue

    In the case of mobile browser, how to return to the line.  If the zoom words is too small, so zoom to have to scroll horizontally to read full sentences. Very annoying.  Thank you

    Chief

    Hey chief9900,

    Welcome to BlackBerry Support Community Forums.

    The word wrap feature is currently unavailable for Q10 of BlackBerry browser, one solution is to use the drive mode feature, see here:

    http://docs.BlackBerry.com/en/smartphone_users/deliverables/50635/mwa1334235028048.jsp

    Let me know if you have any other questions.

    Thank you.

  • 11.0 FF not word wrap good number of my pages

    I had problems with some but not all Web sites does not not wordwrap... it's like a full paragraph of the text on a single line. Pain in the neck to read and I'm ready to get back to IE, but do not want to. 11.0 FF using on a 64 bit W7 machine. Many things have changed in recent months with updates and change versions on this computer. I disabled all add-ins without result. I searched on the web and most of the items I have book with Word wrap problems such as page developers produce. I searched using FF and got 117 pages... and actually went through four pages, finding nothing even vaguely relevant to this problem.

    Can help?

    Thank you.

    Terry


  • How to word wrap in muse?

    How to word wrap around an image in muse?

    Hello

    Please see the link below.

    Wrapping text around an image in Adobe Muse

    I'm sure that you will find it useful.

    Kind regards

    Vivek

  • How can I copy and paste a pdf form on my Clipboard Mavericks. I see that word wrapped text.

    How can I copy and paste a pdf file in my Clipboard Mavericks. I see that word wrapped text.

    If the form is saved in PDF format, can not you just place the PDF file in the other application?

  • How can I position MCs in the scene as words wrapped in a page? Mathematical problem.

    Hello world

    I am trying to position a few MCs in rows in the scene (dynamically created MCs) in such a way that, when they reach a max width they jump up to a line, such as words wrapped in a page with left alignment, or to explain, as the scheme of image attached. Each MC has a different width.

    I tried a lot of things without success. But I guess that I'm almost there. Right now I use a table that retrieves each width of MCs and another who gets the sum of the widths.

    Here is my code, important elements in red:

    CREATE MENU CONTAINER.

    var menuContainer:MovieClip = new MovieClip();

    menuContainer.x = 10;

    menuContainer.y = 500;

    addChild (menuContainer);

    CREATE IMAGES CONTAINING MC.

    var imagesContainer:MovieClip = new MovieClip();

    imagesContainer.x = 10;

    imagesContainer.y = 10;

    addChild (imagesContainer);

    CHARGERS IMAGE.

    var imagesLoader:Loader;

    var bigImagesLoader:Loader;

    TABLES.

    var imageLoadArray:Array; stores the respective URL of each image in each button

    function sum(array:Array,_ini:int=0,_fin:int=-1):Number {/ / function to sum bays}

    fin = (is-1)? array.length: end;

    var sumArrays:Number = 0;

    for (var u: uint = ini; u < fin; u ++) { }

    If (typeof (array [u]) == 'number') { }

    sumArrays += array [u];

    }

    }

    return sumArrays;

    }

    var imgPosArray:Array = new Array (); creates the table that defines the position of the images in the Gallery

    var imgPos:Number;

    LOAD THE XML.

    var xmlLoader:URLLoader = new URLLoader();

    xmlLoader.addEventListener (Event.COMPLETE, whenLoaded);

    xmlLoader.load (new URLRequest("XML/roiaXML.xml"));

    var xml;

    function whenLoaded(evt:Event):void {}

    xml = new XML (evt.target.data);

    var mySetsList:XMLList=xml.children();

    / / / MENU BUTTONS.

    / / POSITIONING of the BUTTONS on the INSIDE OF THE CONTAINER MENU.

    var rowMaxWidth:Number = 500;

    var totalWidth:Number;

    Var: line number;


    var cellWidthArray:Array = new Array();

    var sumCellWidthArray:Array = new Array();

    / / CREATE BUTTONS.

    for (var i: int = 0; i < mySetsList.length (); i ++) {}

    var newSetButtonMC:setButtonMC = new setButtonMC();

    //

    imageLoadArray = new Array();

    for (var j: int = 0; j < mySetsList [i].) IMAGE.length (); j++) {

    imageLoadArray [imageLoadArray.length] = mySetsList [i]. IMAGE [j]. Attribute ("smallURL");

    }

    newSetButtonMC.imageArray = imageLoadArray;

    //

    newSetButtonMC.setButtonText.text = mySetsList.attribute ("setTitle") [i];

    newSetButtonMC.setButtonText.autoSize = TextFieldAutoSize.LEFT;

    //

    cellWidthArray [cellWidthArray.length] = newSetButtonMC.setButtonText.width;

    sumCellWidthArray [sumCellWidthArray.length] = sum(cellWidthArray,0,i);

    trace(cellWidthArray[i]);

    totalWidth = sum(cellWidthArray,0,i);

    row = Math.floor (totalWidth/rowMaxWidth);


    newSetButtonMC.x = sumCellWidthArray [i] +(i*10);

    newSetButtonMC.y = (newSetButtonMC.height + 10) * rank;

    newSetButtonMC.buttonMode = true;

    newSetButtonMC.addEventListener (MouseEvent.CLICK, onClickButton);

    menuContainer.addChild (newSetButtonMC);

    }

    / / / MENU BUTTONS ACTIONS.

    function onClickButton(mevt:MouseEvent):void {}

    / / LOAD the IMAGES in the GALLERY.

    var targetButton:setButtonMC = setButtonMC (mevt.currentTarget);

    imgPos = 0;

    imgPosArray.length = 0;

    for (i = 0; i < targetButton.imageArray.length; i ++) {}

    imagesLoader = new Loader();

    imagesLoader.load (new URLRequest (targetButton.imageArray [i]));

    imagesLoader.contentLoaderInfo.addEventListener (Event.INIT, getImageWidth);

    imagesLoader.x = i 200;

    imagesContainer.addChild (imagesLoader);

    / / BIG LOAD IMAGE WHEN click ON the IMAGE OF the GALLERY.

    imagesLoader.addEventListener (MouseEvent.CLICK, loadBigImage);

    }

    }

    function getImageWidth(evt:Event):void {/ / this function get the widths of images}

    imgPos = evt.currentTarget.width;

    / / trace (imgPos);

    imgPosArray [imgPosArray.length] = imgPos;

    trace (imgPosArray);

    }

    function loadBigImage(evt:MouseEvent):void {}

    trace ("ok");

    }

    }

    Thank you very much

    Abstrato

    If one is your array of movieclips and space is white space between the end of a movieclip and the start of the next leading is the space between adjacent lines and width is the maximum width of your lines and you want your movieclips begin to startX, startY, you can use the function below to organize your movieclips:

    function arrangeMCF (a: startX:uint, startY: uint, space: uint, attack: uint, table, width: uint) {}

    var curentX:Number = startX;

    var YCourant: Number = startY;

    for (var i: uint = 0; i<>

    If (a [i] .width + currentX<>

    a [i] .x = currentX;

    a [i] there = currentY;

    currentX += [i] .width + space;

    } else {}

    currentX = startX;

    += currentY leading;

    a [i] .x = currentX;

    a [i] there = currentY;

    currentX += [i] .width + space;

    }

    }

    }

  • Firefox and multiline Word Wrap problem



    Hello
    MacBook Pro
    Firefox 2.0.0.3
    MacOSX 10.4.9
    Dreamweaver8 8.02

    I can't get Firefox to recognize the function of skin DW in multi-line text entries. The text wraps not, and thescroll bar appears at the bottom of the text box not on the side. What is even more unbearable, it's that I can't change the "style" (font, size, bold, etc.) in the multi-line text box...

    Does anyone know of this problem or solution/work around?

    I tried:
    -Whole word wraps (physical, virtual, and by default,)... How does not work
    -Tried in different browsers (Safari, Explorer)... Works
    -All other fields of form in my post respond to changes to text style (font, etc.) ... Firefox does NOT work in a line
    -Switched back to single line... Firefox DO meets the style of text changes

    Thanks for any help...

    {skin: ;}} is an exclusive property of IE and not part of the css.
    correct handling of Firefox. Unfortunately, the FF does not support a soft
    Hyphen

    Gary suggests that you can insert a hair space,  
    Do {overflow: hidden ;} would cut the overflow, and {overflow: auto ;}}}
    would cause the overflow to allow scrolling.

    "OleLena" wrote in message
    News:eu8tmm$7QD$1@forums. Macromedia.com...
    >
    >
    > Hi,.
    > MacBook Pro
    > Firefox 2.0.0.3
    > MacOSX 10.4.9
    > Dreamweaver8 8.02
    >
    > I can't get Firefox to recognize DW wrapping in multi-line feature
    > text
    > entries. The text wraps not and thescroll bar appears at the bottom
    > of the
    > textarea not on the side. What is even more unbearable, it's that I can't
    > to
    > change the "style" (font, size, bold, etc.) in the multi-line text box...
    >
    > Does he know about this problem or solution/work around?
    >
    > I tried:
    > - All the word encapsulates (physical, virtual, and by default,)... How does not work
    > - Tried in different browsers (Safari, Explorer)... Works
    > - All other fields of form in my post answer text style changes (font,
    (> etc..) ... Firefox does NOT work in a line
    > - Switched back to single line... Firefox DO meets the style of text
    > changes
    >
    > Thanks for any help...
    >

  • BlackBerry Q10 add Word Substitutions when you compose an email

    Hello world

    Is there a way when you compose an email to add Word substitutions? Instead of having to enter through the first settings?

    Thank you

    Hey georgeh5801,

    Welcome to BlackBerry Support Community Forums.

    Currently a word substitution can be added when you compose a message, it must be done in the language and input parameters before composing the message.

    Let me know if you have any questions.

    Thank you.

  • BlackBerry App A word to BB: "Please a transparency for loyal customers.

    I am really sad and frustrated that officials BlackBerry are not because of the Twitter pictures... If we say that not everyone uses what is BlackBerry app will respond not to what is news App; that cannot be said about Twitter because it has millions of BlackBerry users... then why BlackBerry is not attend to this matter? !!! Very strange... or what they know to the BlackBerry not continuous this is BB 10 platform in the near future and those who use it will be left behind...
    A word for BlackBerry: please some transparency we (loyal users of BB10) so that we make our choices...
    Question: if I removed the Twitter version pre-installed on the legacy and reinstalled Twitter to say Mobile 1 app store application: to solve that question photos? And I continue to receive messages from twitter in the hub?
    Thank you

    Gallouly wrote:
    everything I say is directed to management of BB not to everyone here.

    But, as has been explained, this is not the purpose of this forum.

  • BlackBerry Q10 mynumber word substitution does not work

    Hello

    I'm having a problem with "mynumber" word substitution on Q10, if I encounter this problem on the old BB OS 6 version, just change the information of SIM on Options-> device-> settings-> SIM card Advance system-> change the SIM phone number.

    How can I change mynumber on BB OS 10?

    Please let me know

    Leo Soesanto

    Hello Leo,

    Thank you for your question about the phone number on your smartphone BlackBerry Q10.

    To change the phone number in the smartphone BlackBerry Q10, please go to settings > privacy and security > SIM card

    Let us know if you have any other questions.

    Thank you

  • BlackBerry Smartphones download Word files on the BB with device software 4.5

    Hello. I just upgraded my HH to 4.5 and our BES to 4.1.6. (Bundle38). I myself have sent an email with a Word attachment to test. When I tried to download the file on my HH, I received this message: "you are about to download a file that cannot be played on your Blackberry device. Continue? "I clicked 'Yes' and it looks like it's uploaded in the documents folder. When I opened the file, nothing here? I missed a step or what? Thank you!

    You will not see "dataviz' listed anywhere on your BB... Look at Options > Advanced > Applications and find DocumentsToGo?

    If not, reopen the Desktop Manager > Application Loader and find the Advanced button and check DocumentsToGo.

  • BlackBerry Smartphones MICROSOFT WORD 2007! (does not work! HELP!)

    Hey, I want to take my word and powerpoint on my curve, but I have word 2007 no one knows how it works for room rmake or something to download... just please tell me it won't cost money haha

    First download and install from here Office Manager (4.7 without Media Manager is recommended): https://www.blackberry.com/Downloads/entry.do?code=A8BAA56554F96369AB93E4F3BB068C22

    Then download and install the software from here: http://na.blackberry.com/eng/support/downloads/download_sites.jsp

    Then try to reload the operating system by connecting the device to your computer, open the Desktop Manager, then go to the Application Loader. This will open a wizard who travels to reload the operating system on your device. More detailed instructions can be found here:
    http://CrackBerry.com/BlackBerry-101-How-install-or-upgrade-new-rim-operating-system-OS

  • BlackBerry Smartphones Notepad, Word go, Excell to go are missing.

    Had one major flaw 3 weeks ago while in portugal. App error 523 came on a WSOD. I reinstalled the operating system using a Portuguese pc (not easy because my Portuguese is, well, uh,... zip!) So I went from 4.7 to V5. Icons and screen were very slightly different, and everything seemed fine. Then I found that it lacked the applications provided with my old operating system. Notepad, word must go, excel to go and similar. In the apps folder to store all that I now have files, video recorder, recorder, voice, saved messages and compose.

    Where have they gone?

    BB support is useless and the missing 'contact us' from their site Web means that I can't, uh... contact them!

    Any help will save you Bravo

    Hi, it's nothing too serious. All you have to do is to connect your device to Desktop Manager blackberry on pc (download it from this site if you have not already) and wait for the application list to load. Then in a columns will be a checkbox next to all the names of the application. To add an app on your device, check the box, then once you have added all the necessary applications, click on the white box "sync" under the link, then follow the instructions.

    Hope this helps? (Y)'

  • BlackBerry Smartphones opening Word / Excel files stored on the media card

    I just got my BB Bold 9700 last week. I used the BB Desktop manager to copy Word and Excel documents from my laptop to the card media on my 9700. Worked very well; However, when I try to open them on the 9700, I get the following message:

    When you enter a remote share: //host/share at least, possibly add [/ file [/ file...]] [filename]

    Could someone please show me an example of what they mean and how to do it?

    austinxw wrote:

    I'm new to all of this, what is BES?

    BES = Blackberry Enterprise Solution - a server, hosted within a firm, that provides a conduit between the company (for example, Exchange, Notes) messaging system and the BB belonging to the company.

  • BlackBerry Smartphones Blackberry app missing word

    I had my blackberry for almost 8 months now, and I have had nothing but trouble with him. It started when I tried on blakberry app world, but he said no specific APN, my blackberry Messenger also disappeared, I tried it turning on and off then took the battery out, but nothing worked and I have together lost all bb app world, and is now found. I was able to remedy this when it happened before, by going to the icons of reset, but did not work this time. Help, please. sphperkins x

    1. on your home screen, press Menu > SHOW ALL, so that ALL DISPLAY is checked.
    2. look in EVERY folder on your device... Applications, instant messaging, downloads, etc.
    If you don't see it still, look at the Options > advanced > Applications. Do you not see it listed there?

    If still nothing, do a simple reboot > with the phone smart BlackBerry turned on, remove the battery for a minute and then reinsert the battery to restart.

    Review everything.

    And, finally, if still nothing, use your Blackberry browser to go to the www.blackberry.com/appworld and try to download and reinstall AppWorld.

Maybe you are looking for

  • Helps novice! Great need in how to enter the white e-mail address filter

    Business e-mail address must be in the white filter. I get no message on Thunderbird.Learned this because I could not remember my password to the site & now can't get on myaccount. Have no idea what to do. Need step by step instructions. Thank you!

  • Satellite P15-S470 it turns off by itself - overheating?

    Hello 3-4 years old laptop Toshiba Satellite P15-S470 my father seems to be overheating because it turns off by itself. It can happen at any time: in Windows XP Media Center 2004 (SP2 and all updates), at the prompt of password of BIOS at idle, at Wi

  • 0x8004FF00 when you try to uninstall MS Security Essentials

    I can not install MS Security Essentials due to the error message "an another windows installer is already running...". ", but there are no other programs running in the Task Manager. I deleted all the previous products from Mcafee and works "Disk Cl

  • Installed the wrong vista on the computer hard drive...

    OK so here's... My girls to hard drive on his laptop crashed while I had it replaced the guy told me to reinstall vista (preinstalled) here and we were good to go. I came here and in an emergency I had the wrong bag and installed the software for my

  • Repair Windows 7 SP1 installation fails.

    I'm trying to repair an installation of Windows 7.  Windows 7 has become corrupted during a Microsoft Update in October 2012.  The problem is preventing any Microsoft Updates.  Attempts to get 8007370B error code.  After several failed attempts to re