How do I copy an array from a website to Excel using Firefox

Was running Firefox on Windows Vista. I could copy an array from finance.yahoo.com into an Excel spreadsheet by selecting the array with control key down then clicking on edit - copy selected cells, then pasting into an Excel sheet. I only had to tell it the upper left cell and the whole array went in properly
Now trying to do the same thing on a new machine running Windows 7, but the "copy selected cells" option is not available in the edit menu. Is there a way to copy an array with Firefox and Windows 7? These are big arrays. One cell at a time is out of the question.

Try this Add-on --> https://addons.mozilla.org/en-US/firefox/addon/dafizilla-table2clipboard/
'''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
Not related to your question, but...
You may need to update some plug-ins. Check your plug-ins and update as necessary:
*Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
*Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
*'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
*Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
*Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

Similar Messages

  • How can I copy the titles from a project volume one use them for the rest?

    I'm editing a four DVD set, and would like to use the same opening titles and credits for each. How can I copy the titles from volume one and use them for the rest? Thank you.

    Open the project that has the titles you want to use. Select (highlight) all the title clips you want, then right-click and choose COPY.
    Open the new project(s), then paste the titles onto the Timeline.
    Done.
    -DH

  • How can I copy text&image from a website to Apple Pages at once?

    I'm using Apple Pages 9.1, I can't copy text and images to pages at once. When I paste the copy contents to it, it just only shows text. With Safari, this functionality seems normal. I could copy and paste what I want to the pages.
    What can I do now? I don't want to open Safari just only to copy and quit it after that. :D

    Does it matter how widely you select? Firefox may be somewhat stingier in what it includes in a selection than other browsers. For example, I suspect you would have better results if you select the entire page and copy and paste it compared with a section of the page. But that's just a guess, I've never used Pages (or any of iWork).

  • How can I 'COPY AND PASTE' from my mouse and not use EDIT, Fiefox 4

    when I try to copy and paste in Firefox 4, it only works from EDIT on toolbar. This limits where I can use info between tabs or other windows. When I highlight a phase or link using mouse it says 'ADD THIS ETC' copy or paste doesn't appear. I want to use mouse to COPY AND PASTE

    Hi joao,
    If you have your PDF open in Adobe Reader, it's easy to select the text and copy it. Just drag to select the text that you want to copy and then choose Copy from the Edit menu. If you can't select the text, it may be that your resume PDF was created from a scanned document.
    If I misunderstood your question, please let me know.
    Best,
    Sara

  • How do I copy User Properties from one user to another using Server API

    Portal Version is 10GR3
    I have two Users in the portal and I want to copy all the properties of user1 to user2.
    the IPTProfileManager interface allows me to get all the properties of user 1. Accomplished through the use of
    IPTObjectProperties user1Props = profileManager.GetUserProperties(userId, false);
    IPTQueryResult qr = user1Props.GetPropertyData(PT_PROPIDS.PT_PROPID_OBJECTID |
                   PT_PROPIDS.PT_PROPID_NAME |
                   PT_PROPIDS.PT_PROPID_PROP_VALUE);
    I beleive this is correct...
    We now have all the properties in a Query Result. I'm lost as to how to get these values into user2's profile...
    -Or- is there a easier way????
    Any suggestions?
    Phil Orion
    Orion like the constellation, not the Irish guy.

    Every object in the Server API extends the PTObject, which has function calls GetObjectProperties().
    If you have the PTUser object you have to do the following:
    IPTObjectProperties props = getObjectProperties(); // in your case this should be something like PTUser.GetObjectProperties();
    Object[][] propData = new Object[PT_EDIT_PROPDATA_COLUMNS.PT_EDIT_PROPDATA_INVALID][1];
    propData[PT_EDIT_PROPDATA_COLUMNS.PT_EDIT_PROPDATA_PROPERTYID][0] = new Integer(#PropertyID#);
    propData[PT_EDIT_PROPDATA_COLUMNS.PT_EDIT_PROPDATA_VALUE][0] = "Property Value";
    props.SetPropertyData(propData);
    I don't forget on the end you have to call PTUser.Store() function
    cheers
    Edited by: Pelov on 14.07.2010 12:31

  • I am getting a "Prop Res DLL not loaded" message when trying to print from a website only while using Firefox, same does not occur using IE. Any suggestions

    An attempt to change the "Properties" options prior to printing on my Lexmark X5150 causes the message. Same does not occur if I do the same under Internet Explorer.

     I have tried creating the profile again and still get the same problem.  The problem is machine based and not user based. 
    Hi GG1234,
    If you recreated the Outlook profile and still got the same problem, please try to recreate the Windows Profile:
    Log on to client using local admin account->rename the profile folder under c:\users.
    By the way, did you try to print the mails in OWA?
    Frank Wang
    TechNet Subscriber Support
    in forum
    If you have any feedback on our support, please contact
    [email protected]
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Copy small array from cyclical queue

    Hi,
    I would like to know how to create a small array from a bigger one when the bigger one is cyclical. The problem is that i'm copying the values with Arrays.copyOfRange(array,from,to) until I end up to the final of the queue where it falls in a ArrayIndexOutOfBoundsException
    Example:
    cyclical_queue: [ 34 23 2 3 4 5]
    if small_array has to be [4 5 34] i cannot use copyOfRange since it would end up in Arrays.copyOfRange(cyclical_queue,4,1) -> ArrayIndexOutOfBoundsException
    P.S. I am trying to do it without loops since performance is important in my program
    Thanks in advance for any help,
    Rodo

    Rodo1983 wrote:
    I would like to know how to create a small array from a bigger one when the bigger one is cyclical. The problem is that i'm copying the values with Arrays.copyOfRange(array,from,to) until I end up to the final of the queue where it falls in a ArrayIndexOutOfBoundsExceptionYou can't use Arrays.copyOfRange for this if the array you're copying wraps around the end of the queue.
    P.S. I am trying to do it without loops since performance is important in my programDon't bother. Looping isn't inefficient, and besides, I'm almost positive Array.copyOfRange() uses loops. Just start copying at the beginning index, wrapping to zero if you get to the end, and stop when you get to the ending index.

  • How can I copy mp3 files from my Itunes library to an SD card for use in a non-apple phone?

    How can I copy mp3 files from my Itunes library to an SD card for use in a non-apple phone?  I can physically copy the tunes as mp3's but the phone does not seem to be able to play all of them.   Do I need to copy an entire album or can I just pick & choose individual songs?   The phone is question is an LG running who knows what for an operating system.

    AAC is Advanced Audio Coding.  Basically it's a format that sounds better than MP3 but doesn't take up as much space as a lossless format (like you'd have on a CD).  More than likely you've had that encoding turned on when you ripped your music into itunes (it's the default encoder).  Therefore your LG phone won't play them.
    You need to turn off the AAC format by going to the iTunes menu, Preferences, General (at the top), then clicking the "Import Preferences" button.  Change the AAC Encoder to MP3 Encoder.  After that you'll have to make MP3 copies of your songs by right clicking them and selecting "Create MP3 Version."  You'll get a copy of the song that should transfer to your SD card and have MP3 encoding.  Hopefully your phone will play that.

  • How do I copy and paste from one page or file to another page or file - on the same screen?

    How do I copy and paste from one page or file to another - on the same screen?

      Open both of your images in the Editor. Click on the image you want to copy and press Ctrtl+A (select all) followed by Ctrl+C (copy) then click the tab for your other image and press Ctrl+V (paste)
    Alternatively click on your background image then simply drag the second image from the photo/project bin and drop it into the main editor workspace on top of the background image. Use the move tool to position and the corner handles of the bounding box to scale.

  • How do I copy a file from my computer to the iPad?

    How do I copy a picture from my computer to my iPad?

    Removed; redundant.
    Message was edited by: varjak paw

  • How do i copy my itunes from my PC to my mac

    i have a dell work laptop that has my all of my iTunes music and apps for my iPhone4 but i would like to start using my iMac itunes for my iPhone4, but i know that i sync my iphone4 to my itunes on my iMac i will lose everything.  How do i copy my iTunes from PC to my iMac so that my music library and my apps for my iPhone remain intact?

    Follow one of the methods described in this Apple article.
    Best of luck.

  • I have no problems copying iMovie Events from one Mac to another, however, how can I copy iMovie Projects from one Mac to another?

    I have no problems copying iMovie Events from one Mac to another, however, how can I copy iMovie Projects from one Mac to another?  Any help will be appreciated.  Thank you.

    This should give you some good insight, I'd probably store them on an External HD on the old machine and then just drag and drop to the new machine.
    https://discussions.apple.com/docs/DOC-4141

  • How can I copy cell formatting from one range to another?

    How can I copy cell formatting from one range to another, including text fonts, colours, borders, etc., so that, for example, I can reuse a formatted reconciliation table again in different parts of a sheet?

    Hi George,
    Wayne found the Spinning Beachball of Death, and you will find it too.
    Numbers is not good at handling large datasets. Might I suggest that you group your data into smaller sets (each month, perhaps?) and save each group in a separate Numbers document. Numbers will not link between documents, but you could have a summary Table within each document. Then comes the "clunky" bit of copying all those summary tables into a master document where you do the final processing of the data.
    Regards,
    Ian.

  • My partner has my former iPad 1, I have an iPhone 5 and iPad Gen III.  I want to copy my contacts list to his iPad.  We both have Apple ID's and we share a PC.  How do i copy the contacts from my iPhone, iCloud or iPad to his iPad 1?

    copy my contacts list to his iPad.  We both have Apple ID's and we share a PC.  How do i copy the contacts from my iPhone, iCloud or iPad to his iPad 1?

    The problem is that all services are bundled with your Apple ID ([email protected]):
    Your iCloud account (Mail, Contacts, Calendars, Reminders, Notes, Backups, etc.),
    also iTunes & App Store purchases (Music, Movies, TV Shows, etc.),
    and the iTunes Match services.
    (I guess that all your devices - yours and your wife's are connected to one iTunes library, right?)
    If you want that your wife gets her own iCloud account for Mail, Contacts, Calendars, etc. but gets also access to your media then you have two set up two things on her device:
    iCloud (Settings > iCloud) with her account (e.g. [email protected])
    and
    iTunes & App Stores (Settings > iTunes & App Stores) with your account (e.g. [email protected]).
    In this case she gets access to your library and could use the same iTunes Match account.
    (See also: Using one Apple ID for iCloud and a different Apple ID for Store Purchases http://support.apple.com/kb/HT4895)

  • How do I copy a song from my itunes library to my wifes phone?

    How do I copy a song from my itunes library to my wifes phone? We share one pc and have seperate itunes accounts.  Her phone is authorzed on the computer as well as mine.  How can i get a song from my library to her phone/

    Drag the songs from the iTunes library or iTunes Music folder to the device in the Finder. If it doesn't show up there or that doesn't work, check the device's documentation.
    (109837)

Maybe you are looking for

  • Classic ASP on IIS - Timeout Session not expiring

    I have an classic ASP website on IIS(both IIS 6,and 8) and both perform the same. We've had this issue for years on IIS 5,6,7,8 and never could figure it out. I have a session timeout setting on the IIS application pool of 120 minutes. I do not have

  • Imac 27 Intel will not boot normally only in Safe Mode

    I posted previously but the answer to the question was did it wake up in safe mode, i did not give it a chance and I restored from back up to 10.10, upgraded to 10.10.1 and it worked for 1 week and returned to the previous problem. I ran AHT - Passed

  • White Macbook has delayed start with a blue screen and will not wake when it goes to sleep

    I have a late 2006 MacBook that I recently bought used.  When I got it I was experiencing very long boot times.  It would have the apple logo then go into a blue screen for about 5 minutes before loading to the OS.  Nothing I did fixed the issue.  I

  • Infoset and virtual infoprovider

    dear all, a short and simple question, can infoset include virtual infoprovider? if not, what are the work around for this? Thanks.

  • Date field in Arabic - dropdown disappears

    I have created a date field in one of the application using WD ABAP. In logon language as English the date field appears with a dropdown through which I can select a date from the calendar. However if I change the user master to select Hijra calendar