Pasting loses all the carriage returns

Hi,
Whenever I paste text from the command line, or computer source code into mail, all the formatting is gone. I have to go back and put a carriage return at the end of every line! I've tried intermediary pastes to text editors and such, but it doesn't work. My default has now become a paste as quotation and then remove the extra level. I wish Command-V could do those two steps together instead of the useless regular paste. Is there some switch that I can use to get back the old behavior? Maybe I should consider Thunderbird.

Hi, and welcome to the forums Jovan!
Yep, seems to be a problem with Mail itself, seen lots of complaints, but Text Edit Pasting & recopying & Pasting seemed to work for most... gawd!
I think Thunderbird or Eudora is the way to go, they're the ones I use. I don't trust Mail one little bit.

Similar Messages

  • Paste loses all formatting within same document

    In all three of my iWork '09 applications, Cut and Paste loses all the formatting of the object I'm trying to copy within the same document.
    In some cases I can copy the object, then copy the style, then paste the object, then paste the style, which works albeit in a very cumbersome way.
    But to move a table around (within the same document!) this doesn't work at all and I'm reduced to dragging the object, which often doesn't work properly.
    Any ideas on what's gone wrong? I'm on Lion now running on a 2006 Mac Book Pro 3Gb, but the same behaviour was evident in Snow Leopard.
    Cheers,
    i

    Would be useful to select a table (so that it has its eight handles then Copy and paste in the other location.
    Yvan KOENIG (VALLAURIS, France) dimanche 21 août 2011 23:57:07
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Making a composite of 2 images, it lose all the colors

    Hello, Thanks for reading me.
    I'm trying to make a composite of 2 images (link_down, link_top) and when I'm making the composite it lose all the colors, I don't know why, please can anybody help me?
    here are the images:
    down= http://img234.imageshack.us/img234/9571/87453416io0.jpg
    top= http://img71.imageshack.us/img71/7305/otraft7.png
    output= http://img229.imageshack.us/img229/7796/outputjn0.jpg
    and here is the code, please someone could help me?
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import javax.imageio.ImageIO;
    import javax.swing.JFrame;
    public class ImageMaker {
         public static BufferedImage rotate(BufferedImage img, int angle) throws Exception{
              int w = img.getWidth();
              int h = img.getHeight();
              BufferedImage img2=ImageIO.read(new File("/tmp/top.png"));
              BufferedImage dimg = new BufferedImage(w, h, img.getType());
              Graphics2D g = dimg.createGraphics();
              g.drawImage(img, null, 0, 0);
              g.drawImage(img2,null, 20, 20);
              ImageIO.write(dimg, "jpg", new File("/tmp/output.jpg"));
              return dimg;
         public static BufferedImage createImage() {
              BufferedImage img = new BufferedImage(100, 100, BufferedImage.TYPE_INT_RGB);
              img.createGraphics();
              Graphics2D g = (Graphics2D)img.getGraphics();
              g.setColor(Color.YELLOW);
              g.fillRect(0, 0, 100, 100);
              for(int i = 1; i < 49; i++) {
                   g.setColor(new Color(5*i, 5*i, 4+1*2+i*3));
                   g.fillRect(2*i, 2*i, 3*i, 3*1);
              return img;
         public static void main(String[] args) {
              JFrame frame = new JFrame("Image Maker");
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent event) {
                        System.exit(0);
              try{
              BufferedImage a=ImageIO.read(new File("/tmp/down.jpg"));
              frame.setBounds(0, 0, 200, 200);
              //JImagePanel panel = new JImagePanel(createImage(), 50, 45);
              JImagePanel panel = new JImagePanel(rotate(a,30), 50, 45);
              frame.add(panel);
              frame.setVisible(true);
              }catch(Exception e)
                   System.out.println("Salida:"+e.toString());
    import java.awt.Graphics;
    //import java.awt.Graphics2D;
    import java.awt.image.BufferedImage;
    import javax.swing.JPanel;
    public class JImagePanel extends JPanel{
         private BufferedImage image;
         int x, y;
         public JImagePanel(BufferedImage image, int x, int y) {
              super();
              this.image = image;
              this.x = x;
              this.y = y;
         @Override
         protected void paintComponent(Graphics g) {
              super.paintComponent(g);
              g.drawImage(image, x, y, null);
    }

    Try replacing
    BufferedImage dimg = new BufferedImage(w, h, img.getType());with
    BufferedImage dimg = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);Looks like your "down"-image is grayscale, and therefore also dimg.

  • Run quickSearch with the carriage-return key

    Hi to all,
    I am using JDeveloper 10.1.2 and developing an application using ADF Business Components and JheadStart 10.1.2.
    JHS built the application and i need to do some post-generation.
    I need to run quickSearch with the carriage-return key.
    To do that, i replace
    <messageTextInput id="searchText" name="searchText" text="${searchBean.searchText}" rows="1" maximumLength="255" columns="60"/>
    by
    <messageTextInput id="searchText" name="searchText" text="${searchBean.searchText}" rows="1" maximumLength="255" columns="60">
    <enterClientAction>
    <fireAction event="quickSearch"/>
    </enterClientAction>
    </messageTextInput>
    The problem is the carriage-return action go systematically to the BackButtonErrorPage.
    How can i solve this problem ?
    Is it a good solution ?
    Sorry, if my english is not very well.
    Thanks
    Laurent

    Thank you Martijn for your help
    I tried your solution :
    In UIX :
    <messageTextInput id="searchText" onKeyDown="if(window.event.keyCode==13) doSearch(event,'goSearchButton');" name="searchText" text="${searchBean.searchText}" promptAndAccessKey="&amp; de recherche" rows="1" maximumLength="255" columns="60"/>
    <button id="goSearchButton" name="goSearchButton" onClick="doDataEvent('quickSearch','quickSearch', 'true' );" text="${nls.GO}"/>
    In javascript :
    function doSearch(e, buttonName) {
    buttonToClick = document.getElementById(buttonName);
    buttonToClick.click();
    The behaviour is the same, i often go to the BackButtonErrorPage but not systematically.
    But if i use the search button, i never go to the BackButtonErrorPage.
    I don’t undersand,
    Anybody has an idea ?
    Regards
    Laurent

  • I want to update from 10.4.11 to at least 10.5 but am worried I will lose all the files/apps/iPhoto's etc. will this happen?

    I need to update my iTunes in order to use Apple TV and so that i can use icloud with my MacBook(I have an iPad and iPhone)
    I have worked out in order to do this I need at least to have 10.5. I want to check that I won't lose all the apps, files, photos etc. on my computer if I upgrade to this? Do i need to clear everything before i install10.5?
    I have read that if I jump to 10.6 rather than 10.5 I will lose everything on computer. Is this true?

    Before you do anything make a cloned backup of your system on an external, erased HDD:
    Clone using Restore Option of Disk Utility
      1. Open Disk Utility in the Utilities folder.
      2. Select the Destination volume from the left side list.
      3. Click on the Restore tab in the DU main window.
      4. Select the Destination volume from the left side list and drag it to the Destination
          entry field.
      5. Select the Source volume from the left side list and drag it to the Source entry field.
      6. Check the box, if present, to first Erase the Destination drive.
      6. Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.
    You may then do an Erase and Install of Snow Leopard before moving to anything later.
    Drive Preparation
    1. Boot from your Snow Leopard Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    4. Quit DU and return to the installer. Complete the Snow Leopard installation.
    You can purchase Snow Leopard by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The price is $19.99 plus tax. You will receive physical media - DVD - by mail.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store.
    Snow Leopard General requirements
      1. Mac computer with an Intel processor
      2. 1GB of memory
      3. 5GB of available disk space
      4. DVD drive for installation
      5. Some features require a compatible Internet service provider; fees may apply.
      6. Some features require Apple’s MobileMe service; fees and terms apply.

  • Removing the carriage return / Tab during data extraction

    Hi ,
      I have an issue with removing the carriage return / Tab from the extracted (Flat File) data from SAP EKPO table.
      1) While uploading(Long Back) the Legacy data to SAP tables the carriage returns and Tabs in Product description were uploaded to SAP tables.
      2) Now I am extracting data from bkpf,..EKPO.. tables  to a flat file . 
    3) When I extract the data i. PO number, Product description,......
    The Product description is going to 3 to 5 lines depending on the carriage returns and Tabs in the Product description.  Ekpo-txz01
    Ex : Mfg # DS104NA / NET######GEAR DS104 Hub######model
        I want  this product description in one continuous line. It is possible only  by removing the Carriage returns and tabs from product description before concatenating and TRANSFERING the file to Server.
    4) What is  getting:  The line is breaking @gear @ Hub due to Carriage return/Tab
    Mfg  D  NET
    GEAR DS104 Hub
    model   .
    5) What is required is: in one line
    Mfg  D  NETGEAR DS104 model
    In the process I am extracting product description from Ekpo-txz01 . So it is internal table. Now I want to remove the carriage return / Tab .
    How these can be removed.
    Thanks,
    Vasu

    Dear Vasu,
    Sometimes there is a problem that cannot be solved normally. This is one of them.
    The reason why the mentioned methods do not work is because you need to remove actually two characters CR and LF in one stroke. You can identify one but then not the other. So approach it from the other side.
    Simply define what your correct characters might be AND only use them to export.
    Below you will find a FORM routine that does just that (only passes defined valid characters and NOT others).
    FORM validate_field USING    VALUE(field_in)
                        CHANGING field_out.
    CONSTANTS:
    All low caps characters
      validlow(26)  TYPE c VALUE 'abcdefghijklmnopqrstuvwxyz',
    All upper caps characters and all figures
      validhigh(36) TYPE c VALUE '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ',
    All other characters (starting with space)
      validrest(32) TYPE c VALUE ' <,>.?/:;"{[}]|\~`!@#$%^&*()_-+=',
    Single quote
      validquote           VALUE ''''.
      DATA:
        pos(1) TYPE c,         " Container to hold 1 character
        l      TYPE i,         " Length
        i      TYPE i.         " Indexer
    Determine length
      l = STRLEN( field_in ).
    Stripping loop
      WHILE i LT l.
      Get one character 
        pos = field_in+i(1).
      Check its validity
        IF pos CO validlow
        OR pos CO validhigh
        OR pos CO validrest
        OR pos EQ validquote.
        When valid, use it
          concatenate field_out
                      pos
                 into field_out.
        ENDIF.
      ENDWHILE.
    ENDFORM.
    Hopes this helps solving your problem.
    Regards,
    Rob.

  • Possible to add the Carriage Return Character

    Hi all,
    I need to add the Carriage Return characters at the end of the each paragraphs.  I found the insertTextAsContent (using: {String | SpecialCharacters} , position: XMLElementPosition), but don't know how to use this function. I think in this method accept only the position as XML Element Object.
    How to use this function to achieve my task?.
    Using: InDesign CS4/Javascript/Windows.
    Regards,
    Karpanai

    you could do: string += "\r";
    \r is a carriage return, and \n is a newline

  • I have an iphone 4 (ios 4.3.1). I want to update to the latest ios, but it wouldn't load onto my iphone, I got error message code 3014. I tried again and it said I would lose all the contents on my iphone if I continued - help!

    I have an iPhone 4 (IOS 4.3.1) and it was synced and backed up today.
    I wanted to upgrade to the latest ios on iTunes (today's date is 3rd Jan 2013), it seemed to download ok (it took about 30 minutes or so), but when it tried to update onto the iPhone (I think this was what it was doing!) I got an error message that had code 3014 in it. Nowhere on Apple's website can I find a way to resolve this error code.
    I then thought I would just try again from the beginning, but I then got an error message saying that if I continued I would lose all the contents on my iPhone so I cancelled it as I don't want to lose everything on my phone.
    Can anyone help me as I am not very good at technical things and I really want to upgrade the ios on my iPhone without losing all the data I have on there already. An idiots guide would be great.
    Thanks.

    Errors 3000-3999 (3004, 3013, 3014, 3018, 3164, 3194, and so on): Error codes in the 3000 range generally mean that iTunes cannot contact the update server (gs.apple.com) on ports 80 or 443.
    Update to the latest version of iTunes.
    Verify the computer's date and time are accurate.
    Check that your security or firewall software is not interfering with ports 80 or 443, or with the server gs.apple.com.
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    An entry in your hosts file may be redirecting requests to gs.apple.com (see "Unable to contact the iOS software update server gs.apple.com" above).
    Internet proxy settings can cause this issue. If you are using a proxy, try without using one.
    Test restoring while connected to a known-good network.

  • How can I show all the results returned by a sql query?

    Hi guys,
    I need your help.
    Let's say I have one table: TableA. Fields of TableA are aleg, anon, apes. The following sentence can return, in general, several rows: select anon from TableA where aleg = somevalue. I'd like to show the result of column anon but no luck. If I try to show the results in a TextArea and the origin is an sql query only shows the first row value. I tried Show as: show as text (based in PLSQL) and coding an anonymous plsql block as
    DECLARE
    v_anon TableA.anon%TYPE;
    CURSOR v_cur IS
         select anon from TableA where aleg = somevalue;
    BEGIN
    OPEN v_cur;
    LOOP
    FETCH v_cur INTO v_anon;
    EXIT WHEN v_cur%NOTFOUND;
    :FIELD_IN_FORM := v_anon;
    END LOOP;
    CLOSE v_cur;
    END;
    but in this case it's not shown any result.
    So the first question is what kind of field should I use to show the result. And the second one is what can I do to being able to show all the results returned by the query (provided that is more than one single row).
    regards

    Hi Denes,
    Just starting with apex. I think I know how to show the results in a report region. I've simplified the posted question.
    A more detailed question would be: Suppose you have a region where you have put several text areas to accommodate the result of a multi-column query (lets say for TableA) that only returns one row, each column value returned put in a different text area. Also you want to show the values of other fields in TableB that depends on some value just retrieved from TableA and that you want all values retrieved (from TableA and the linked TableB) to be show in the same region. Is that possible? If yes, how?
    Thank you in advance

  • If I create a new apple ID will I lose all the apps I have purchased with my original ID?

    If I create a new apple ID will I lose all the apps I have purchased with my original ID?

    I set up FaceTime and Messages on four different devices with only one Apple ID. I used the exact method that is described in the video that AnaMusic has provided to you in the link in her response above.  That method worked fine for my family, but you can create new Apple ID's just to use for FaceTime and Messages if you like. Many users prefer doing that as opposed to adding new email addresses.
    IMO - using unique email addresses (like in the video) makes sense, because we (my family) all have different email addresses anyway, and it was very simple to add each family members email address to both apps and remove my Apple ID email address as the contact address on each device.
    BTW .... if you are using your Apple ID on both devices - your phone number should be the number that is showing in the settings - not you daughter's. Did you set up the Apps with your Apple ID?

  • My computer didn't reconize my ipod, it tell me I hav conect with another biblio,but I never put it in another computer.How I can't  lose all the game on my ipod because itune want to erase my ipod and sync.What I can save the game in my Ipod to computer

    My computer didn't reconize my ipod, It tell me I have syncr with a another biblio, but I nerver put it in another computer. How I can't lose all the game on my ipod because itune want to erase my ipod and sync, What I can do tosave

    My computer didn't reconize my ipod, It tell me I have syncr with a another biblio, but I nerver put it in another computer. How I can't lose all the game on my ipod because itune want to erase my ipod and sync, What I can do tosave

  • I recently purchased songs from itunes via my pc and I dont know how to get them onto my iphone? When I click the sync button it says I will lose all the music currently on my iphone.. Help :(

    I recently purchased songs from itunes via my pc and I dont know how to get them onto my iphone? When I click the sync button it says I will lose all the music currently on my iphone.. Help

    If you're syncing with a different iTunes library than the one you previously synced with, then there is no way around it. You're gonna loose the old data. The only way round it would be to make sure that all the music files on your iPhone is also in your iTunes library. If you still have access to the computer with the old library, you could copy the files on to an external harddrive, and then import them into your new iTunes library.
    If it is in fact the same library, then the music currently on your iphone, is also in your itunes library. Just make sure that the artists/albums/playlists, or whatever you sync contains these tracks, that you allready have on your phone and don't want deleted. What i do is, i create a playlist specifically for my iPhone, and i set it up to only sync with this playlist. Whenever i hear a track from my iTunes library or buy a new track that i want on my phone, i just drag it to this playlist and next time i synchronize, it's there without deleting anything else.

  • I just bought a new computer and when i click on itunes it says i need to install ASL.dll, but i'm scared if i instal it or reinstall itunes i will lose all the music i've bought from itunes, what do i do?

    HHHHHEEEEEEEEEELLLLLLLPPPPPPPPPPPP!!!!!!!!!!!!!!!!!!i just bought a new computer and when i click on itunes it says i need to install ASL.dll, but i'm scared if i do or re-install itunes i will lose all the music i have bought from itunes, what do i do?

    Welcome to the Apple Support Communities
    The music is stored on the iTunes library. This library isn't deleted when you uninstall or reinstall iTunes, so you will keep everything. Anyway, it's better to make a backup of the library. Apart from that, you can download the purchased music as many times as you want

  • MY hard drive crashed and I had to replace it. Now when I try to sync my iPod with iTunes it says that I have to replace the old library (that is lost forever) with the new library to sync. I do not want to lose all the songs on my iPod! What can I do?

    MY hard drive crashed and I had to replace it. Now when I try to sync my iPod with iTunes it says that I have to replace the old library (that is lost forever) with the new library to sync. I do not want to lose all the songs on my iPod! What can I do?

    Copy all the content on your iPod back to your PC and into iTunes. Then go ahead and sync the iPod with your new library.
    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • Hi, I need to re-format my hard drive, as it has a virus, so will lose all my data including itunes. I therefore need to reinstall itunes - but if I do this will I lose all the music that I have bought? How do I reinstall music to the new itunes?

    Hi, I need to re-format my hard drive, as it has a virus and is corrupted- so I will lose all my data including my itunes software. I guess I will need to reinstall itunes again - but if I do this will, I lose all the music that I have bought or imported into my library? How do I reinstall my library/playlists to the new itunes?
    Thanks

    Make a backup of your media and other important files.
    Just to be safe, make a backup of your entire iTunes directory.
    Restore computer or do whatever it is you need to do.
    Restore your media and other important documents.
    Install iTunes.
    Try using search next time... this gets asked way too frequently.

Maybe you are looking for