How to efficiently select a block of text in iOS

I'm a relatively new iPad user who has brought his iPad into hospital. I'm frequently find iOS to be quirky. There are frequent times when I cannot select the specific phrase i want to capture. iOS guesses and almost always guesses way wrong, way, way too much. I'm startled that Apple has no tutorials on the iOS operating system itself. What am I missing?

If you don't have this already, you may find it somewhat helpful.
http://manuals.info.apple.com/MANUALS/1000/MA1595/en_US/ipad_user_guide.pdf
You can also download the user guide as a free book in the iBooks Store. You will need to download the free iBooks app if you haven't already done so in order to download the book.
Selecting text in iOS takes a little getting used to. It might help if you pinch out on the screen in order to enlarge the text and that makes it a little easier to refine the area that you are trying to select.
I forgot about this one. This might be helpful as well.
http://help.apple.com/ipad/7/

Similar Messages

  • How do I delete a block of text on my IPad. For example, when I want to forward an email

    How do I delete a block of text on my IPad. For example, when I want to forward an email & want to delete the previous sender's info.

    OK, Duh...press and hold on the text and a small menu will pop up. Then use Select, Select All, or just drag the blue handles to select the text you want.

  • How to pass selection screen parameters in text elements?

    how to pass selection screen parameters in text elements?

    don't you mean he other way around. Assign text-elements (selection texts) to select options?
    This you do in the menu where you can find text-elements, selection texts.
    menu Goto->text elements->selection texts.
    Edited by: Micky Oestreich on May 10, 2008 2:45 PM

  • How to write selection-screen block on 15th position?

    Hello all,
    I want to write selection-screen block on 15th position, How can I do this?
    I know that we can write parameter/select-option on perticuler position using following code.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE t7.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 15.
    PARAMETERS: fdat LIKE SY-DATUM,
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b1.
    It writes parameter(FDAT) on 15th position. How can I write whole block on 15th position?

    Hi,
    For this u have to use comment lines. See the below simple program...
    SELECTION-SCREEN COMMENT /2(50) TEXT-001 MODIF ID SC1.
    SELECTION-SCREEN SKIP 2.
    SELECTION-SCREEN COMMENT /10(30) COMM1.
    SELECTION-SCREEN ULINE.
    PARAMETERS: R1 RADIOBUTTON GROUP RAD1,
    R2 RADIOBUTTON GROUP RAD1,
    R3 RADIOBUTTON GROUP RAD1.
    SELECTION-SCREEN ULINE /1(50).
    SELECTION-SCREEN COMMENT /10(30) COMM2.
    SELECTION-SCREEN ULINE.
    PARAMETERS: S1 RADIOBUTTON GROUP RAD2,
    S2 RADIOBUTTON GROUP RAD2,
    S3 RADIOBUTTON GROUP RAD2.
    SELECTION-SCREEN ULINE /1(50).
    INITIALIZATION.
    COMM1 ='Radio Button Group 1'.
    COMM2 ='Radio Button Group 2'.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'SC1'.
    SCREEN-INTENSIFIED = '1'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.

  • How to change "Select a content category " text

    Hi folks,
    I really appreciate the support community, as I did deeper and deeper into the produce I've seen the same handful of names pop up across the board! Thanks for all your help!
    I was wondering how to change the "Select a content category>>" text that displays in a traditional skin next to your content categories upon generation. Specifically this:
    Is there a way to edit the text? Mine are focused on government levels and I'd like to make it easier for users.
    Thanks! Happy New Year!

    Hi there
    I believe you do it as follows:
    Click File > Project Settings.
    Ensure the General tab has focus.
    Click the Advanced... button.
    Click the LNG File tab.
    Scroll the list to the [WebHelp] section.
    Locate the item that reads: ContentCategoryList=Select a content category.
    Click on it to select it.
    Click the Edit button.
    Change the text following the equals sign it to what you want it to read.
    ContentCategoryList=Change this text
    Press Enter to accept the change.
    Click OK to dismiss the dialogs.
    Generate and test!
    Hope this helps... Rick

  • How to make selection-screen block as unvisible?

    hi,
    in report program there are two selection screen blocks like this.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
         parameters: rb1 as radiobutton group r1 user-command ucomm,
                  rb2 as radiobutton group r1,
                  rb3 as radiobutton group r1,
                  rb4 as radiobutton group r1,
         SELECTION-SCREEN BEGIN OF BLOCK b2.
              parameters: ip1 type string.
              select-options: date for pernr-begda.
         SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN END OD BLOCK b1.
    Now when i clicked on rb4 the selecetion screen block b2 has to be visible.
    And rest of things i.e for rb1, rb2, rb3 it should not visible. it should be disabled.
    Regards,
    Shankar.

    hi,
    i am doing like this.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text.
      SELECTION-SCREEN SKIP 1.
      SELECT-OPTIONS: pernr FOR person-pernr.
      SELECTION-SCREEN SKIP 1.
      PARAMETERS: tempname LIKE rlgrap-filename.
      SELECTION-SCREEN SKIP 1.
      PARAMETERS: rb_p1 TYPE c RADIOBUTTON GROUP r1 USER-COMMAND rbg,
                  rb_p2 TYPE c RADIOBUTTON GROUP r1,
                  rb_p3 TYPE c RADIOBUTTON GROUP r1,
                  rb_p4 TYPE c RADIOBUTTON GROUP r1.
      SELECTION-SCREEN SKIP 1.
        SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text1.
            PARAMETERS: country(25) TYPE c MODIF ID ccc.
            SELECT-OPTIONS:Fromdate FOR person-begda NO-EXTENSION MODIF ID ccc.
        SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN OUTPUT.
    IF rb_p4 = ' ' .
      LOOP AT SCREEN.
          IF SCREEN-NAME = 'COUNTRY'
          OR SCREEN-NAME = 'FROMDATE-LOW'
          OR SCREEN-NAME = 'FROMDATE-HIGH'
          OR SCREEN-GROUP1 = 'CCC'.
              screen-input = 0. "Disable
          ENDIF.
          MODIFY SCREEN.
      ENDLOOP.
    ENDIF.
    IF rb_p4 = 'X' .
      LOOP AT SCREEN.
          IF SCREEN-NAME = 'COUNTRY'
          OR SCREEN-NAME = 'FROMDATE-LOW'
          OR SCREEN-NAME = 'FROMDATE-HIGH'
          OR SCREEN-GROUP1 = 'CCC'.
              screen-input = 1. "Disable
          ENDIF.
          MODIFY SCREEN.
      ENDLOOP.
    ENDIF.
    Now it's making as disabled the fields which are in block B2.
    Acutually my requirement is when i ever user selects RB_P4 then only that screen has to appear. and for rest of 3 RB it should not visible. it should be invisible.
    for this wat to do....
    Regards,
    Shankar.

  • How to place selection screen block adjacent to other block

    hi all,
         I want a selection screen block side by side, is it possible
    without using screen painter, if it is let me know.
    Thanks & Regards
    RK

    Hai RK check the following syntax
    CALL SELECTION-SCREEN dynnr
                          [STARTING AT col1 lin1
                          [ENDING   AT col2 lin2]]
                          [USING SELECTION-SET variant].
    before this you need to create two screens

  • In Acrobat XI, how can I select and move multiple text/image blocks simultaneously on the same page?

    I work with student-generated PDFs that require all content to be within a specific margin range. Occasionally tables and figures are indented or otherwise spaced incorrectly so that the content violates the margin requirements. In Acrobat X, I could use the select tool to draw a select box around all of the text and lines within a table, for example, and just slide the entire table over a bit to meet the requirements without sending the PDF back to the author for a correction. This didn't always work, but often enough that I was able to use it on a daily basis.
    Is there a way to select multiple (but not ALL) text blocks and image pieces on a page, so they may be moved simultaneously? If I have to select every text block and line (or every point and line within a graph) and move them each individually, this is going to be a nightmare.
    I have Acrobat XI for both Mac and Windows, but tend to use the Windows version more often.

    Hey, I'm using Acrobat XI and I can't multi select like I use too do with shift as always. Now I get a green note every time I want to multi select with shift + click as always. I also use Pitstop and I get the same green notes.
    Can someone help me ?

  • How to select a block of text in SE38?

    Not talking about CTRL+Y, that is good to select on reports or tables etc. I once knew the shortcut to select block text and paste block text in SE38. Does anyone remember that shortcut key? Thanks.

    Hi
    This is an option in setting menu from where u can select block of code  by just displaying mouse over it and code automatically
    get selected.
    check u r menu item for option
    Thanks

  • Working in code view selects whole blocks of text when a page is opened for the first time

    This is really annoying feature of dreamweaver, I assume it serves a purpose but I do not know what it is. If I open a document (I generally always work in code view) then select the area I wish to, say, copy and then press control and c, the whole block of code becomes selected (so my selection expands). That isn't what I selected so why does it do this? If I click outside the code view - on to css styles for example - then I can now select the lines of code I want and can work with the code as intended. If I save the document, tab to another document in dreamweaver and tab back again, the same happens. So, everytime I open a document I have to click CSS styles before I can work with the document as intended. I've been working with this for a while and it's go to the point where it makes me cry. It's not quite as annoying as working with the old ftp service but it's not far off.
    Help.

    I think you're describing this well known bug
    http://forums.adobe.com/message/2636948
    Have a read through that thread and see if any of the suggestions or workarounds help you.

  • How to efficiently select random rows from a large table ?

    Hello,
    The following code will select 5 rows out of a random set of rows from the emp (employee) table
    select *
      from (
           select ename, job
             from emp
           order by dbms_random.value()
    where rownum <= 5my concern is that the inner select will cause a table scan in order to assign a random value to each row. This code when used against a large table can be a performance problem.
    Is there an efficient way of selecting random rows from a table without having to do a table scan ? (I am new to Oracle, therefore it is possible that I am missing a very simple way to perform this task.)
    thank you for your help,
    John.
    Edited by: 440bx on Jul 10, 2010 6:18 PM

    Have a look at the SAMPLE clause of the select statement. The number in parenthesis is a percentage of the table.
    SQL> create table t as select * from dba_objects;
    Table created.
    SQL> explain plan for select * from t sample (1);
    Explained.
    SQL> @xp
    PLAN_TABLE_OUTPUT
    Plan hash value: 2767392432
    | Id  | Operation           | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT    |      |   725 | 70325 |   289   (1)| 00:00:04 |
    |   1 |  TABLE ACCESS SAMPLE| T    |   725 | 70325 |   289   (1)| 00:00:04 |
    8 rows selected.

  • How do I edit a block of text in thousands of contact records?

    When I imported contact data from my Treo to the iPhone via Address Book on my Mac, my custom fields got entered into the Notes field as X-Palm-Category1: <data>, X-Palm-Category2: <data>, etc. Can I do a global edit changing the text "X-Palm-Category1" to "Directions"? I have over 2000 records so I'd really like to avoid individual record edits.
    Thanks.
    Ken

    I wasn't able to do it with the replace text routine common to AppleScript, so I used sed (a Unix utility) called from AppleScript:
    tell application "Address Book"
    repeat with thisPerson in people
    if exists the note of thisPerson then
    set thisNote to the note of thisPerson as string
    set the note of thisPerson to (do shell script ("echo \"" & thisNote & "\" | sed 's/X-Palm-Category1/Directions/' "))
    end if
    end repeat
    end tell
    AppleScript is mighty slow, but much faster than manual.
    I'm sure you can also use something like HexEdit to replace all "X-Palm-Category1" with "Directions" in the file "/Users/YOURUSERNAME/Library/Application\ Support/AddressBook/AddressBook.data", but binary files are always a little scary. Don't use a text editor to do it, it won't handle the weird bytes, even though, luckily, X-Palm-Category1 appears as is.

  • How do you disable / remove / block private browsing in ios 8

    I want to disable / block / remove private browsing from my iPhone 5 on iOS 8.1.2. I heard from a friend that you can type in a password somewhere in settings to do this which would be ideal. Any help would be much appreciated!

    It took a while I had to follow a hunch. Go to settings> general> restrictions> set a restriction passcode and write it down> scroll down to websites> limit adult sites> on. Besides blocking private you can't erase Safari history when you have websites resrictions. See before and after below.

  • Newbie Mac user:  Selecting block of text via the keyboard only?

    Hi,
    I'm switching over to a Mac from a PC and haven't been able to find an answer to this question. How do I select a block of text only by using the keyboard?
    As an example, on the PC from wherever the cursor is in a document, if I then hit Ctrl-Shift-end, the entire rest of the document from the cursor down is selected. Another similar task would be to select all of the text from the cursor to the end of the line, which on the PC can be done with Shift-end.
    Are there Mac equivalents?
    Thanks.
    Les
    MacBook Pro Mac OS X (10.4.10)
    MacBook Pro   Mac OS X (10.4.9)  

    COMMAND-SHIFT-end to select from the cursor to the end of the line. COMMAND-SHIFT-pagedown selects from cursor to end of document, use pageup to select entire document.
    Other alternatives:
    Press SHIFT and use the right arrow key to select characters. Use OPTION-SHIFT and right arrow to select words. COMMAND-right arrow key moves cursor to end of line and OPTION-right arrow moves cursor to next word.
    See also: Mac OS X Keyboard Shortcuts.
    In many instances wherever Windows uses CTRL in a shortcut the Mac uses COMMAND (Apple Key - ⌘)

  • How to handle paragraph styles in imported text with no tagged paragraph styles

    Hi
    Im currently trying to import a file (word file / excel I have both formats) into an indesign book and formatting the text automatically!
    My question is: How is it possible to reflow text into frames and when changing frame it changes paragraph?
    Or how is it possible to change paragraph style when forcing a line break when using text reflow?
    I have already figured out how to reflow the text, and actually also managed to relow text into the frames and change paragraph style. I know how to use the keep option, and by this change the paragraph style when e.g. changing frame break/page break etc.  (but if the content being flowed-in is not tagged with style names then I cannot figure out how to do it) The document and its content I whish to import do not have any tagged paragraphs!
    Then I tried to look into "object styles" and format a text frame on a master page with an object style, and by using a "dilimiter character" forcing the text to start in a new frame when bringing the frame into live on a page. But here I cannot make the "text frame/object style" to apply or to work.
    If any of you have a hint, I would be more than happy to hear from you
    This picture are illustrating the outcome I would to get to....

    If the incoming text does not have styles, or has only one style, there is really not much you can do other than assign styles after the import. If there are recognizable patterns in the formatting, a lot of that can be done with Find/Change, and there are a few scripts floating around that can help automate some of that.
    Also, if your styles have a a good "next style" heirarchy built in, you can select large blocks of text (up to the point where applying next style would be incorrect), then right click the style name in the paragraph styles panel and choose apply style and next style (remove overrides). Warning. Removing overrides will remove any locally applied formatting like bold or italics, so local formatting should be converted to character styles first. Applied character styles are not overrides and will be preserved.

Maybe you are looking for

  • Recieving e-mail issue - only get them after I perform a browser action

    I am baffled. For some reason, i can only receive e-mails after i go to Facebook for blackberry and search for status updates. I assume when i do that, it polls for the e-mails. Any idea how to fix this?

  • Need Info on Music Licensing Organization in UK

    I need a memory refresher. I read of an organization in the UK, and possibly parts of Europe, that was a clearing house for music licensing. My Google searches are not turning up anything, but I suspect that my search critera are bad. Basically, this

  • Can I retrieve photos that disappeared during sync?

    My recent photos were lost during a sync. When I attempted to sync a message popped up telling me I needed to either 1) add my iphone as a new device or 2) revert to most recent sync from a couple months back. The reason given had something to do wit

  • Uninstall Photos shop elements 6

    I have a Macbook Pro running Maverick.  I previously installed Photoshop elements 6 and would like to know how to uninstall it completely  After uninstall I do want to try and reinstall it as I am having problems.

  • Make to order for stock transfer orders

    Hi all I have set up "make to order" strategy (20)  in a production plant A. When I create a sales order for an external customer, in production plant A, the system creates a requirement in a special stock for the sales order in MD04, which is exactl