When running about:config I get a message warning me about voiding a warranty, how do I get this to go back to telling me "here be dragons"?

This is not a problem, I just prefer dragons!

Thanks for the info cor-el, I'm sure it will be useful to someone; I hadn't turned the warning off, just got the US version of the message instead of the UK one and my previous attempts to get back to the right country had failed. It's just that the US message is so boring - dragons all the way, I say ;-)

Similar Messages

  • I have been trying to access Bridge Base Online.  When I try to access account the message "blocked plug-in" comes up.  How do I fix this?

    I have been trying to access Bridge Base Online.  When I try to access the site, the message "blocked plug-in," comes up.  How can I get rid of this message?
    Prior to this, I have had no problems with the site.

    Click on the "blocked plug-in" text and follow the instructions in the dialog box which appears.
    (80724)

  • When running my code i get this message"applet notinited"

    if someone could tell what to do i would be very thankful.every comment is important cause i'm new to java.
    it compiles perfect.
    here is my code
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class board extends JApplet implements Runnable, MouseListener {
    private Image offscreenImage;
    private Graphics offscr;
    private Thread t;
    private int boardwidth;
    private int boardheight;
    private int sqx;
    private int sqy;
    private square board[][];
    private int sqheight;
    private int sqwidth;
    private int xplayer;
    private int oplayer;
    private int i;
    private int j;
    private int boardi;
    private int boardj;
    public void board()
    { addMouseListener(this);
    public void init()
    t= new Thread(this);
    t.start();
    sqx=0;
    sqy=0;
    boardwidth=getSize().width;
    boardheight=getSize().height;
    sqwidth=boardwidth/3;
    sqheight=boardheight/3;
    offscreenImage=createImage(boardwidth, boardheight);
    offscr=offscreenImage.getGraphics();
    for (i=0;i<=2;i++)
    { for (j=0; j<=2;j++)
    { sqx+=j*sqwidth;
    sqy+=i*sqheight;
    board[i][j]= new square(sqx,sqy,sqheight,sqwidth,0); }
    public void paint(Graphics g)
    for (i=0;i<=2;i++)
    { for (j=0; j<=2;j++)
    { switch ( board[i][j].status)
    {  case 0:
    offscr.setColor(Color.white);
    break;
    case 1:
    offscr.setColor(Color.black);
    break;
    case 2:
    offscr.setColor(Color.red);
    break;
    offscr.fillRect( board[i][j].x_pos, board[i][j].y_pos, sqwidth, sqheight);
    g.drawImage(offscreenImage,0,0, this);
    public void update(Graphics g)
    paint(g);
    public boolean validMove(int count1,int count2)
    {  if(board[count1][count2].status==0)
    return true;
    else
    return true;
    public void getIndex(MouseEvent e )
    { int mousex=e.getX();
    int mousey=e.getY();
    for (i=0;i<=2;i++)
    { for (j=0; j<=2;j++)
    if ((mousex>board[i][j].x_pos) && (mousex< (boardj].x_pos+100)))
    { if ((mousey>board[i][j].y_pos) && (mousey< (board[i][j].y_pos+100)))
    {  boardi=i;
    boardj=j;
    public void mouseReleased(MouseEvent e)
    {  getIndex(e);
    if (validMove(boardi,boardj))
    { board[boardi][boardj].status=1;
    repaint();
    public void run()
    { while (true)
    repaint();
    try {
    t.sleep(1000/30);
    }catch (InterruptedException e) {;}
    public void mousePressed(MouseEvent e) {
    public void mouseClicked(MouseEvent e) {
    public void mouseEntered(MouseEvent e) {
    public void mouseExited(MouseEvent e) {
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class square
    public int x_pos;
    public int y_pos;
    public int sheight;
    public int swidth;
    public int status;
    public square(int x,int y,int h,int w, int s)
    x_pos=x;
    y_pos=y;
    sheight=h;
    swidth=w;
    status=s;
    public boolean isEmpty()
    if (status==0){
    return true; }
    return false;

    it's a good idea to not use [ i ] when posting in the forums, as it is the flag italics. i changed them all to index.
    also, i would not declare index and j until i needed them in the loops. this could cause some slips where you don't expect it. but i'm not fixing that for you.
    and, your constructor wasn't ever being called, so i moved the line
    addMouseListener(this);
    to the init() method.
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Board extends JApplet implements Runnable, MouseListener {
         private Image offScreenImage;
         private Graphics offscr;
         private Thread t;
         private int boardwidth;
         private int boardheight;
         private int sqx;
         private int sqy;
         private Square[][] board;
         private int sqheight;
         private int sqwidth;
         private int xplayer;
         private int oplayer;
         private int index;
         private int j;
         private int boardi;
         private int boardj;
         public void init(){
              addMouseListener(this);
              board=new Square[2][2];
              sqx=0;
              sqy=0;
              boardwidth=getSize().width;
              boardheight=getSize().height;
              sqwidth=boardwidth/3;
              sqheight=boardheight/3;
              offScreenImage=createImage(boardwidth, boardheight);
              offscr=offScreenImage.getGraphics();
              for (index=0;index<2;index++)     {
                   for (j=0; j<2;j++)          {
                        sqx+=j*sqwidth;
                        sqy+=index*sqheight;
                        board[index][j]= new Square(sqx,sqy,sqheight,sqwidth,0); }
              t= new Thread(this);
              t.start();
         public void paint(Graphics g){
              for (index=0;index<2;index++)     {
                   for (j=0; j<2;j++)          {
                        switch ( board[index][j].status)               {
                             case 0:
                             g.setColor(Color.white);
                             break;
                             case 1:
                             g.setColor(Color.black);
                             break;
                             case 2:
                             g.setColor(Color.red);
                             break;
                   g.fillRect( board[index][j].x_pos, board[index][j].y_pos, sqwidth, sqheight);
         public void update(Graphics g){
              offscr.setColor(getBackground());
              offscr.fillRect(0,0,getSize().width,getSize().height);
              paint(offscr);
              g.drawImage(offScreenImage,0,0,this);
         public boolean validMove(int count1,int count2) {
              if(board[count1][count2].status==0)
                   return true;
              else
                   return true;
         public void getIndex(MouseEvent e ){
              int mousex=e.getX();
              int mousey=e.getY();
              for (index=0;index<2;index++)     {
                   for (j=0; j<2;j++)          {
                        if ((mousex>board[index][j].x_pos) && (mousex< (board[index][j].x_pos+100)))               {
                             if ((mousey>board[index][j].y_pos) && (mousey< (board[index][j].y_pos+100)))          {
                                  boardi=index;
                                  boardj=j;
         public void mouseReleased(MouseEvent e){
              getIndex(e);
              if (validMove(boardi,boardj))     {
                   board[boardi][boardj].status=1;
                   repaint();
         public void run(){
              while (true)     {
                   repaint();
                   try {
                        t.sleep(1000/30);
                   }catch (InterruptedException e) {;}
         public void mousePressed(MouseEvent e) {;}
         public void mouseClicked(MouseEvent e) {;}
         public void mouseEntered(MouseEvent e) {;}
         public void mouseExited(MouseEvent e) {;}
    class Square {
         public int x_pos;
         public int y_pos;
         public int sheight;
         public int swidth;
         public int status;
         public Square(int x,int y,int h,int w, int s)     {
              x_pos=x;
              y_pos=y;
              sheight=h;
              swidth=w;
              status=s;
         public boolean isEmpty()     {
              if (status==0){
                   return true;
              }else{
                   return false;

  • When burning a bluray I get this error message: Total bitrate is too high near time = 4.760000

    When burning a bluray I get this error message: Total bitrate is too high near time = 4.760000
    The video is encoded with sonic cinevison as avchd file and one AC3 file.

    What can I do to avoid it?
    Well, about the only thing you can do to solve "bitrate too high" errors is to lower the bitrate.

  • In Mail when deleting a file i get this response 68615.emlx" couldn't be copied to "Messages

    in Mail when deleting a file i get this response 68615.emlx” couldn’t be copied to “Messages
    Donnie
    <Edited By Host>

    HT2500 Error when deleting email: Apple Support Communities

  • When I start firefox, i get this message ( The instruction at "0x7b9c77a9" referenced memory at "0x7b9c77a9". The memory could not be "read" ) hs anyone any idea why? I have scanned with AVG and something simply called 'Trojan Remover' and they both fin

    when I start firefox, i get this message ( The instruction at "0x7b9c77a9" referenced memory at "0x7b9c77a9". The memory could not be "read" ) hs anyone any idea why? I have scanned with AVG and something simply called 'Trojan Remover' and they both find nothing.... any advice would be greatly welcomed.. thanks
    == This happened ==
    Every time Firefox opened
    == this morning 22/07/10

    Lyall,
    I have seen this before, a long time ago (several years), and I cannot
    remember how/if we resolved it.
    If this is an impotant issue to you, I suggest that you open a case with
    BEA support.
    Regards,
    Peter.
    Got a Question? Ask BEA at http://askbea.bea.com
    The views expressed in this posting are solely those of the author, and BEA
    Systems, Inc. does not endorse any of these views.
    BEA Systems, Inc. is not responsible for the accuracy or completeness of
    the
    information provided
    and assumes no duty to correct, expand upon, delete or update any of the
    information contained in this posting.
    Lyall Pearce wrote:
    The title says it all really.
    I see other posts getting replies.
    This is a rather important issue, I have seen another post with a similar problem.
    While not being a show-stopper it certainly raises concerns.
    The application works ok until the application exits (in both development and
    executable form)
    Apparently this did not happen with Tux 7.1
    It does with 8, I do not have 7.1 so I have no workaround.
    ..Lyall

  • I exported an archive of iCal from a computer running the last OS X. On a new computer running OS X (10.7.4), I tried to import the .icbu file and got a message "The calendar failed to restore". How do I fix this/get my calendar?

    I exported an archive of iCal from a computer running the last OS X. On a new computer running OS X (10.7.4), I tried to import the .icbu file and got a message "The calendar failed to restore". How do I fix this/get my calendar?

    I exported an archive of iCal from a computer running the last OS X. On a new computer running OS X (10.7.4), I tried to import the .icbu file and got a message "The calendar failed to restore". How do I fix this/get my calendar?

  • HT4623 I updated my iPhone 4s and cannot access Passbook. When I click on App Store, I get the following message "cannot connect to iTunes Store." How do I correct this?

    I updated my iPhone 4s and cannot access Passbook. When I click on App Store, I get the following message: "cannot connect to iTunes Store." How do I correct this problem?

    That's because there are not enough apps that use Passbook yet. Wait.

  • I cannot run itunes, I keep getting this error message" Quick Time failed to initialized (error02096) Quick time is required to run please unistall itunes then install itunes again, I have done this three time and I keep getting the same error message.

    On my PC, I cannot run itunes, I keep getting this error message" Quick Time failed to initialized (error02096) Quick time is required to run please unistall itunes then install itunes again, I have done this three times and I keep getting the same error message. I have had itunes for years, but up until 2 months ago the quick time will not initialize to run it.

    Try using the Windows Installer Cleanup Utility and delete the iTunes installer. Then try installing iTunes again
    http://majorgeeks.com/Windows_Installer_CleanUp_Utility_d4459.html

  • When i open iTunes i get this message "iTunes: iTunes.exe - Entry Point Not Found" "The procedure entry point RefAudioFileWritePackets could not be located in the dynamic link library CoreAudioToolbox.dll." how do i fix this!

    when i open iTunes i get this message "iTunes: iTunes.exe - Entry Point Not Found" "The procedure entry point RefAudioFileWritePackets could not be located in the dynamic link library CoreAudioToolbox.dll." how do i fix this!

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. Now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair".
    Does iTunes launch properly now?
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post:
    Re: I recently updated to vista service pack 2 and I updated to itunes

  • When trying to sync, I get this computer is no longer authorized for purchases on this iphone. I click on store-authorize this computer and get successful and still get the error. I tried deauthorizing and reauthorizing and keep getting this message. Help

    when trying to sync, I get this computer is no longer authorized for purchases on this iphone. I click on store-authorize this computer and get successful and still get the error. I tried deauthorizing and reauthorizing and keep getting this message. Help

    the solution you propose is not helping . are there alternatives ?
    I have Iphone 4  never  had any problem , and withouth changing or modifying , this problem popped up out of the blue ....
    Please HELP

  • When I try to make a purchase or downlowd from iCloud I get the message that my Apple ID is disabled, how can I fix this?

    When I try to make a purchase or downlowd from iCloud I get the message that my Apple ID is disabled, how can I fix this?

    Depending on why it's been disabled you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    You might then need to log out of your account on your phone by tapping on your id in Settings > iTunes & App Store and then log back in so as to 'refresh' the account on it.
    If that doesn't fix it then contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • When i sign on I get this message.  An undefined AIM session error has occurred.

    when i sign on I get this message.  An undefined AIM session error has occurred.

    Hi,
    In iChat > Preferences > Accounts  go to the Server Setting tab for the account in question
    Change the Port from 5190 to 443  (you can only do this whilst Logged out)
    Now go to the Account Info tab and tick the Use this Account box to Log in
    If you still can't log in then return to the Server Settings and deselect SSL and try logging in again.
    <
    8:50 PM      Friday; July 22, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • I have Adobe Acrobat Proffesional  and Adobe Reeader. When ever I open a document it closes on its own in about 10 seconds. How do I fix this?

    I have Adobe Acrobat Proffesional  and Adobe Reeader. When ever I open a document it closes on its own in about 10 seconds. How do I fix this?

    Windows 7.
    Adobe Acrobat 8 with the Original DVD.
    Adobe Reader X1 downloaded off Adobes site.
    Both versions of adobe close after 10 seconds or so once I open a PDF file. I started having this problem about 2 weeks ago. Everything else if fine with the computer
    I have run various virus scans. Haven’t found any issue.
    Regards,
    Dave

  • I have open office.  Someone sent me e-mail I can't open.  get error message power pc no longer supported.  How do I open this doc?

    I have open office.  Someone sent me e-mail I can't open.  get error message power pc no longer supported.  How do I open this doc?

    Right click your document, hover over "Open with..." and then click "Other".
    Find TextEdit and click "Open".
    TextEdit will then do it's best to open your document.
    If you have iLife, do the same but instead of opening with TextEdit open with Numbers, Pages, Keynote, e.t.c.
    To download iLife, click here.
    If the above link does not work, click here.
    -----EDITS-----
    Added "If the above link does not work" at the bottom of the post.
    <Edited by Host>

Maybe you are looking for

  • Jar file in Web Dynpro Java Application!

    Hi All: I needed a Jar file in my WDJ App. I am using SP16. Can someone provide ideas/instructions on how to do this? Thanks in Advance!

  • F110 Auto. payment program ..Problem payment method not found

    Hi, I done the configuration for automatic payment program.with payment method c. when i am running the program the proposal is created but it is with a error saying no valid payment method found. Please guide me. Thanks Micheal

  • Phone or Firmware?

    Ok, so here is the history, I had to have my phone replaced because the mic on the head phones was not working. So it was a problem with the headphone port. Now I have a new phone and ever since i have had the new phone I have had a problem with the

  • Re: Reg:invoice correction req

    Hi All, when im trying to create an invoice corr req with ref to invoice system is not allowing me to change the condition values. as the material and the target qty are in display mode. plz help me out in solving this issue. its bit urgent. Thanks &

  • How to create a java.util.Date object from a date String?

    How do I convert a String representation of a date in for the format dow mon dd hh:mm:ss zzz yyyy (e.g. "Mon Aug 27 17:12:59 EDT 2001") into a Date object? This you might note is the output of the Date classes toString() method. I don't want to have