Cut and Paste - without installing anything..

PasteBud, A new free service provides a cut/paste capability without the
need to install anything.
http://www.theregister.co.uk/2008/12/12/pastebudhowto/

It depends.
If the blank row is at the bottom of the table, the other ones will be created automatically.
If the blank row is between two filled rows (what I assumed given your question about 'overWriting') yes, you must create the new blank rows.
At least it's what I thought when I posted.
Since, I looked back in Numbers User Guide and found an info which I missed :
Yvan KOENIG (VALLAURIS, France) lundi 26 décembre 2011 11:54:59
iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
My iDisk is :
http://public.me.com/koenigyvan
Please : Search for questions similar to your own before submitting them to the community
For iWork's applications dedicated to iOS, go to :
https://discussions.apple.com/community/app_store/iwork_for_ios

Similar Messages

  • Cut and paste problem in an applet :(

    Hi All,
    I have developed an applet based GUI and now I wanted to cut and paste some text from an external application say from a notepad(Windows) to a
    JTextfield in the applet. I tried to do it on a applet but it was not allowing me to do it. I was able to do the same(cut and paste) on a textfield when run as an application. So does the cut and paste operation has anything to do with the sandbox security provided by an applet model?. This sounds bit crazy or maybe Im missing something here. Would appreciate help on this.
    Thanks a ton!
    Thanks,
    Ram

    You can always use CTRL-C and CTRL-V to copy/paste, but if you want to right-click, you have to implement it yourself.. Here's MY implementation, if even has 'Undo'!
    import java.awt.*;
    import java.awt.datatransfer.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    public class CTPopupMenuMouseListener extends MouseAdapter
           private JPopupMenu popup = new JPopupMenu();
           private JMenuItem undoItem, cutItem, copyItem, pasteItem, deleteItem, selectAllItem;
           private JTextComponent textComponent;
           String savedstring="";
           String lastactionselected="";
           public CTPopupMenuMouseListener()
                  Action action = new AbstractAction("Undo")
                    public void actionPerformed(ActionEvent ae) {
                         if(lastactionselected.compareTo("")!=0){
                             textComponent.setText("");
                             textComponent.replaceSelection(savedstring);
                  undoItem = popup.add(action);
                  undoItem.setMnemonic('t');
                  popup.addSeparator();
                  action = new AbstractAction("Cut")
                    public void actionPerformed(ActionEvent ae) {
                          lastactionselected="c";
                          savedstring=textComponent.getText();
                          textComponent.cut();
                  cutItem = popup.add(action);
                  cutItem.setMnemonic('t');
                  action = new AbstractAction("Copy")
                    public void actionPerformed(ActionEvent ae) {
                          lastactionselected="";
                          textComponent.copy();
                  copyItem = popup.add(action);
                  copyItem.setMnemonic('c');
                  action = new AbstractAction("Paste")
                    public void actionPerformed(ActionEvent ae) {
                          lastactionselected="p";
                          savedstring=textComponent.getText();
                          System.out.println("in paste code savedstring is: "+savedstring);
                          textComponent.paste();
                  pasteItem = popup.add(action);
                  pasteItem.setMnemonic('p');
                  action = new AbstractAction("Delete")
                    public void actionPerformed(ActionEvent ae) {
                          lastactionselected="d";
                          savedstring=textComponent.getText();
                          textComponent.replaceSelection("");
                  deleteItem = popup.add(action);
                  deleteItem.setMnemonic('d');
                  popup.addSeparator();
                  action = new AbstractAction("Select All")
                     public void actionPerformed(ActionEvent ae) {
                          lastactionselected="s";
                          savedstring=textComponent.getText();
                          textComponent.selectAll();
                  selectAllItem = popup.add(action);
                  selectAllItem.setMnemonic('a');
            public void mouseClicked(MouseEvent e)
                  if (e.getModifiers()==InputEvent.BUTTON3_MASK)
                         if (!(e.getSource() instanceof JTextComponent))
                               return;
                         textComponent = (JTextComponent)e.getSource();
                         textComponent.requestFocus();
                         boolean enabled = textComponent.isEnabled();
                         boolean editable = textComponent.isEditable();
                         boolean nonempty = !(textComponent.getText()==null || textComponent.getText().equals(""));
                         boolean marked = textComponent.getSelectedText()!=null;
                         boolean pasteAvailable = Toolkit.getDefaultToolkit().getSystemClipboard().getContents(null)
                                    .isDataFlavorSupported(DataFlavor.stringFlavor);
                         undoItem.setEnabled(enabled && editable);
                         cutItem.setEnabled(enabled && editable && marked);
                         copyItem.setEnabled(enabled && marked);
                         pasteItem.setEnabled(enabled && editable && pasteAvailable);
                         deleteItem.setEnabled(enabled && editable && marked);
                         selectAllItem.setEnabled(enabled && nonempty);
                        int nx=e.getX();
                        if (nx>500)
                            nx=nx-popup.getSize().width;
                         popup.show(e.getComponent(),nx, e.getY()-popup.getSize().height);
                  }else if ( e.getClickCount()==2 )
                        CTmainFrame.JTextArea1.setText("");
      }

  • How can I move columns in Numbers without distorting the formula in other cells?  In Excel I can cut and paste entire columns and the formula in other cells adjusts accordingly.  When I do it in Numbers, the formula messes up.  How can I do this?

    How can I move columns in Numbers without distorting the formula in other cells?  In Excel I can cut and paste entire columns and the formula in other cells adjusts accordingly.  When I do it in Numbers, the formula messes up.  How can I do this?
    For example: I have formulas in columns D and F that relate to columns C to CU
    If I want to move one column from one position to another (say S to T), the formula loses the colums that was moved, i.e. it doesn't recognize it has moved, rather sees it as deleted...  How can I do this without distorting the formula?

    Thanks for the feedback.
    If I often urge askers to look at the available resources, it's because  a large range of questions asked in the forums are already answered in these documents.
    As they are PDFs, they are easy to search in.
    CAUTION
    Download them while they are available.
    Given what is delivered with iBooks Author, I'm afraid that we will not get such easy to use documents.
    Searching infos in the  iBooks Author documentation available on line is awfully cumbersome and a lot of embedded links are wrongly flagged this way. In the Help files they aren't links but underlined strings.
    It seems that the tool used to generate the web pages was wrongly configured.
    Yvan KOENIG (VALLAURIS, France) dimanche 22 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
    My iDisk is : http://public.me.com/koenigyvan

  • How can I cut and paste from a webpage to a Word document without the document taking me to the web address when I click on a word in the document?

    How can I cut and paste from a webpage to a Word document without the document taking me to the web address when I click on a word in the document?

    You are trying to copy a link, it is most likely in a different color such as the words "Microsoft's own forums" in his post. In Word highlight the word or words, control click on them, select Hyperlink, then Edit Hyperlink, then delete the link from the top box. It will then have a button asking if you want to "Remove Link", click on it.

  • How can I cut and past on imac without a left and right click on mouse?

    Trouble cut and pasting on an imac since mouse has no right and left clicks...how can I highlight something and cut and paste somewhere else?

    Holding the Mouse button down and dragging across text should highlight it, and Command-C Command-V should allow you to copy/paste.

  • Who else does not have cut and paste, or shift click anymore on Lion?

    I can't cut and paste anything, and shift click doesn't work like it normally should. Shift click is acting like command shift insead of selecting everything between. Please, no ******** answers.

    LordHawks wrote:
    I can't cut and paste anything, and shift click doesn't work like it normally should. Shift click is acting like command shift insead of selecting everything between. Please, no ******** answers.
    You don't have your numbers lock on or a shift key jammed or something do you? I have been using Lion since it was released and have never had nor seen an issue with the keyboard as yet. That's not to say you are not having one. Is it happening in particular programs? Have you installed any third party programs along the line like TypeIt4Me or such?

  • I can't cut and paste and the mac doesn't see me as the admin

    Okay so here are my current frustrations and issues:
    1. I can't cut and paste anything! Not from emails, not in documents, nothing.
    2. I went to make changes in the utilities and when I started, under my name, it said admin and now it says standard and the computer won't allow me to make changes. I try to enter my name and password and the computer says I am not the admin.
    3. I can't delete the "test" user and "guest" user because apparantly there is no admin.
    I have rebooted using the install disk and I was able to change the passwords but I still can't get in as the admin.
    Is there a way to override this before I a) pull out all of my hair, my husbands hair and the hair belonging to my cat and/or b) before I throw the machine out the window and then have another frustration that the unit is not working?! 

    First back up all your data, if you haven't done so already.
    Boot in safe mode (shift key down at startup) and check to see whether the clipboard now works. If it does, reboot as usual (not in safe mode) and try again.
    Next, boot in single-user mode by restarting the computer and holding down the Command and S keys at the chime, until you see white text on a black background. Wait for the text to stop scrolling, then follow the instructions on the screen, which will tell you run the fsck and mount commands. Be very, very careful to type the commands correctly. After you enter the mount command, please enter this:
    rm /var/db/.AppleSetupDone
    Then this:
    exit
    The Mac will now boot up as if for the first time. Go through the setup procedure to create a new admin account with the same name and password as the old one.

  • Can no longer drag or cut and paste links or words from one place to another with new Firefox update

    After updating Firefox 19.0.2 to my iMac Desktop 10.8.2, Lion, I can no longer drag or cut and paste anything to anywhere, anymore. Please help. Thanks!

    Does this also happen if you try to copy/cut and paste text in a text area like "Post a Reply" on this forum?
    Try to reinstall Firefox.<br />
    Download a new copy of the Firefox program and save the disk image (dmg) file to the desktop
    *Firefox 19.0.2: http://www.mozilla.org/en-US/firefox/all.html
    *Trash the current Firefox application (e.g. open the Applications folder in the Finder and drag the Firefox application to the Trash) to do a clean (re-)install
    *Install the new version that you have downloaded
    *https://support.mozilla.org/kb/Installing+Firefox+on+Mac
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data if you uninstall and (re)install Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • HT1212 I did not sync my iPad to iTunes on my PC. Now my iPad is disabled because I forgot my passcode when I set up iOS 7 on it. I have tried to use the support info from Apple AND the cut and paste responses from people in the community, but it does not

    I did not sync my iPad to iTunes to my PC. Now my iPad is disabled because I forgot my passcode when I installed iOS 7 to it.
    Before anyone cuts and pastes the info from Apple support in response to this, I have already tried those steps. iTunes simply states that it cannot do anything since the iPad is locked with a passcode. I cannot access iCloud to use that specific advice as iCloud will not let me sign in; a message keeps coming up reading that there is an error with the server. Remote Swipe? Not sure. It is three hours later, and I am no further.
    What else can I do? I never had a passcode set up when I first got my iPad. I would have bypassed this with the installation of iOS 7 if I had known about this.
    Thank you in advance.

    You can only play 720p video.
    Download the 720p or standard def version.

  • Adobe Reader/Preview  pdf-to-Word cut and paste problems...

    Hi,
    I often cut and paste from pdfs of documents where the text is in two columns, to Word documents...and without fail, I get a jumbled-up mix of BOTH columns of text that I have to mess with, deleting bits I don't want, squishing-up the text I do, etc...
    What am I doing wrong, and is there anything I can do to stop this happening?!
    Thanks very much for any advice.

    If you are using Adobe Reader to open the pdf then the selection tool should highlight what you are copying and pasting. Unfortunetley sometimes with double row columns you are forced to copy parts of text that you don't want.

  • How do I cut and paste

    I have just bought an apple having previously owned windows based computers. And was wondering if anyone can advice how you cut and paste things within social networking sites.  It would appear I can not do it the same way as windows. Not sure why.  I have not tried doing anything in word or excel yet.

    This may be good information for cut, copy, and paste functions within a program that uses text or pictures within documents but not good advice for simple file management....
    It is important to me that I maintain files without using up space by having duplicate files in multiple locations, ie. same file name with same contents under another parent file with differing name.  I want to move multiple files from one parent file to another parent file that may contain the same file name. Upon doing so, I should get a pop up window that states I am trying to move a file with the same name to this new location that already contains a file with the same name and what do I want to do with it? Stop, Merge, Overwrite, etc.  I would say stop because I want to verify if they are indeed the same contents and to continue with the moving of files for those that do not have a conflict. When all is said and done, I should only have those files left in the original parent file that had a conflict and all the others should have successfully moved to the new location parent file.
    This is not the case with Mac.  When I try this procedure, FIRST there is no CUT command using the command and mouse (right click) menu. SECOND if I selct all files in the parent file (command 'a') and drag to the new file location, I get all the previously mentioned options about files with the same names but when its done, I find that the files were only copied and not cut from their original location file. This makes it impossible to know which files are indeed duplicates since everything was left behind in the original parent file location.
    What is the Darn answer??!!  Don't tell me Apple was so stupid not to create a function that does this as all Windows based computers do.

  • Cut and Paste not working for specific client?

    Gui Gurus,
    I have recently upgraded some users to Gui 710 Patch 8.  However on one users install, she cannot copy and paste the entire content of a cell.  For example:
    If she copies aaaabbbbbccccdddd, she'll only get aaaabbbbbcccc.  For some reason it gets truncated.
    I have tried this on my identical install and can do the exact same cut and paste for the same input field fine.  I did a reinstall of her Gui, but that did not help.  I checked her user parameters and could not find anything to alter this behavior.  I tried "Quick Cut and Paste" also, and that yielded the same incorrect results.  I did not see anything else in the Options / I18N that would alter this?
    Any ideas where to look?
    Thanks,
    Jeff Martens
    Basis Admin.

    Martin,
    Thanks for the reply.  I did try the cut & paste option in the expert tab and that did not work.
    I am copying from a normal user input field to another input field.  This is not static text that you would have to CTRL+Y to copy.
    Thanks,
    Jeff

  • Quick way to format text cut and pasted from a web browser into Pages?

    I work a lot by cutting and pasting text from web browsers into my word processor.
    When I was using Word, I had built a very useful macro that allowed me to re-format the font, font size, colour, line spacing etc, as well as to remove hyperlinks, all by pressing one keyboard shortcut.
    Is this possible in Pages? I've tried Paste and Match Style, and Paste Paragraph Style, but they only seem to solve half the problems.
    Surely this must be a common problem? I've had a look in the discussion forums, but can't find anything...

    arthur,
    I'm not having any trouble deleting links. Click on View > Show Invisibles. If there's a space following the link, put your cursor to the right side of the space, click, then drag to the left so that you highlight the link. Then just hit delete.
    Or, if you want to have a web or email address in your copy without it being a live link, highlight it, then click on the Link inspector > Hyperlink button > and UNcheck +Enable As Hyperlink+.
    -Dennis

  • How do you cut and paste text from Adobe Reader 11 into Word?

    Using Windows 8.1.  Recently purchased Adobe Reader 11.  Need to cut and paste text from PDF into Word docs.  Docs are not locked and content should be available for editing.  Have figured out how to highlight the text through the Comment tools, but nothing (right-clicking, going to Edit pulldown) menu gives me a Copy option.  How do I cut and paste the text?

    Good to know that I got what I paid for with the Export PDF.I just went
    into the document that I am trying to cut and paste from and highlighted a
    piece of text.  Clicked right, checked the Edit pulldown, and then did
    Ctrl+C (assuming you meant Ctrl and then C, rather than holding them both
    down together).  Still no Copy option anywhere.
    Properties for the document I am trying to work with do say "Content
    Copying: Allowed" under Security. Since I can highlight text, I assumed
    that the text is there (not a photo scan) so that I can copy it.  Should I
    look somewhere else under properties to confirm this?
    As I did last night, I also opened up a document that I have cut and pasted
    extensively from before-so I know the text is there and manipulable.
    Attempted to cut and paste from it, using the same methods above.  Again,
    no option to copy with any of them.
    Perhaps I should clarify that by cut-and-paste, I do mean that I want to
    copy the text from the original and then transfer it to a Word doc that I
    am writing.  I am not trying to do anything with the original other than
    copy from it--not cutting anything out of the document itself.
    Is there a way to do this with the Adobe 11 reader.  At this point, I am
    wondering if I need to uninstall Adobe 11 and try to go back to Adobe 10 or
    whatever the reader was that was installed on my computer when I bought it
    (Dell Inspiron touch-screen laptop purchased in May 2013, if that gives any
    idea of which reader might have been installed there.  That version did,
    however, have some other limitations that made me want to get Adobe 11. Any
    ideas about what to do now.
    M. Christian Green, JD/PhD
    Senior Fellow, Center for the Study of Law and Religion
    http://cslr.law.emory.edu/people/person/name/green
    Book Review Editor, Journal of Law and Religion
    http://cslr.law.emory.edu/publications-lectures/journal-of-law-and-religion/
    Website
    http://mchristiangreen.com
    LinkedIn
    http://www.linkedin.com/in/mchristiangreen
    Twitter
    http://twitter.com/mchristiangreen
    On Sun, Nov 16, 2014 at 3:00 AM, Gilad D (try67) <[email protected]>

  • I can't cut and paste

    I want to cut and paste on my web page but the functions are not available and grayed out. I modified the user_pref as directed substituting the web page url for modzilla.org (actually cut and pasted exactly using notepad with no success. The modifications are saved in the file. which is have provided.
    # Mozilla User Preferences
    /* Do not edit this file.
    * If you make changes to this file while the application is running,
    * the changes will be overwritten when the application exits.
    * To make a manual change to preferences, you can visit the URL about:config
    * For more information, see http://www.mozilla.org/unix/customizing.html#prefs
    user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1283608473);
    user_pref("app.update.lastUpdateTime.background-update-timer", 1283608564);
    user_pref("app.update.lastUpdateTime.blocklist-background-update-timer", 1283608906);
    user_pref("app.update.lastUpdateTime.microsummary-generator-update-timer", 1283187314);
    user_pref("app.update.lastUpdateTime.places-maintenance-timer", 1283608587);
    user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1283594485);
    user_pref("browser.anchor_color", "#0000FF");
    user_pref("browser.display.background_color", "#C0C0C0");
    user_pref("browser.display.use_system_colors", true);
    user_pref("browser.download.manager.alertOnEXEOpen", false);
    user_pref("browser.download.manager.showAlertOnComplete", false);
    user_pref("browser.formfill.enable", false);
    user_pref("browser.migration.version", 1);
    user_pref("browser.places.smartBookmarksVersion", 2);
    user_pref("browser.rights.3.shown", true);
    user_pref("browser.startup.homepage", "http://www.msn.com/");
    user_pref("browser.startup.homepage_override.mstone", "rv:1.9.2.8");
    user_pref("browser.visited_color", "#800080");
    user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
    user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");
    user_pref("capability.policy.allowclipboard.sites", "http://blueroof360.com");
    user_pref("capability.policy.policynames", "allowclipboard");
    user_pref("extensions.enabledItems", "{20a82645-c095-46ed-80e3-08825760534b}:1.2.1,[email protected]:1.0,{972ce4c6-7e08-4474-a285-3208198ce6fd}:3.6.8");
    user_pref("extensions.lastAppVersion", "3.6.8");
    user_pref("extensions.update.notifyUser", false);
    user_pref("font.name.serif.x-western", "Cambria");
    user_pref("general.useragent.extra.microsoftdotnet", "( .NET CLR 3.5.30729)");
    user_pref("idle.lastDailyNotification", 1283514289);
    user_pref("intl.accept_languages", "en-us");
    user_pref("intl.charsetmenu.browser.cache", "ISO-8859-1, UTF-8");
    user_pref("microsoft.CLR.auto_install", false);
    user_pref("network.cookie.prefsMigrated", true);
    user_pref("network.proxy.type", 0);
    user_pref("places.last_vacuum", 1282582722);
    user_pref("print.print_printer", "\\\\DESKTOP\\HP LaserJet P2015 Series PCL 5e");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_bgcolor", false);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_bgimages", false);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_command", "");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_downloadfonts", false);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_edge_bottom", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_edge_left", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_edge_right", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_edge_top", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_evenpages", true);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_footercenter", "");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_footerleft", "&PT");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_footerright", "&D");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_headercenter", "");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_headerleft", "&T");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_headerright", "&U");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_in_color", true);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_margin_bottom", "0.5");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_margin_left", "0.5");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_margin_right", "0.5");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_margin_top", "0.5");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_oddpages", true);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_orientation", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_pagedelay", 500);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_paper_data", 1);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_paper_height", " 11.00");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_paper_size_type", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_paper_size_unit", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_paper_width", " 8.50");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_reversed", false);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_scaling", " 1.00");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_shrink_to_fit", true);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_to_file", false);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_to_filename", "");
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_unwriteable_margin_bottom", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_unwriteable_margin_left", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_unwriteable_margin_right", 0);
    user_pref("print.printer_\\\\DESKTOP\\HP_LaserJet_P2015_Series_PCL_5e.print_unwriteable_margin_top", 0);
    user_pref("privacy.sanitize.migrateFx3Prefs", true);
    user_pref("security.warn_viewing_mixed", false);
    user_pref("urlclassifier.keyupdatetime.https://sb-ssl.google.com/safebrowsing/newkey", 1285173052);
    user_pref("xpinstall.whitelist.add", "");
    user_pref("xpinstall.whitelist.add.36", "");

    Hello.  In 2012 you answered a query about the following problem:
    "I have had my MacBook Pro for over three years now, without much trouble, but recently I've been unable to send images that I have cut and pasted into Apple mail. I can attach an image that I have saved in my photos and it will send but I can not send an image that I have cut and pasted from the internet."
    This problem started with me this morning and it does not happen when I open a test account.  The thread stops after you asked if it occurs in the test account, did you ever find a solution to this issue?  I am using mac mail 3.6 on system 10.5.8.
    I hope you receive this, I have never posted in one of these forums.
    Thanks in advance,
    Dave

Maybe you are looking for

  • G570 - Cant install Flash - says mscms.dll

    Hi, Win 7, IE 9, 64 bit, virus off, logged on as admin, mscms.dll file is in the sys 32 folder. When I try to install Flash Player, I get an error that mscms.dll file is missing. Any ideas? Thansk, Jim tried to re-register the file and this was the e

  • Blank sender/subject spam - how to get mail to rec as junk?

    I'm getting hammered again in every mailbox with these blank sender/subject/body spam emails. I asked about a year ago and the word was to buy a spam filter software program. I'd rather get a script to do this. I recall I had one which I can't find.

  • Default profit center for banks account

    Friends, Can we get the profit center as default in the bank account ? How ?Please tell me the config steps! Regards HK

  • Sales Accounting by sales Person

    Dear all, Please give me a solution for how to calculate Sales Accounting /sale by sales Person indivually. Thanks & Regards Amit Karalkar

  • Email configuration for Batch bursting

    Hi All, Can anybody please let me know how to configure the email server or email settings for batch bursting the financial reports? Thanks Yashwant