How to delete text vertically in Pages

I have a log of text messages that me and my friend have had, and I want to delete the time informations from it. The example below will help you understand the situation.
2012/7/16 4:30, Me : Blah blah
2012/7/16 4:31, A : Blah blah
2012/7/16 4:32, Me : Blah blah
2012/7/16 4:33, Me : Blah blah
2012/7/17 9:34, A : Blah blah
2012/7/17 12:35, Me : Blah blah
2012/7/18 1:36, A : Blah blah
Now I want to delete the blue bits from the original text.
Thanks in advance.

I was unaware that you couldn't Option-Click-Drag a selection in TextEdit. When I do it, it seems to work:
The screen shot shows that the text is RTF (Option to change to Plain Text is showing in Format menu).
Your observation regarding Pages allowing the selection and reformatting the text, but not allowing deletion, should mean that there isn't much of a code gap in that aspect of the app. I'll submit a Feedback enhancement request.
Jerry

Similar Messages

  • How to display TEXT vertically in SMART FORM

    Hai,
    I need to display the column name of a table vertically (readable from bottom to top) in smart form.
    Could any one please tell me how to do this?
    Thanks & Best Regards,
    Maniyam Bhaskar.

    Hi,
    Go through these threads for the discussions happened on similar issue... hope it helps you..
    how to print text vertically in smart forms
    vertical and horizontal printing in same page with smartforms or sapscript
    Good luck
    Narin

  • How to add text vertically into a Word margin with C# (using namespace: Microsoft.Office.Interop.Word)

    I need to add text vertically in a word document outside the margins.  How can I do this with Microsoft.Office.Interop.Word and C#?
    Leonard Swarczinski Software Developer Postal Center International

    Hi Leonard,
    According to your description, do you want to add text vertically into Page Header/Footer? I wrote a sample  for you.
    using Microsoft.Office.Core;
    using Microsoft.Office.Interop.Word;
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace AddTextToWord
    class Program
    static void Main(string[] args)
    CreateNewDocument();
    Console.ReadLine();
    private static void CreateNewDocument()
    Object oMissing = System.Reflection.Missing.Value;
    Microsoft.Office.Interop.Word.Application oWord;
    Microsoft.Office.Interop.Word.Document oDoc;
    oWord = new Microsoft.Office.Interop.Word.Application();
    oWord.Visible = true;
    oDoc = oWord.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing);
    String HeaderText = "Hello everyone!";
    WdParagraphAlignment wdAlign = WdParagraphAlignment.wdAlignParagraphCenter;
    AddHeader1(oWord, HeaderText, wdAlign);
    private static void AddHeader1(Application WordApp, string HeaderText, WdParagraphAlignment wdAlign)
    Object oMissing = System.Reflection.Missing.Value;
    WordApp.ActiveWindow.View.Type = WdViewType.wdOutlineView;
    WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekPrimaryHeader;
    Microsoft.Office.Interop.Word.Shape textBox = WordApp.ActiveDocument.Shapes.AddTextbox(MsoTextOrientation.msoTextOrientationVertical, 150, 10, 40, 40);
    textBox.TextFrame.TextRange.Text = HeaderText;
    WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument;
    If I misunderstood or anything wrong, please let me know and you can get more information from below articles.
    Office development in Visual Studio
    http://msdn.microsoft.com/en-us/office/hh133430.aspx
    Abhout: AddTextbox Method
    http://msdn.microsoft.com/en-us/library/office/aa171543(v=office.11).aspx
    How to: Programmatically Insert Text into Word Documents
    http://msdn.microsoft.com/en-us/library/vstudio/6b9478cs.aspx

  • How to print text vertically in smart forms

    hi,
    Can any one tell how to print text vertically in smartforms
    ADVANCE THANKS
    GUHAPRIYAN

    HI,
    Chk out  this thread.Maybe it proves helpful.
    Re: vertical writing in smartforms
    Regards,
    Gayathri

  • How to link text frames in Pages 5.2?

    How to link text frames in Pages 5.2?

    The correct term in Pages is Text Boxes, and true linking is not implemented in v5.2. You can Unite, Intersect, Subtract, and Exclude multiple Text Boxes via the Arrange panel. These attributes only appear when two or more Text Boxes are selected. Also, on the Arrange menu, you will need Object Placement set to Move with Text, and the Text Wrap set to None for more accurate positioning.
    In the following example, there was initially a Text Box with overflowing text that was duplicated. With both Text Boxes selected and aligned, I could then use the Unite feature from the Arrange panel. This allowed the text to flow into the second box. Selecting text in one box and dragging upwards continues the text selection between both boxes. Hoefler italic applied in one box is applied to both. Appropriately placed, another trip to the Arrange panel to enable Text Wrap around and text fit adjustments.

  • How to draw text vertically, or in an angle

    please help me how to draw text vertically, or in an angle

    I robbed the framework from Dr Las or 74phillip (don't remember which) ...
    import java.awt.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class AngleText extends JPanel {
      private int      degrees = 16;
      private JSpinner degreesSpinner;
      public AngleText () {
        setBackground ( Color.WHITE );
      }  // AngleText constructor
      protected void paintComponent ( Graphics _g ) {
        super.paintComponent ( _g );
        Graphics2D g = (Graphics2D)_g;
        g.setRenderingHint ( RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON );
        AffineTransform at = AffineTransform.getRotateInstance ( Math.toRadians ( degrees ) );
        Font f =  g.getFont();
        g.setFont ( f.deriveFont ( at ) );
        g.drawString ( "Rotating Text!", getWidth()/2, getHeight()/2 );
        g.setRenderingHint ( RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF );
      }  // paintComponent
      public JPanel getUIPanel () {
        SpinnerModel degreesModel = new SpinnerNumberModel (
                                      degrees  // initial
                                     ,0        // min
                                     ,360      // max
                                     ,2        // step
        degreesSpinner = new JSpinner ( degreesModel );
        degreesSpinner.addChangeListener ( new DegreesTracker() );
        JPanel panel = new JPanel();
        panel.add ( degreesSpinner );
        return panel;
      }  // getUIPanel
      //  DegreesTracker
      private class DegreesTracker implements ChangeListener {
        public void stateChanged ( ChangeEvent e ) {
          Integer i = (Integer)((JSpinner)e.getSource()).getValue();
          degrees   = i.intValue ();
          repaint();
      }  // DegreesTracker
      //  main
      public static void main ( String[] args ) {
        JFrame f = new JFrame ( "AngleText" );
        f.setDefaultCloseOperation ( JFrame.EXIT_ON_CLOSE );
        AngleText app = new AngleText();
        f.getContentPane().add ( app );
        f.getContentPane().add ( app.getUIPanel(), BorderLayout.SOUTH );
        f.setSize ( 200, 200 );
        f.setVisible ( true );
      }  // main
    }  // AngleText

  • How to delete a template from pages

    Hi
    Does anyone know how to delete a template fom pages?

    Pages stores those you created & saved as templates in (your account) > Library > Application Support > iWork > Pages > Templates > My Templates. The user's Library is hidden in Lion & Mountain Lion but it is easy to open. In Finder, hold down the Option key while clicking on the Go menu & your user Library will appear about halfway down the list. Or you can choose Go to Folder from Go menu in Finder & paste this line in the box:
    ~/Library/Application Support/iWork/Numbers/Templates/My Templates/

  • How to link text-boxes in Pages 5.2?

    How do you link text-boxes in Pages 5.2?

    Thank you for your help; it is appreciated. I suspected that, but am still disappointed. I am finding myself getting more and more disenchanted with Apple products in the past few years. I've been a faithful fan, user and promoter since the 1980s, but I am starting to seriously doubt their competency in the past few years with the Pages 5 version as well as what iOS7 continues to do to my iPhone (as my prime examples). Instead of enhancing my life and work, Apple is beginning to waste my time -- a lot of it! Perhaps it is time for a change.... I don't want to, but I am starting to look for other alternatives.

  • How to flow text across multiple pages in 9

    My form is lengthy, and one Master Page section will be text with no form fields, but the text is 10+ pages, depending on the version of terms and conditions provided.  In this link, http://forums.adobe.com/message/5112687, there is much discussion on how to accomplish in 8.2, but how would I accomplish in 9?  I would like to be able to paste the 10+ pages and have it automatically flow for that Master Page section. Have tried placing a text field and also tried a text into a flowable subform, setting it to multiple lines, keep with next, but just not sure how to set it up properly.  I can see the plus sign at the bottom of the text box, but when I preview, it does not flow to the other pages.  Was hoping to avoid setting up 10+ pages in the form, as from time to time these terms/conditions are updated, and it would be much faster to just be able to copy/paste from Word into a properly set up text field or subform.  Hope this makes sense, and appreciate any advice, thank you.

    Get your text from Word (or wherever you'd like to edit the text so that it looks right).
    Open a LiveCycle document (a new one if you're starting from scratch, anyway)
    Select your page1 subform, set content to Flowed (Allow page breaks should set automatically).
    Add a text field (make sure it's listed as a part of that page1 subform).
    Change the text field's caption position to none and make sure Allow multiple lines is checked (as well as allow page breaks). Set height to auto expand
    click on the default value for the text field. Paste that 9-page document inside.
    Wait a few seconds (or minutes) for LiveCycle to catch up.
    Preview and enjoy your new document with several pages automatically paginated for you.

  • How to delete multiple images in Pages?

    Is it possible to delete at the same time several images from a text file in Pages? I pasted a Facebook conversation in a text file and unfortunately all its pictures too (like profile pictures). Please help me!

    If you don't want the images you can use the "Paste and match style" option when you paste. The images will not get pasted. You can use Cms + X to cut the already pasted text with images and then use Paste and match style in the Edit menu.

  • How to justify text vertically in multi-column frame

    How do I justify text vertically in a multi-column frame but within the baseline grid?
    Working at a very busy publication, fitting text evenly in multi-column text boxes are crucial to be done quickly! I understand that it can be done manually by adjusting the tracking in order to force the text to end evenly on bottom. However I'm looking to achieve that result automatically, pretty much like the "Justify Vertically" feature except by doing so it spreads the last column lines out, but I need to keep the text on the grid.

    You can ask over in scripting: InDesign Scripting

  • How to align text vertically?

    This seems like it should be really easy: On a simple text slide, how do I align multiple lines of text vertically? Do I have to eyeball it, or is there a way to fix it exactly in the center, top to bottom?

    Hi -
    There is no automatic way, but there is a way to make it slightly easier.
    After you enter your text, grab the clip of type and move it to a portion of the timeline where there are no other clips.
    In the Canvas click on the button on the top right and select Checkerboard:
    !http:/www.spotsbeforeyoureyes.com/CanvasCheckerboardBG.jpg!
    This will make the background a checkerboard so you can count the squares to verify the top and bottom line are equidistant from the TV Safe Guidelines:
    !http://www.spotsbeforeyoureyes.com/CanvasCheckerBoardExample.jpg!
    When you are done positioning the type, grab the clip and place it above the clip you originally wanted it to appear over.
    You can either leave the Canvas set to display a checkerboard when there is no video present, or switch it back to Black.
    Hope this helps.

  • How to delete a template in Pages

    Using an iMac with Mountain Lion 10.8.2, how can I delete a template in Pages '09?

    Delete My Template: Apple Support Communities

  • How to delete text in a photograph

    CS5 
    Windows 7
    Delete text in a photograph

    If the text is "Copyright, don't steal this photo", it can't be deleted without paying the photographer. 
    -Noel

  • How to delete text item in delivery

    SAP Expert,
    I am facing one problem in deleting text item from the delivery. In one case our store person have inserted taxt item by mistake in delivery. In the delivery there are two schedule lines one is of Tan and another is of tatx (which is by mistake inserted by him) he prepaired bill for the delivery and System split the delivery in two invoices, later on he cancelled the invoice of Text item Which value is 0. But now the delivery is showing pending in VF04 though we have invoice the 1st schedile line. After this I tried to delete the text itm by going to vl02n but system is not alowing me to delete the schedule line. error is document can not deleted. where as system is also not allowing thtough t-code vl09n after cancelling the invoice.
    I need experts help to solve this problem. I wan to cleare the delivery from t-code VF04.
    nikhil

    Dear Thanks doe the prompt reply.
    here the delivery is only one and system have created two invoices. I have cancell the invoice of 0 value by using t-code VF11, after this I tried for vl09 to reverse the goods movement but system is not allowing me becouse for the same delivery we have created two invoices and one is cancell.
    so dear friend tell me is it possible for me to reverse the one schedule line from the delivery by using vl09n.
    nikhil

Maybe you are looking for

  • Simple Question abbout email/submit

    I'm so embarrased about asking this but I've only just started to learn Adobe Designer 7. I' m learning through the Livecylcle  Designer Help before I start purchasing books. I'm learning and creating ok but the 'Submit' button is nagging me in the b

  • Using Variables in BODS

    Hi Experts, i have a senario lets consider sample source table pro_id     item_number     store_name 101          10                    store1 102          10                    store1 101          10                    store2 101          10        

  • Run Ti9me Error in BI Trainning

    Hi all I try to apply for the support pack of Basis component in BI -Training system , During Apply it will stoped and give the Run time error . Then after am not able to execute any other tcodes inside the system . Below mentioned Error , Kindly giv

  • Not ideal but try this...

    Hi Well my flashplayer has also been playing up.  I tried all sorts... many many many times. It is now working.  All I did was create a new user for my laptop.  So when I want to use Flash I log in using that user. Like I said it's not ideal but it w

  • E72 - The GPS connects very slow

    Hi,  When I turn on the Ovi GPS on my Nokia e72 it connects sometimes fast and can show my where am at BUT when I want a guide to show me the way to a location it takes sometimes 20 - 30 minutes to find a road. And I live in Sweden in a big city. It