Okay, this is my last question on a different subject for awhile ... scrabble

I love to play scrabble with two sets of letters. We revised the rules years ago so that we can move letters IN ONE DIRECTION per turn as long as we add at least one letter and the move still makes all legitimate words ...
I want so much to play with a fellow word game player who lives in Oregon.
She has a PC and I think / assume Excel for a spreadsheet ...
the board is 15 x 15 e.g. 225 squares, easily enough constructed in numbers ...
and a template with the letters can be done and delete them as they are used ...
(not sure how we'd do the draw ... yet)
how do I then play with someone who has a PC / Excel?
I guess we'd send the board back and forth either by email (probably)
or IM ...
Thanks for any input ...
oh, and here are the rest of the revised rules ...
of course, before taking your turn, you can exchange the blank for the letter it is being used for ...
AND, before your turn, you can exchange as many letters as you want as long as they continue to make words on the board (getting no points just different letters before you take your turn ...) e.g. cat ... you need an a have an o you can pot cot as long as the crossword, for example, lax, which turns into lox, is still a word. These rules allow the two sets of letters, 100 tiles each, to get snugged on to the board. each player is free to use the same dictionary to find words (each has a copy ideally). oh, and each time you change the letter on a higher scoring square, triple word, double word, etc., you get that high score again! Triple triple is fun to do ... Again, player can only move one row or one column of letters per turn. thanks for any input ... I've been wanting to do this for years and the bright people here might help me make it a reality finally!

This would be quite difficult in Numbers/Excel.  Just crossing the applicaton/platform boundary would be challenging.  In addition it would be necessary to create scripts or some kind of programatic logic for many of the game features.
Seems like the best way is to make a web based games so it would be common to both platforms.  Still quite an undertaking.

Similar Messages

  • This is a repetitive question, but under different circumstances. I think..

    Ok, so I realize this all started because of one mistake...I bought an HP laptop over a Mac. I know I know, what a ridiculous thought! Also keep in mind that I registered my HP laptop as the 5th out of 5 computers authorized for my "OLD" iTunes account (I thought that maybe HP would last a little longer).
    Anyways, after about a month with my HP laptop it started to act up and get slower and slower. So after 4 hours of HP customer/technical support via telephone, I had to run a full system recovery and wipe my HP laptop clean. Thus, I bought the buy a Macbook get a free iPod Touch deal.
    So now...I received my iTouch the other day and uploaded all of my music from one of the 5 authorized computers BUT under a new account name. So...once I receive my Macbook sometime tomorrow will I be able to transfer all the songs from the iTouch to the new iTunes library under my new account name via iDump? (iDump=iPod to computer transfer application).
    And if I transfer these songs will the songs be under my NEW account name and they will be able to play OR will they match the OLD account and I won't be able to play the songs b/c it would be the 6th computer out of 5?
    Hopefully all that made sense, please ask questions if you are confused and thank you ahead of time for any comments, suggestions, answers, etc.
    P.S. I KNOW I SHOULD HAVE BOUGHT A MAC FROM THE GET GO!

    Well the first computer authorized crashed. I forgot what computer was number 2 authorized. My family still uses authorized computers 3 and 4. And my laptop that I ran a full system recovery on was number 5. Since I ran a recovery on my laptop would that deauthorize the itunes account?
    I also have all my music on 2 flash drives as well as my iPod that both contain purchased and unpurchased music. Thanks again!!!

  • When i connect my iphone 3Gs to itunes in my computer they say, they have an update for my iphone ios 5 to ios 6.1, this is the message that apear in my itunes, We're sorry, we are unable to continue with your activation at this time.Ask your question.

    when i connect my iphone 3Gs to itunes in my computer they say, they have an update for my iphone ios 5 to ios 6.1, this is the message that apear in my itunes, We're sorry, we are unable to continue with your activation at this time.Ask your question. what should i do for now for iphone didnt activate of itunes?

    Ask the person who owns the iPhone.
    Which version of Cydia appears on the iPhone - the one
    with the black and white icon or a different one?
    If it was jailbroken, contact the developers of the jailbreak.
    Not all jailbreaks can be completely removed.
    Google may provide some direction.

  • Okay, so please disregard my last question.  I had the page set up in vector view.  Hmmmm, ridiculous.

    okay, so please disregard my last question.  I had the page set up in vector view.  Hmmmm, ridiculous.  THanks, though, if you took the time to research my idiocy, I appreciate it.

    So this is not the computer that the device normally syncs with, iTunes is working exactly as designed.

  • Details for last question I post

    the original code for last question I post(about the DataInputStream& EOFException) is here, thanks if anyone will bother to read it
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.* ;
    public class MasterMindServer
         public MasterMindServer()
              try{
                   ServerSocket serverSocket=new ServerSocket(8000);
                   Socket socket=serverSocket.accept();
                   HandleAClient thread=new HandleAClient(socket);
                   thread.start();
                   }catch(IOException e){System.out.println("Error:"+e.toString());}
         public static void main(String args[])
              new MasterMindServer();
    //inner class
    class HandleAClient extends Thread
         DataOutputStream out;
         DataInputStream in;
         BufferedReader fromFile;
         private Socket socket;
         String line;
         public HandleAClient(Socket socket)
              this.socket=socket;
         public void run()
              int x,o;
              try{
                     out=new DataOutputStream(socket.getOutputStream());
                   in=new DataInputStream(socket.getInputStream());
                   fromFile=new BufferedReader(new FileReader("colorcode.txt"));
                  while((line=fromFile.readLine())!=null)
                    for(int i=0;i<10;i++)
                      String t=in.readUTF();
                      x=check_column(t);
                       System.out.println(x);
                       o=check_color(t);
                       System.out.println(o);
                       out.writeInt(x);
                       out.writeInt(o);
                       if(x==6) break;
                     out.writeUTF(line);
                   socket.close();
                   System.out.println("close");
             }catch(IOException e){
             System.out.println("Error:"+e.toString());}
         public int check_column(String s)
              String str;
              str=s;
              int count=0;
              for(int i=0;i<6;i++)
                   if(s.charAt(i)==line.charAt(i))
                   count++;
              return count;
         public int check_color(String s)
              String str;
              str=s;
              int count=0;
              for(int i=0;i<6;i++)
                   if((line.indexOf(s.charAt(i))!=-1)&&(line.charAt(i)!=s.charAt(i)))
                   count++;
              return count;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.* ;
    public class MasterMindClient extends JFrame implements MouseListener,ActionListener
      /** Default constructor */
      //keep track of the row (or trial) and column number
      int trial_num, col_now ;
      Socket socket;
      int count[]={5,5,5,5,5,5};
    JPanel A[]  = new JPanel[10];
      JPanel B1[] = new JPanel[10];
      JPanel B2[] = new JPanel[10] ;
      JPanel notice = new JPanel() ;
      JPanel sub_notice = new JPanel();
      JPanel D1, D2 ;
      static JTextField [][]color = new JTextField[10][6] ;
      static JTextField [][]Output = new JTextField[10][2];
      static JTextField [][]Answer = new JTextField[1][6] ;
      static JButton []ok = new JButton[10];  
      JLabel L1 = new JLabel("Click the textfield to change color");
      JLabel L2 , L3, L4 ;
      String colorRange="BCGRYW";
      Color colorName[]={Color.black,Color.cyan,Color.green,Color.red,Color.yellow,Color.white};
      String temp ;
    public MasterMindClient() {
        // initialize
        trial_num = 0;
        col_now = 0;
        //sub_notice is Panel where the heading labels are placed
        sub_notice.setLayout(new GridLayout(1,3)) ;
        L2 = new JLabel("  ") ;
        L3 = new JLabel("X");
        L3.setHorizontalAlignment(JTextField.CENTER);
        L4 = new JLabel("O");
        L4.setHorizontalAlignment(JTextField.CENTER);
        L3.setToolTipText("matching color and column");
        L4.setToolTipText("matching color but not matching column" );
        sub_notice.add(L2);
        sub_notice.add(L3);
        sub_notice.add(L4);
        notice.setLayout(new GridLayout(1,2)) ;
        notice.add(L1) ;
        notice.add(sub_notice) ;
        // Get the content pane of the frame
        Container c = getContentPane();
        // Set GridLayout, 4 rows, 3 columns, and gaps 5 between
        // components horizontally and vertically
        c.setLayout(new GridLayout(12, 1, 5, 5));
        c.add(notice);
         JPanel Display = new JPanel() ;
         Display.setLayout(new GridLayout(1,2,5,5)) ;
       //create a Panel for each row to accept use input
       // color[][] textfield is where the user input
       // Output[][] is where to display the number of X and O
        for (int i = 0; i <= A.length-1 ; i++)
        A[i] = new JPanel() ;
        A.setLayout(new GridLayout(1, 2,10,10));
    B1[i] = new JPanel();
    B1[i].setLayout(new GridLayout(1,6,5,5)) ;
    B2[i] = new JPanel();
    B2[i].setLayout(new GridLayout(1,3,5,5)) ;
    for (int j = 0; j <= color[i].length-1 ; j++)
    color[i][j] = new JTextField() ;
    color[i][j].setHorizontalAlignment(JTextField.CENTER);
    if (i == 0)
    {color[i][j].setEditable(true) ;
    else
    {color[i][j].setEditable(false);
    color[i][j].addMouseListener(this);
    B1[i].add(color[i][j]) ;
    } // j loop
    ok[i] = new JButton("SEND");
    if(i==0)
         ok[i].setEnabled(true);
    else
         ok[i].setEnabled(false);
    ok[i].addActionListener(this);
    B2[i].add(ok[i]) ;
    Output[i][0] = new JTextField();
    Output[i][1] = new JTextField();
    Output[i][0].setEditable(false);
    Output[i][1].setEditable(false);
    Output[i][0].setHorizontalAlignment(JTextField.CENTER);
    Output[i][1].setHorizontalAlignment(JTextField.CENTER);
    B2[i].add(Output[i][0]);
    B2[i].add(Output[i][1]);
    A[i].add(B1[i]);
    A[i].add(B2[i]) ;
    c.add(A[i]) ;
    } //for i loop
    //D panel is where we store the answer[][]
    D1 = new JPanel();
    D1.setLayout(new GridLayout(1,6)) ;
    D2 = new JPanel();
    D2.setLayout(new GridLayout(1,2)) ;
    for (int j = 0; j <= Answer[0].length-1 ; j++)
    Answer[0][j] = new JTextField(0) ;
    Answer[0][j].setHorizontalAlignment(JTextField.CENTER);
    Answer[0][j].setEditable(false) ;
    D1.add(Answer[0][j]) ;
    Display.add(D1) ;
    Display.add(D2) ;
    c.add(Display) ;
    public void runClient()
         try
    {      socket=new Socket("localhost",8000);
    DataInputStream in=new DataInputStream(socket.getInputStream());
    int x=0;
    int o=0;
    try{
    while(true)
         while(trial_num<10)
              x=in.readInt();
              //System.out.println(x);
              Output[trial_num][0].setText(String.valueOf(x));
              o=in.readInt();
              //System.out.println(o);
              Output[trial_num][1].setText(String.valueOf(o));
              for(int i=0;i<6;i++)
              color[trial_num][i].setEnabled(false);
         ok[trial_num].setEnabled(false);
         trial_num++;
         col_now=0;
         if(x==6)
                   JOptionPane.showMessageDialog( null, "Congratulation, you've won the game !! " );
                   //ok[trial_num].setEnabled(false);
    break;
         if(trial_num<10)
         {  for(int i=0;i<6;i++)
              color[trial_num][i].setEditable(true);
              count[i]=5;
         ok[trial_num].setEnabled(true);
         if(x!=6)
         {  JOptionPane.showMessageDialog( null, "sorry you did not win the game");
         temp=in.readUTF();
         System.out.println(temp);
         //temp=in.readUTF();
         //System.out.println("can");
         for(int i=0;i<6;i++)
         System.out.println(i);
         char a=temp.charAt(i);
         int index=colorRange.indexOf(String.valueOf(a));
         Answer[0][i].setBackground(colorName[index]);
         trial_num=0;
         for(int j=0;j<10;j++)
         for(int k=0;k<6;k++)
         color[j][k].setBackground(Color.white);
         for(int j=0;j<10;j++)
         for(int k=0;k<2;k++)
         Output[j][k].setText(null);
         for(int i=0;i<6;i++)
              color[trial_num][i].setEditable(true);
              count[i]=5;
         ok[0].setEnabled(true);
         catch(EOFException em){}
         }catch(IOException ex){
              System.out.println("Error:"+ex.toString());}
    public void mouseClicked(MouseEvent e)
    for(int i=0;i<6;i++)
         if(e.getComponent()==color[trial_num][i])
         {         col_now=i;
         break;
    count[col_now]=(count[col_now]+1)%6;
    color[trial_num][col_now].setBackground(colorName[count[col_now]]);
    public void mouseEntered(MouseEvent e)
    public void mouseExited(MouseEvent e)
    public void mouseReleased(MouseEvent e)
    public void mousePressed(MouseEvent e)
    public void actionPerformed(ActionEvent e)
         try{
              send();
         }catch(IOException et){System.out.println("Error:"+et);}
    public void send()throws IOException
         DataOutputStream out=new DataOutputStream(socket.getOutputStream());
         char cbuf[]=new char[6];
         for(int i=0;i<6;i++)
              cbuf[i]=colorRange.charAt(count[i]);
    System.out.println(cbuf);
         out.writeUTF(new String(cbuf));
    /** Main method */
    public static void main(String[] args) {
    MasterMindClient frame = new MasterMindClient();
    frame.setTitle("Master Mind");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLocation(300,300) ;
    frame.setSize(450, 450);
    frame.setVisible(true);
    frame.runClient();
    } // end of class

    I notice that you have several hundred lines of GUI code there. None of them have anything to do with the problem you are trying to solve. So put them all aside and write a SMALL test program that does nothing but the little loop you are having a problem with. Shouldn't be more than 20 lines of code.

  • One last question about apple tv!! viewing movies in movies folder

    thanks to those who have responded to my previous questions.
    thinking of buying an apple TV this weekend, but here's my last question (which I just thought of!)
    i've got a collection of movies in various formats, usually .mov or .dv of home videos i've made in FCE and iMovie over the years, some of them several GB in size (oops!)
    what's the best way of viewing these on the apple tv. for instance
    1. does apple TV let you look into your 'movies' folder in the home folder to play any movies it finds there
    2. will it play .dv or .mov files, or does it need to be a specific format
    3. i've noticed an 'export to apple tv' in quicktime pro, do i need to do this for all my movies before apple tv will play them. and after i do an 'export to apple tv' where do the files need to be? imported into itunes, or just sat in my 'movies' folder?
    cheers, looking forward to visiting the apple store tomorrow!

    1. does apple TV let you look into your 'movies' folder in the home folder to play any movies it finds there.
    No, the tv uses itunes for its source of movies.
    2. will it play .dv or .mov files, or does it need to be a specific format
    DV, no. MOV, maybe. MOV is a container type not a compression type, if the MOV container has the correct compression formats in it then it will play. Movies for the tv need to be either mpeg4/2 or mpeg4/10 (H264/AVC)
    3. i've noticed an 'export to apple tv' in quicktime pro, do i need to do this for all my movies before apple tv will play them. and after i do an 'export to apple tv' where do the files need to be? imported into itunes, or just sat in my 'movies' folder?
    Yes 'export to tv' will do the job for you. You need to be aware though that DV with the wrong field dominance will cause it a problem, and some cameras do use the wrong field dominance. It won't work with muxed files (mpeg2 for example) and on SD movies it can be a little wasteful on space. I've always used mpegstreamclip to convert from DV.
    Of course from now on you'll be using FCE with this in mind and exporting accordingly.

  • Sorry last question got knocked back my ipad and iPhone on two different levels and I am not able to play through Facebook so not able to progress or unlock next level through Apple store. Don't know how to resolve problem

    Sorry last question got knocked back my ipad and iPhone on two different levels and I am not able to play through Facebook so not able to progress or unlock next level through Apple store. Don't know how to resolve problem

    Thank you again for all of your help!! I really appreciate it!
    I think I am following -- I was able to upload to my iPhoto and all photos and videos are there that is a plus! I tried to create an Event in my iPhoto and put all of my photos in that event but for some reason, now my iTunes it not recognizing that Event in my iPhoto. It is not allowing me to import just that event at the moment but I may be doing something wrong. At least all of my pics and vids are in iPhoto so that is a plus and I know they are at least saved somewhere. Just for some reason, my iTunes it not locating the event that I created with only those photos.
    Thank you for letting me know about my contacts! How do I know if I have the contacts app?
    Also, I had no clue that my iCloud could be backed up via cellular data! However, is this a new feature with the most updated iOS?? Unforutnatly I am like 2 iOS updates behind because I don't have enough storage on my phone. I still get the notification that my phone needs to be plugged in and connected to wifi in order to back up to the cloud :-(
    How can I sync using USB? Right now when i click on the info tab for my iPhone in my iTunes this is the answer that I get -- I am a little unclear as to what it means.
    Sync Contacts:
    Your contacts are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone
    Sync Calendars:
    Your calendars are being synced with you iPhone over the air from iCloud. Over-the-air sync settings can be changed on you iPhone

  • Thanks for the idea. One last question..

    Thanks for the replies, setting it to passive seemed to work
    as I can now upload to my host. Just one last question, I've
    searched the video knowledge base looking for a video on how to use
    the 'Starter Pages' within Dreamweaver to no avail. When I try I
    always get the same message: 'Dreamweaver stores templates in the
    root folder of a site, but there are no sites defined. Please add a
    site.' I have my site all layed out in Dreamweavers FTP, I can
    upload and download with it and still Dreamweaver gives me this.
    Any ideas?
    Thanks once again all

    Using FTP & RDS Server for your site means that you will
    not be able to use
    DW's Templates or Library items. It's usually a very bad
    idea, to boot.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "John Waller" <[email protected]>
    wrote in message
    news:g1a9mi$qtn$[email protected]..
    > F1 Dreamweaver Help files
    >
    > Working with Dreamweaver Sites > Setting up a
    Dreamweaver site
    >
    > --
    > Regards
    >
    > John Waller

  • Canon HG20 One Last Question

    Before I buy my Canon HG20, I have one last question.
    I have seen warnings various places on the net about having a powerful enough computer to work with the data produced by this camera.
    I have an iMac 24 2.16 2GHz Intel Core 2 Duo with 2 MHz Memory, NVIDIA GeForce 7300 card, running OS X 10.5.6 with FCE 4.0.1.
    Am I OK?
    Thanks,
    Jim

    That is a perfect machine for AVCHD editing. i use a puny Macbook and I have experienced no problems, everything is very fast. To work with AVCHD, you need an Intel processor and to have at least FCE4. 2GB of RAM is also a good idea to have (I assume that's what you meant you had when you said you had "2 MHz Memory"). From what you have said of your specs, I can't foresee any problems. If a Macbook can do it well, you can expect an iMac to do it amazingly.
    Enjoy your new camcorder, I definitely am pleased with my HG21 (basically the same thing, just more memory and a viewfinder).
    Message was edited by: skalicki`

  • Forget the last Question. Figured it out.

    Forget the last Question. Figured it out. Sorry!

    It would be very useful to post your solution here for others who have the same problem (I've seen several threads on this subject).
    Matt

  • Can you please delete my last question

    Can you please delete my last question re: iCal in the iCal forums? Thanks. I would like to write it more calmly. Also, please advise how I can change an alias. I do not see a place in "Edit My Settings."

    If you look at the announcement at the top of this topic, you will see one referring to changing your alias.

  • Up date on last question

    All the sideshows are working, it's just the original stuff that's not, like the banner and the spry bar, I think it's got something to do with the main CSS file not linking to them, how do you reconnect a main CSS file once you have put the page/s one folder deeper. Please refer to my last question

    Please refer to my last question
    Avoid creating new discussions when this new post is a continuation of the previous discussion. Gets confusing and disjointed quickly otherwise.
    Much better if you keep everything in one spot and reply to your own post with a follow up post in the same (previous) discussion until the previous discussion is answered.

  • In regards to the answer i got to my last question. My purpose is not to add a border. The purpose

    to my last question is how to put a line
    between th esidebar and the main containt It is not to make a border on the side
    bar. It is to place a line between the sidebar  container and the content container. I do not wish
    to make a border arround the sidebar neither arround the main content. My purpose is just
    to put a vertical line from the header container to the footer container between the sidebar and the maincontent divs!
    See the file below with the blue line separating the sidebar and the content container. that is the line that i want to make.
    thanks. !Merry Christmas!

    As noted this is an Acrobat product forum. Are you using an Adobe web creation product like Dreamweaver? If so, you need to ask your question in that forum.

  • Dual Booting (I'm sorry if this is a stupid question)

    Hey, I'm regularly a Windows XP Professional user and I'm trying to convert to the dark side and use linux, and of course I wanted the best so I chose Arch. The only problem I've encountered so far is configuring Grub to dual boot. Excuse me if this is a n00b question or if it's been asked before (I really have tried my best to find this question in other topics but they never quite exactly matched my issue). I'm using two hard drives, a master with Arch on it and a slave with Windows XP on it. My Arch drive has three partitions, the first is a 50 mb boot partition, the second a 512mb swap partition, and the rest of the 40gb drive is a reiserFS partition. My Windows XP drive has a 79.5 gb NTFS partition, and the remaining .5gb is free space. I installed Grub to the first disk(Arch disk). Here is my configuration for Windows XP in Grub:
    # (1) Windows XP Pro
    title Windows XP Professional
    rootnoverify (hd1,0)
    map (hd0) (hd1)
    map (hd1) (hd0)
    makeactive
    chainloader +1
    When I get into Grub, I can select Arch and it boots properly, however when I choose Windows I get a "Disk Read Error". However, taking the Arch drive out and making the Windows one the master, Windows boots properly. Can you help me with this and any mistakes I may have made? Thank you very much.

    I suggest invert the disks and forget the map thing. 
    Note: To get this method working, you need your XP CD for the last steps.  Also some kind of Recovery linux CD will be good in case something goes wrong.  The worst case can be that after the steps XP boots fine, but Linux do not.
    1.Put XP HD as primary or first HD, and your Arch Disk secondary.  Windows do not like it the other way around (period).
    2.Temporalily install grub on the primary Hard Disk boot sector but don't worry, for the XP menu, we'll get it back later.
    3.Edit your grub setting to point to the correct drives.  Note: replace vmlinuz for your kernel image on /boot, and check the hd paths. I take the lines from my own grub config and adapt it to your hard disk layout.
    title Arch Linux
    root (hd0,0)
    kernel (hd0,0)/boot/vmlinuz ro root=/dev/hda3
    title Windows XP xxxx Edition
    rootnoverify (hd1,0)
    makeactive
    chainloader +1
    4. Check your system boots to both OS's, again don't worry for the missing  XP boot menu.
    5. Boot to Linux, and follow the steps on this page http://www.geocities.com/epark/linux/gr … HOWTO.html.  Look for the dd if= instruction.
    6. If you followed the instructions from the site, you'll have both OS's entries on XP menu. Now, put your XP CD-ROM and restart.
    7. Select boot from CD, then Repair Installation
    8. When ask which installation to repair, select 1, and enter the password.  BTW, if you install XP and never log as Administrator, probably the password is unset (empty), so try first a return.
    9. At the prompt, type FIXBOOT (enter) and at the prompt again, type FIXMBR (enter)
    10. Restart
    If everything is set, you'll have both Systems defined on Both menus, Grub and NTLDR.  So you can switch from one to another at any time, for example, if selected the wrong option.

  • I have move in to this New House last Month ( My I...

    Hi all on BT Forums
    I have move in to this New House last Month my Internet Download Speed has been all Good so for now on Friday 06/09/13 come my Download Speed has Slow Down a bit but am Thinking BT have now Capped my Download Speed to 4mb when i can get 8mb on this broadband Line this what BT Openreach Engineer tell me when he was Testing my Phone Line the Download Speed i can get at is New House when he was Puting in the New Phone Line in my House.
    ================================
    This what i get when i put my Phone Line Number in the BT WebSite at
    http://www.productsandservices.bt.com/products/broadband/packages
    To see what my Donwload Speed was not like this to me it was 7mb last Week why has it been Capped to 4mb what i like to know i am not Happy i am going to Phone BT this Monday than see what can be done to fix it.
    You can choose BT Broadband now offering:
    4Mb *
    Estimate download speed
    2.5Mb-7Mb
    Download speed range
    ========================
    I am Useing BT Home Hub 4
    What has Happened to the BT ADSL Status line the one in BT Home Hub 3 i use be for geting the BT Home Hub 4.
    This New BT Home Hub 4 Need a new Firmware to get the ADSL full Status line back like the BT home Hub3 had.
    how am to see my SNR Speed now thanks a lot BT i can't tell what my Line SNR Speed is in the BT Home Hub 4.
    This all i get to see now.
    This is the Speed i should be geting in the Bt Home Hub 4.
    ADSL Line Status
    Connection Information
    Line state:
    Connected
    Connection time:
    16 days, 05:55:28
    Downstream:
    7.719 Mbps
    Upstream:
    448 Kbps
    ========================
    This is The Speed i should be geting when i have Test on BT Speed Test
    BT Speed Test Done
    http://speedtest.btwholesale.com/
    FAQ
    1. Best Effort Test: -provides background information.
    Download  Speed
    6.29 Mbps
    0 Mbps
    7.15 Mbps
    Max Achievable Speed
     Download speedachieved during the test was - 6.29 Mbps
     For your connection, the acceptable range of speeds is 0.6 Mbps-7.15 Mbps.
     Additional Information:
     Your DSL Connection Rate :7.9 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 6.5 Mbps

    the stats  now shown on the hub 4  are limited  following customers asking  for simpler stats  complaint have been made  but there are no plans for them to be supplied as you had a hub 3  you can still use that if you wish 
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

Maybe you are looking for