All of a sudden I can not print my e-mail in firefox (I used to be able to) I can print if I copy and paste to MSW or do it in IE or a Web sight.

All of a sudden I can not print my e-mail in firefox (I used to be able to) I can print if I copy and paste to MSW or do it in IE or a Web sight.
== This happened ==
Every time Firefox opened
== About a month ago

Is it possible you mistakenly clicked on a [Clear Layout] button?
But a great hint is- Always click on the [Create a Saved Book] button, early in your new book design.
Then you have a permanent link to the book in the Collections panel. (In addition to the standard collection of your selected images)
Note: a Book Collection shows an icon that looks like a book.
Every time you come back to edit the book, open the Book Module by clicking on the white arrow that appears on the end of your Book Collection title. (The title as saved)
Re-opening a book without using the "Saved Book" option can have unpredictable results.
A "Book" Collection is like a "Smart Collection" because anything you do to the book design, change pages, change images, etc,  is automatically updated in the Saved Book collection.

Similar Messages

  • In Firefox 36.0.1, can I show ONLY copy and paste in the navigation toolbar without showing cut?

    In Firefox 36.0.1, can I show ONLY copy and paste in the navigation toolbar without showing cut?

    Do you only want this to happen if you right-click in the location/address bar?
    You can ddd code to the <b>userChrome.css</b> file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #urlbar menupopup menuitem[label="Cut"] { display:none !important; }
    </nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
    *Use a plain text editor like Notepad to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
    *Paste the code in the userChrome.css file in the editor window
    *Make sure that the userChrome.css file starts with the default @namespace line
    *Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css.<br>Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file

  • Why can I no longer copy and paste a whole page in page thumbnail?

    Why can I no longer copy and paste a whole page in page thumbnail?

    Apple has removed over 95 features in Pages 5.
    It has also introduced multiple file formats that are incompatible with each over as well as everything else, and numerous bugs.
    Pages '09 should still be in your Applications/iWork folder.
    Peter

  • HT2506 hi i can't seem to copy and paste pdf files from preview to a microsoft word document. it always comes up with nonsense characters in the word document. how do i fix this? thanks in advance

    hi i can't seem to copy and paste pdf files from preview to a microsoft word document. it always comes up with nonsense characters in the word document. how do i fix this? thanks in advance

    Hi,
    The quickest way to do this (tested with OS 10.8.2, MS Word 2011) is in one line:
    tell application "Microsoft Word" to close every document whose name begins with "book"
    The reason why your script doesn't work is that you aren't specifying to Word which document you want it to close.
    So, changing one line ought to do it:
    close document incrementvalue -- instead of "close document"
    But... when you close a document, you change the document count. Document 2 becomes document 1, document 3 becomes document 2 etc. So eventually you'd get a message saying "The object you are trying to access doesn't exist".
    Because of this, if you want to do it in a repeat loop, you have to work backwards:
    tell application "Microsoft Word"
      set doc_count to count documents
      repeat with x from doc_count to 1 by -1
      if name of document x begins with "book" then close document x
      end repeat
    end tell
    Hope this helps.

  • Since downloading 29.0.1 I can no longer cut, copy and paste. So frustrating!!!

    I often copy and paste items into website forums with no problem. However, since I upgraded to 29.0.1 I can no longer do that and it's so frustrating. I have tried doing the extra steps of clicking on your copy and paste items but that doesn't help. I even tried uploading the AllowClipboard Helper but that didn't work either. I never needed that add-on in the past.
    This is ridiculous.
    How do I revert back to version 28? It worked fine but you just had to go ahead and "fix" it and I hate the new version. I was able to download the Classic Theme Restorer which helped a lot but some things I could not make like the version 28.

    karen,
    You don't need that user.js file any longer for those cut, copy, and paste preferences.
    There is a Classic Theme Restorer support thread over here. <br />
    http://forums.mozillazine.org/viewtopic.php?f=48&t=2773133&start=1500 <br />
    They'll be able to help you get rid of that orange Firefox button, which isn't needed if you have the Menu Bar showing.

  • Why can I no longer copy and paste a link?

    Since updating Mozilla I have tried sending a link, but can no longer copy and paste it. I don't even understand what an anchor is....

    I am not the only one with this problem, which I didn't have before updating Mozilla. So what are Firefox going to do about it?

  • Can you add cut copy and paste icons to mail toolbar?

    Can you add a cut, copy and paste icons to the mail toolbar in macmail?

    I guess that these were considered such fundamental operations, each with an already existing variety of operations (mouse, keyboard, right-click, ctrl+c etc) that the Thunderbird devs didn't choose to replicate them again. Similarly, keyboard selection is relied upon a great deal in Thunderbird, rather than adding all the ugly (IMHO) checkboxes that now counterintuitively litter all Windows Explorer displays.
    So, if the devs expected you to use ctrl+right+shift to select the current text word by word, then ctrl+c to copy it, ctrl+x to cut it and ctrl+v to paste it would be quite natural, since your hands are already at the keyboard. Similarly, if you prefer to select by mouse, a right-click also offers options to copy, cut and paste, and there is also the possibility to drag selected text, serving cut and paste in one action. So it could be argued that there is no need for buttons.
    There used to be additional button add-ons for Thunderbird, but those that I know about don't appear to be under active maintenance and don't currently work with TB 31.0.
    You could build your own using a Custom Buttons add-on, but it isn't easy to find the appropriate function call to attach to your home-made buttons. :-(
    https://addons.mozilla.org/en-US/thunderbird/addon/custom-buttons/
    Here's the code you need if you try this add-on:
    cut: goDoCommand("cmd_cut")
    copy: goDoCommand("cmd_copy")
    paste: goDoCommand("cmd_paste")
    (taken from: http://kb.mozillazine.org/Keyconfig_extension:_Thunderbird )
    The tedious bit is finding suitable icons; the defaults are pretty but unhelpful coloured stars.

  • Why can I no longer copy and paste a page in the thumbnails view?

    We used to be able to copy and paste, even edit the order of the pages in thumbnail view. Why has ALL of this functionality been removed?! Or is there some special way to do it now that isn't as intuitive?

    Pages '09 should still be in your Applications/iWork folder.
    Pages 5 has had 90+ features removed and a load of bugs added.
    Any sensible user will just say "Pass!"
    Peter

  • Using Firefox, I used to be able to open a document on a website and look at it without downloading.  Now, I must download a document in order to view it.  How can I change settings so that I can open documents without saving them?

    Using Firefox, I used to be able to open a document on a website, such as a bank statement, and view it without downloading.  Now, I must download and save a document before I can view it.  How can I change settings so that I can open documents without saving them first?

    Do you know what kind of docs they are? Did you upgrade/Update Firefox lately?
    https://addons.mozilla.org/en-US/firefox/addon/pdf-download/
    http://kb2.adobe.com/cps/333/333563.html
    https://addons.mozilla.org/en-US/firefox/addon/open-it-online/

  • Can anyone help me copy and paste photos from iPhoto to memory stick

    can anyone help me to copy and paste photos from i photo to a memory stick...no the same as my pc and just can't figure it out  thanx

    Open up Finder and go to your flash drive. Now open up iPhoto and drag and drop the pictures you want into the flash drive folder.
    By the way, how is your PPC mac running Lion?

  • Can you change or copy and paste the duration parameter?

    I have a ton of stills already in the timeline that I'd like to extend the duration. Is there no way to copy and paste the duration parameter or to extend the duration of all of them at once?

    select them all... Inspector>Properties>Timing>duration.. you might then wanna adjust your in points on in your timeline cause there's gonna be lots of overlapping... -_-

  • Burning DVD, can't drag or copy and paste items, all I get is an alias -mbp

    Hi all
    Just upgraded to Leopard, am I being dumb?
    When I drag items to a blank DVD or copy from the HD and paste to the DVD all I get is an alias version of the files??
    I have found if I hold down "alt" it copies the actual files... is there a way of swapping this as who wants to burn a disc of alias's??
    Az
    PS Merry Christmas!

    Actually ever since Tiger there has been a change to "burn folders" which show an alias when you drag items to a mounted blank disk. Prior to Tiger the system would indeed make a copy of items to be burned, then after burning you recovered the disk space. Starting with Tiger this was changed, the alias is used and when you burn the disk the system uses the alias and burns the original to the disk. The only thing to be aware of that can cause a problem is if you find you have more "stuff" in the burn folder than space on the blank disk, and open the alias in the burn folder to trash some files--you are, of course, trashing your originals. So don't do that! Move some stuff to the Desktop or another folder to reduce the size.
    Francine
    Francine
    Schwieder

  • I have converted 6 documents to pdf form.  How do I get them from adobe files to Wordpress on the same computer?  I can't seem to copy and paste. and I can't find the adobe pdf documents in my files when I search via wordpress.

    I posted the question and I need help.  I am new to posting and to discussions. I gather that posting is only for answers.

    Hi student4ever,
    You're in the right place to ask questions, and get answers!
    When you convert a file to PDF using the Acrobat.com online service, they are automatically stored in your Acrobat.com account at https://cloud.acrobat.com/files.
    To download a file to your computer, select the file in the Files list, and then click Download at the top top of the list. Your files will be downloaded to the Downloads folder on your computer.
    Best,
    Sara

  • Got an e-mail with a link to activate my account. I click on it or copy and paste it I get the following message:We could not activate your account. Please make sure that you have clicked the correct link in your email or typed in the correct address.

    Link was sent via hotmail e-mail

    Identify and remove adware
    http://www.thesafemac.com/arg/
    or  use Adware Removal Tool.
    http://www.thesafemac.com/art/

  • How to copy and paste avail information onto web address bar when receiving e-mail

    When I get an e-mail with new information that I have applied to a certain website and cannot click it on, the e-mail tells me to copy and paste the new information on the address bar of my web browser ????  How do I do this; highlight the area to be copied (which I can find "copy" at the top of my e-mails), but can't find "paste" anywhere???
    Thank You!!
    Maddy6
    (Personal information removed by moderator)
    This question was solved.
    View Solution.

    Hello, and Welcome to the HP Support Community!
    It would help us reply to you if you gave us more information... Which HP device are you using?  A Windows PC with a keyboard?
    An Android Tablet?  A ChromeBook?
    If Windows, the keyboard shortcuts always work.  Highlight the address, type "Control-C" to copy the information.
    Now click in the address box of the browser and using the keyboard, type "Control-V" to Paste.    Think as the "V" as an arrow pointing to "paste it here!"   
    (To perform each function, press and hold the control key first, then tap the letter you wish).
    Other ways to paste is to right-click your mouse and choose "Paste" (after copying something).
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

Maybe you are looking for