What words are counted?

what words are counted in the word count for pages? Do words in tables are counted?

Takes all the fun out of making someone else do it.
Peter

Similar Messages

  • Making image change according to what words are clicked without page reload

    So I had all the ideas for my web page laid out and I finally
    started building it and got stuck in one area. I wanted to make two
    boxes next to each other... one with text and the other with just
    large image that changes according what text in the other box is
    clicked. I wanted all of this to happen without the page actually
    loading again. I saw something similar to it on
    Barackobama.com below the
    navigation on the left. I'm sure it involves some kind of script
    that I am not familiar with, but if anyone has any ideas of how to
    go about doing this please let me know. Thanks.

    DW's SetText behavior is one way to make that happen.
    Clicking on a word in
    the text area would rewrite the HTML in the image area to
    load a new image.
    Perhaps more simply, this would also be very easy to do with
    DW's Swap Image
    behavior. Click on the text, and that image swaps to another
    image.
    Do some homework by studying both of those behaviors and what
    you can do
    with them.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "This Is An Essay" <[email protected]> wrote
    in message
    news:g74ndu$soh$[email protected]..
    > So I had all the ideas for my web page laid out and I
    finally started
    > building
    > it and got stuck in one area. I wanted to make two boxes
    next to each
    > other...
    > one with text and the other with just large image that
    changes according
    > what
    > text in the other box is clicked. I wanted all of this
    to happen without
    > the
    > page actually loading again. I saw something similar to
    it on
    >
    http://www.barackobama.com
    below the navigation on the left. I'm sure it
    > involves some kind of script that I am not familiar
    with, but if anyone
    > has any
    > ideas of how to go about doing this please let me know.
    Thanks.
    >

  • HT4889 Is it possible to use the migration assistant to transfer only some documents and data? For example, I was to transfer my music, but not my word documents. There doesn't seem to be any options to customise what you are transferring - its all or not

    Is it possible to use the migration assistant to transfer only some documents and data? For example, I was to transfer my music, but not my word documents. There doesn't seem to be any options to customise what you are transferring - its all or nothing

    LBraidwood wrote:
    Is it possible to use the migration assistant to transfer only some documents and data? For example, I was to transfer my music, but not my word documents. There doesn't seem to be any options to customise what you are transferring - its all or nothing
    Yes, that's why I recommend one have more than TimeMachine as a backup because if certain files or folders are corrupted on the TM drive, your not logging into your migrated user account or not be able to transfer it what so ever.
    Then it's a REAL PAIN and costs $99 to bit read the TM drive to get the files out, then it's mess to go through and sort all the empty placeholders from the real files as TM doesn't save duplicates in each state, just uses the previous state's copy if there are no changes.
    If you create the same named user account on the new machine, and simply transfer files via a USB thumb drive and place say music contents into the Music folder, then it will work too.
    Look into making clones of your boot drive, the benefit here is it's bootable, you can access the drive directly to pick and choose files, run the computer just like before etc.
    Most commonly used backup methods explained

  • Word Frequency Counter...

    Hello all, I am working on a project that is supposed to read in a text file from a command prompt, and then break all the words up. As the words are read in by the Scanner, I need to have a counter that counts the number of times the word has occured already that I can access and display in the output. I have come up with this so far as my driver/main class, and also the Count class that I'm trying to use to keep track of the number of times a word has occured in the text, and then so I can add it to a HashMap and display later... The problem is, whenever I try to run the program with a text file, it just ends up displaying all the words in a line and then a number 1 next to it. What I need is the output to look similar to this... For example,
    hello 1
    world 1
    Any help would be appreciated! Thanks.
       import java.io.*;
       import java.util.*;
        public class Driver{
           public static void main(String[] args){
             HashMap words = new HashMap();
             String nameOfFile = args[0];      
             File file = new File(nameOfFile);
             String wordd;
             Count count;
             try{
                Scanner scanner = new Scanner(file).useDelimiter(" \t\n\r\f.,<>\"\'=/");
                while(scanner.hasNext())
                   String word = scanner.next();
                   count = (Count) words.get(word);
                   if(count==null){
                      words.put(word, new Count(word, 1));
                   else {
                      count.i++;
                   System.out.println(word);
                 catch(FileNotFoundException e){
             Set set = words.entrySet();
             Iterator iter = set.iterator();
             while(iter.hasNext()) {
                Map.Entry entry = (Map.Entry) iter.next();
                wordd = (String) entry.getKey();
                count = (Count) entry.getValue();
                System.out.println(wordd +
                   (wordd.length() < 8 ? "\t\t" : "\t") +
                   count.i);
    {code}
    {code}
    public class Count
         String word;
         int i;
         public Count(String inputWord, int increment)
              word = inputWord;
              i = increment;
    {code}
    Edited by: VisualAssassin on Apr 22, 2009 2:45 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    VisualAssassin wrote:
    Scanner scanner = new Scanner(file).useDelimiter(" \t\n\r\f.,<>\"\'=/");
    {code}According to the documentation for Scanner.useDelimiter(), the String supplied is used as a regular expression. Therefore, for the scanner to tokenize into two separate tokens, your input stream would have to contain all of those listed characters in order!
    Instead, use this (untested):
    {code}
    Scanner scanner = new Scanner(file).useDelimiter("[" + Pattern.quote(" \t\n\r\f.,<>\"\'=/") + "]+");
    The beginning and end square braces tell the regular expression engine to match +any+ of those characters, and the plus means one or more times.  The Pattern.quote is used to escape some of the characters that would get you into trouble because they have a special meaning in regexes, notably "."
    Edited by: endasil on 22-Apr-2009 11:43 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • NEED HELP WITH WORD & CHAR COUNT USING HASHTABLE

    I have to use a hashtable to be able to count all the words and characters (#'s, punctuations, etc) from a file
    I have been able to get it to correctly count the words in the file but none of the characters and it also does not display the words alphabetically and just displays it in an odd way
    Here's the code: public static void main (String [] args)
          Hashtable table = new Hashtable();
          String input = JOptionPane.showInputDialog("Enter the filename:");
          try{
          BufferedReader br = new BufferedReader(new FileReader(input));
          String s = br.readLine();
          StringTokenizer words = new StringTokenizer( s, " \n\t\r" );
            while ( words.hasMoreTokens() ) {
             String word = words.nextToken().toLowerCase(); // get word
             // if the table contains the word
             if ( table.containsKey( word ) ) {
                Integer count = (Integer) table.get( word ); // get value
                // and increment it
                table.put( word, new Integer( count.intValue() + 1 ) );
             else // otherwise add the word with a value of 1
                table.put( word, new Integer( 1 ) );
           } // end while
             String output = "";
          Enumeration keys = table.keys();
          // iterate through the keys
          while ( keys.hasMoreElements() ) {
             Object currentKey = keys.nextElement();
             output += currentKey + "\t" + table.get( currentKey ) + "\n";
             System.out.println(output.toString());
          catch (IOException e)
            System.out.println(e);
          }The output that I get for a file containing the line " Hi this is my java program" is:
    this     1
    this     1
    program     1
    this     1
    program     1
    hi     1
    this     1
    program     1
    hi     1
    java     1
    this     1
    program     1
    hi     1
    java     1
    is     1
    this     1
    program     1
    hi     1
    java     1
    is     1
    my     1
    I'm not sure what I am doing wrong and help would be greatly appreciated.

    I have been able to get it to correctly count the
    words in the file but none of the characters and it
    also does not display the words alphabetically and
    just displays it in an odd way
    That's because hash tables are not ordered; to maintain order of insertion you could use LinkedHashMap and to maintain alphabetical order TreeMap.

  • Is there a way to decipher what chords are being used in an audio track?

    I use logic pro x software and I was looking at this piece of audio. It's a synth lead and I wanted to create a bass to go with it however it's hard to work out the chords used so I was wondering if there are any add ons or something that can tell me what chords are used in the audio track. Im looking for something kind of like the BMI counter but for chord recognition. Can anyone help me! if not would anyone be able to decipher them for me? thanks

    Not that i am aware of.. Not for Audio tracks.. Midi tracks yes, Audio no....
    However there are 3rd party apps/websites that might do the job....
    http://www.allmyfaves.com/blog/music/chordify-turns-any-music-or-song-into-chord s/
    http://chordify.net/pages/how-to-use-chordify/
    and maybe even....
    http://play.riffstation.com
    if its a relatively well known song....

  • Best way to implement a word frequency counter (input = textfile)?

    i had this for an interview question and basically came up with the solution where you use a hash table...
    //create hash table
    //bufferedreader
    //read file in,
    //for each word encountered, create an object that has (String word, int count) and push into hash table
    //then loop and read out all the hash table entries
    ===skip this stuff if you dont feel like reading too much
    then the interviewer proceeded to grill me on why i shouldn't use a tree or any other data structure for that matter... i was kidna stumped on that.
    also he asked me what happens if the number of words exceed the capacity of the hash table? i said you can increase the capacity of the hash table, but it doesn't sound too efficient and im not sure how much you know how to increase it by. i had some ok solutions:
    1. read the file thru once, and get the number of words in the file, set the hashtable capacity to that number
    2. do #1, but run anotehr alogrithm that will figure out distinct # of words
    3. separate chaining
    ===
    anyhow what kind of answeres/algorithms would you guys have come up with? thanks in advance.

    i had this for an interview question and basically
    came up with the solution where you use a hash
    table...
    //create hash table
    //bufferedreader
    //read file in,
    //for each word encountered, create an object thatWell, first you need to check to make sure the word is not already in the hashtable, right? And if it is there, you need to increment the count.
    has (String word, int count) and push into hash
    table
    //then loop and read out all the hash table entries
    ===skip this stuff if you dont feel like reading too
    much
    then the interviewer proceeded to grill me on why i
    shouldn't use a tree or any other data structure for
    that matter... i was kidna stumped on that.A hashtable has ammortized O(1) time for insert and search. A balanced binary search tree has O(log n) complexity for the same operations. So, a hashtable will be faster for large number of words. The other option is a so-called "trie" (google for more), which has O(log m) complexity, where m is the length of the longest word. So if your words aren't too long, a trie may be just as fast as a hashtable. The trie may also use less memory than the hashtable.
    also he asked me what happens if the number of words
    exceed the capacity of the hash table? i said you can
    increase the capacity of the hash table, but it
    doesn't sound too efficient and im not sure how much
    you know how to increase it by. i had some ok
    solutions:The hashmap implementation that comes with Java grows automatically, you don't need to worry about it. It may not "sound" efficient to have to copy the entire datastructure, the copy happens quickly, and occurs relatively infrequently compared with the number of words you'll be inserting.
    1. read the file thru once, and get the number of
    words in the file, set the hashtable capacity to that
    number
    2. do #1, but run anotehr alogrithm that will figure
    out distinct # of words
    3. separate chaining
    ===
    anyhow what kind of answeres/algorithms would you
    guys have come up with? thanks in advance.I would do anything to avoid making two passes over the data. Assuming you're reading it from disk, most of the time will be spent reading from disk, not inserting to the hashtable. If you really want to size the hashtable a priori, you can make it so its big enough to hold all the words in the english language, which IIRC is about 20,000.
    And relax, you had the right answer. I used to work in this field and this is exactly how we implemented our frequency counter and it worked perfectly well. Don't let these interveiewers push you around, just tell them why you thought hashtable was the best choice; show off your analytical skills!

  • What apps are available for ipod touch 1st generation

    what apps are available for 1st generation ipod touch

    Here's a list of Apps/games I've been able to download & play for 1st gen ipod touch:
    1. Dragon Story
    2. Dragon Village
    3. World War
    4. Rollercoaster Buggy
    5. GTA: Chinatown Lite
    6. iBrowser Free
    7. Castle Magic Lite
    8. Tappily Ever After
    9. TextFree
    10. Unblock Me
    11. Emer. Radio Free
    12. Need For Speed: Hot Pursuit
    13. Touch Chords
    14. Word Search
    15. Ghost Stories
    16. Search Bing
    17. HTML Viewer
    18. Multi-App
    19. Namco Portal
    20. Fantasy Background
    21. Shanghai Lite (Mahjongg)
    22. Solitaire
    23. Bling
    24. Freecell
    25. Fairy*
    26. City Story
    27. *City*
    28. Nightclub
    29. Hidden Object Free
    30. Party In My Dorm
    31. Crossworlds: The Flying City
    32. Fast-Connect (WiFi)
    33. Taptown 2
    34. The Hunt
    35. Daily Jigsaw
    36. Hidden Mysteries: Civil War
    37. Slingo Supreme Lite
    38. Pocket Bingo
    39. Keno Keno Free
    40. Live Bingo
    41. Scrabble Free
    42. Boggle Free
    43. Fruited
    44. Free Browser
    45. Monster City
    46. City Zombies
    47. Jewel Farm
    48. iSpaceship Landing
    49. Land Of The Lost: Crystal Adventure
    50. Exotic Positions
    51. Sex Postions Game
    52. iFun Sex
    53. Yukon (Solitaire)
    54. Canfield (Solitaire)
    55. Sex Positions
    56. Pickup Lines
    57. Yo Momma Ultimate Lite
    58. Jokes
      There are more.

  • Is there ANYONE in BT who knows what they are talk...

    I switched from Virgin to BT joining BT on 02/11/2013, on that day I phoned up and spoke to a representative about keeping my old number. I was told this is no problem and it will automaticaly be done. Few days went by and I had no confirmation, I have now possibly been speaking to 30 different representatives, who all told me a different story, one told me that it is categoricaly in no way possible to keep a Virgin number on BT lines, I spoke to Virgin who is still keeping the number open for BT to port but they have had no communication from BT regarding this, I have spoken to Managers, Supervisors from Scotland to Manila, then finaly the email came we are changing your number to (the number I requested to keep from Virgin) with a follow up email to say "Where all done" Brilliant I thought, I rang my old Virgin Nmber only to find it is not ringing on my BT line, so I checked on MyBT, to find that BT successfully changed my number to a number which I did not request, who knows where they sucked that number from. So back to the rigmaral toing and froing, I think I must have spent at least 60 hours of my time to try and find someone who can help me to date I have not received any calls from a manager who I can discuss this farse! 
    So on 28/11/2013 the engineers came to install, he was digusted when I explained the whole story and told me this should have been done prior to instalation. So more hours spent in trying to get someone who know what they are talking about, emails, chats and calls, but nothing. Then last night finaly someone who was prepared to take some action and get this sorted great I thought now it will be done, BUT NO!!!!! tonight I get a call saying that I can not keep the number because it is at a different exchange, keeping in mind that Brierly Hill who my BT number is with is in Stourbridge and this is where I live and have been for the past 8 years, so I can not keep a number that is in the same house, the person kept telling me that this ca not be given to me at my new address and the more I explained I have not moved house and that Brierly Hill is in Stourbridge my line is an 01384 area code and the number I want is 01384, so I asked him to renumber me to a BT number in the Stourbridge exchange so that my Virgin number can be ported but this was obviously not in his grasp, I just can not believe that Virgin has been more helpful about this and that BT believes themselves to be so big that a simple request and these are the only words "I would like to keep my Virgin Number 01384 xxxxx" How can such a simple request turn into such a horible mess, so if there is actualy anyone who knows what they are talking about could they please contact me, surely I am not the only person to switch from Virgin to BT requesting to keep their number, I just wish I could afford the £600.00 I was toldI will have to pay if I cancelled my account immediately, well I guess 18 Months is not that long, then I will be free from the most ignorant organisation I have ever had the displeasure to have dealt with and I will post this on every forum I can find to warn off people who are thinking of joining BT, Virgin Sucks but be assured BT is multitudes worse!!!!!

    So I was told last night that the "Special Cases Team" will be contacting me today, have they HECK NO!!!! does a team like that actually exist? My guess is probably not! So I will try and forget about it for tonight and then tomorrow I will try and contact someone in this mysterious department, the one that deals with such complex issues as "I am moving from Virgin Media, I would like to keep my Number" This is such a complex request that it take a "Special Cases Team", well that is if it actually exists, to deal with such a case. So I now understand that my Virgin Number exists in the Stourbridge Telephone Exchange, so my question to BT Management is why allocate me a number from the Brierly Hill Exchange, when it quite a simple check, there are several websites that will tell you what exchange your number originates from, and when I asked this simple request to keep my number. I was told that BT can not give me that number at the Stourbridge Exchange because of my address, so my question is how on earth can Virgin allocate me a number at the Stourbridge exchange for the same address where I lived for the past 8 years? Well I am getting tired of this situation, but I will not give up until this is resolved, so let us see how long BT will leave me with a perfectly useless phoneline and how many more important appointments I will miss because, even I am not sure what number I have now, afterall BT has only been notified on 02/11/2013, not bad handling of a simple request he, and to date not one customer relations member of staff could be bothered to contact me, never mind a manager, mind you do those actually exist or are they working on how to cause most headaches for new customers and ensure that they cancel their contract at the soonest possible date!

  • What word processing program should I use with my Mac, what word processing program should I use with my Mac, what word processing program should I use with my Mac

    what word processing program should I use with my Mac?

    steve359 wrote:
    For free you can download NeoOffice
    Not quite. Downloading the current version of NeoOffice is definitely not free (downloading the previous version is). The developers of NeoOffice (the most Mac-like of the StarOffice descendants) make a distinction between the application itself (which is free) and downloading it, for which they require what they are pleased to call a "donation" (since it's mandatory, I would call it a fee).
    shldr2thewheel wrote:
    I totally forget about TextEdit all the time..
    Indeed. For basic WP tasks, TextEdit can be quite satisfactory.
    embauerxz
    I only need it for reports
    Would that include the report on the state of the US economy -- you know, the one President Obama asked you to deliver to the White House no later than 7AM on January 4? The one in two columns, with numbered paragraphs, table of contents, footnotes, mathematical formulae, 40 figures, 60 charts, quotations in Arabic, Japanese, and classical Greek, and 15 pages of references in APA style?
    Grant Bennet-Alder is right -- "the real answer depends on what work you expect to do with it, and with whom you expect to do this work". There are dozens of word processors for Mac, from the venerable Word to the no less venerable Tex-Edit+. It would pointless to start listing them all, when many of them might be either too little or too much for your needs.

  • After takimg the picture of my document and scanning into the adobe PDF it does not read clearly words are meshed together

    after taking a picture of my document and scanning into the adobe PDF
    it does not read clearly.  words are meshed together

    Hi melisaf76024648,
    Can you please tell me what process you're using to create the PDF? Are you scanning directly from the scanner into Acrobat? Or, are you scanning the document, and then using Adobe PDF Pack to convert the scanned image to PDF? Or, some other method?
    Please walk me through how you're creating the PDF, and we will have a better idea where things went awry.
    Best,
    Sara

  • Opening RTF file in Farsi characters/words are missing

    In opening an RTF file written in Farsi - or English and Farsi - many of the letters/words are missing. If I open the file up in Microsoft Word for Mac the words are there, although left-to-right rather right-to-left. (Again Microsoft screws with us as Microsoft Word on Windows will do the right-to-left.)
    The same missing letters/words are found in TextEdit.
    Interestingly enough OpenOffice opens the file right-to-left with all of the words/characters there.
    I did take this problem to a Apple Genius at an Apple Store yesterday and he confirmed it's a software problem.
    My question is when will it be fixed and does it affect other right-to-left non-standard character sets like Hebrew.
    Thanks. Rick

    Rick Good wrote:
    In opening an RTF file written in Farsi - or English and Farsi - many of the letters/words are missing. If I open the file up in Microsoft Word for Mac the words are there, although left-to-right rather right-to-left. (Again Microsoft screws with us as Microsoft Word on Windows will do the right-to-left.)
    MsWord for Mac is pretty useless for multilingual support especially RtoL.
    The same missing letters/words are found in TextEdit.
    Did you export as Unicode text from MsWord for Windows, which has excellent RtoL support? See if .doc works.
    Interestingly enough OpenOffice opens the file right-to-left with all of the words/characters there.
    I did take this problem to a Apple Genius at an Apple Store yesterday and he confirmed it's a software problem.
    My question is when will it be fixed and does it affect other right-to-left non-standard character sets like Hebrew.
    Good question, all RtoL text in OSX is practically unworkable, especially when trying to edit it and any English text within RtoL. This is something I have been "offering feedback" to Apple since OSX came out supposedly with full Unicode and multi-lingual support. 10 years ago!
    Right up to OSX 10.2.3 I was frankly misled by Apple (not allowed to use the 3 letter word here) who made out that I was doing something wrong (what an unusual approach by Apple!). Even then I did not get the truth from Apple but from a sympathetic developer.
    Meanwhile it ruined my reputation with a few key clients and cost me a motza on the jobs I was doing for them.
    The only working RtoL support you are going to get in OSX is [Mellel|http://www.macupdate.com/info.php/id/8712/mellel] . But my recommendation is to stick to MsWord on Windows where you will be able to do more in the way of layout.
    Peter

  • Some words are not highlighting on my read-aloud epubs after updating IOS 6.0.1 and iBooks 3.0.1

    Some words are not highlighting on my read-aloud epubs after updating IOS 6.0.1 and iBooks 3.0.1 on both my iPad 2 and iPad 3. They are working absolutely fine earlier. I even updated the latest version of iBooks 3.0.2 but nothing is working. Can anybody help?

    Hi spati,
    I ran into this problem as well.  Seems like something funky going on with iBooks 3.  Anyways, I had to tweak my read-aloud clip starts in the smil.  Where the word was not highlighting, I added a few milliseconds to the timing until the word started highlighting again.  Not the most ideal solution, and not sure what exactly causes it because 90% of the words were just fine, but it seemed to fix the problem.  Note prior to the problem happening, I had all my clip start timings = clip end timings for the previous word, so there were no gaps.
    Regards,
    Tim

  • What Resolution are you running your MBP-R at?

    I got mine last Tuesday, I "Listened" to the fact that Apple has a "retina optimized' setting, right in the middle.  While Safari looks amazing at that setting, Firefox, safari, word and excel while looking VERY good are not as sharp.  Since then, I kept upping the resolution, now at the max, 1920 x 1200.  The non-optimized programs seem a LOT sharper, and life is good!  (Plus, I have oodles more screen real-estate.  I am 62 and prolly not the sharpest eyes, so wondering what others are finding works for them?
    Bruce

    Hi Bruce,
    Everyones eyes are different, use what you like best. The retina display is awesome, and I find myelf changing the res. to fit a particular application, if I will be using it for a while., ei. flight sim, CAD, regular Apple stuff...
    I say just enjoy what is best for you.

  • What Prefixes Are Included In My Local Calling Area?

    I am in the former GTE service territory, specifically, the Elsinore Main California exchange.
    On Friday, December 11, 2009, I spoke with a service representative and a supervisor (who admitted that she was "filling-in" and is really an hourly employee), who are in the soon to be divested Everett, WA call center.
    I was calling to find out what prefixes are included as part of my local calling area, specifically ZUM 1 AND ZUM 2 (some also call it Zone 1 and Zone 2, but the correct designation in most southern California service areas of Verizon is ZUM).
    Both representatives had no idea what a "ZUM" is, and the "supervisor" said she had never heard of the term ZUM or Zone.
    What made me upset is that I was told that they (Verizon) did not have this information, and I would have to contact the CPUC (California Public Utilities Commission) to obtain this information as Verizon's staff would not have it.
    My reply was how would Verizon not have the information, because they would need the ZUM prefix list for each exchange so they could bill correctly.
    I then asked how does Verizon gather all the calls that are made from their exchanges each month and send this data to the CPUC so that Verizon can then determine if the call is ZUM 1, ZUM 2, ZUM 3 or intralata or interlata?
    The "supervisor", said yes, because Verizon would not know what prefixes are included, and relies upon the CPUC to review the calls from Verizon's exchanges and prefixes so that Verizon can bill their customers each month, and this has been the process for many years (according to the "supervisor").
    I kid you not, this what was said to me by the Verizon representatives, and I shoulld have advised the employees that I was recording the call. It would have been a great play for You Tube. What a bunch of (edit)  from these two Verizon call center representatives!
    I'm glad Verizon is divesting the Everett call center along with other assets to Frontier, as people like these should not be employed by Verizon, in fact, they should be terminated for cause. Good luck to Frontier with the Everett call center.
    Using Verizon's web site when trying to determine what prefixes are in my local calling area (ZUM 1 AND ZUM 2), you are directed to use the following two "very helpful" (my words...lol) links for information...please try for yourselves:
    To obtain Local Calling Area information
    http://www22.verizon.com/Content/CommonTemplates/sorry.html
    Zone Usage Measurement (ZUM) Information
    https://www22.verizon.com/ResidentialHelp/Phone/Calling+Plans/Local+And+Regional+Calling+Plans/Gener...
    Great Information Verizon!! Both are dead links.
    Anyway, point me in the direction where I can obtain the current and accurate prefixes that can be called without charge to ZUM 1 and ZUM 2, and with a charge to ZUM 3 for my exchange and prefixes. DO NOT point me to a white pages directory because that is already outdated (and I do not have a white pages directory).
    Again, my exchange is Elsinore Main, and the prefixes are 951-245 and 951-674.
    Thank you.
    Solved!
    Go to Solution.

    Home Exchange, Zone 1 and 2 are Local Calling
    Zone 3 (ZUM) 13-16 Miles:
    PEAK PERIOD RATES: Day 8A-5P   M-F
                              1st Min of Use       Addl Min of Use
                                   $.10                          $.04
    OFF-PEAK RATE PERIOD: Evening 5P-11P M-F
                                   $.07                          $.028
    OFF-PEAK RATE PERIOD: Night 11P-8A M-F; SA, SU, & HOLIDAY - All Hours
                                   $.04                          $.016
    COMMUNITY ---NPA ---NXX ---ZONE  -----
    ELSINORE ---951 --- 226 245 253 285 471 579 609 674 678 805 --- Home Exch
    LAKEVIEW-NUEVO --- 909 --- 251 --- Zone 3
    LAKEVIEW-NUEVO --- 951 --- 878 916 928 --- Zone 3
    MURRIETA --- 909 ---3 32 --- Zone 2
    MURRIETA --- 951 --- 200 219 239 249 304 440 445 461 473 600 671 677 691 696 698 704 813 816 834 837 894 970 973 ---Zone 2
    PERRIS --- 909 --- 330 --- Zone 2
    PERRIS --- 951 --- 210 229 230 238 259 287 345 378 385 436 442 443 490 550 570 575 581 591 623 657 722 796 940 943 956 --- Zone 2
    RANCHO VIEJO --- 949 --- 259 269 284 292 303 326 350 446 480 584 625 702 728 874 --- Zone 3
    SUN CITY --- 909 ---508--- Zone 1
    SUN CITY --- 951 --- 244 246 301 566 639 672 679 723 746 821 --- Zone 1
    TEMECULA --- 909 --- 298 507 668 828 --- Zone 3

Maybe you are looking for

  • Issue on Comp Off validity

    Hi Gurus, I am facing issue on comp off validity. Validity is 15 days only and rule is if employee worked on sunday/public holiday then he will get comp off issues. 1st week is ok, next week comp off is validity is same as 1st week, some times 3rd we

  • T61 Laptop to TV

    I would like to connect my T61 laptop to a plasma TV that has an SVGA input.  Their is no SVGA port on the T61. Could I use the 15 pin VGA one and what would I need as a connector?  I found an inexpensive connector which states: "This adapter works w

  • Should I use Catalyst for a professional webpage?

    I´m a newbie here, interning at an architecture firm, and we are in the midst of creating a website for our office. So... the webpage does not have to be extremely professional, but it should be reliable, in other words something that will not explod

  • Hard-coded endpoint port numbers in services-config.xml

    Is it possible to remove hard-coded port numbers in services-config.xml and replace them with variables? I'd like to deploy the same Flex application War file (including services-config.xml within it) to our Dev, UAT and then Production environments,

  • I rented the movie Contagious and I have only 47 hours left to watch it, but it will not PLAY

    I rented the movie Contagious and I hve been told I have 47 Hours in nwhich to watch the movie. BUT!!! I cannot watch any of it. Please someone HELP!!!!