What's wrong with old applet tag?

Hi there,
What is wrong with old <applet> tag? It will stop displaying java applet in the new browsers? What do we gain by using <embed>?
Thanks.
Mike

The applet element was deprecated in HTML 4.01 but still works. Continue to use it to display AWT applets in NE else if using SWING applets must to use EMBED. See Java documentation for details, in special the OBJECT tag chapter..better reading about HTML converter.

Similar Messages

  • What's wrong with my flash tags?

    I'm writing my own software to generate SWF files (very simple ones that just display a single image). The order the SWF entries are written in are:
    SWF Header (the main file header)
    Tags:
         FileAttributes (required for version 8 or higher)
         DefineBitsJPEG2 (contains JPEG format image)
         PlaceObject2 (places it into Display List)
         ShowFrame (displays to the screen everything in the DisplayList)
         End (tag that ends the SWF file)
    When I load the resulting SWF file into a web browser (or the standalone Flash viewer) what I find is that it just has a white screen. The image isn't being displayed. Is there something wrong with the order of the tags in my SWF file? I can't find any debugger software that will analyze the tags in the SWF file and tell me what's wrong with them.
    Can anybody here help me with this?

    And, occasionally it will boot into open firmware.
    Seems odd to me. All by itself? Did you press any keys?
    I don't know what to do from here. I can still boot into os 8.6 with extensions off.
    Most likely, you have a bad extension. They are in a folder called extensions What you need to do is create a new folder and move extensions to this folder. Move extensions to the folder in groups. try 1/2 first. Move back & forth between folders. See which extension is causing the problem. command + n to create a new folder
    verify that you have the correct firmware.
    Figuring out what level of firmware you have?
    1) Mac OS 9.x or 8.x, you need to use the Apple System Profiler.
    Apple -> Apple System Profiler
    2) Mac OS X, use the System Profiler.
    Apple -> About This Mac
    click on the More Info... tab
    click on Hardware
    read the Boot ROM Version
    3) Open Firmware, boot into Open Firmware.
    Power on your iMac while holding down commandoption+of
    The first output line contains the firmware level. Mine reads:
    Apple PowerMac4,1 4.1.9f1 BootRom built on 09/14/01 at 13.18.04
    Copyright 1994-2001 Apple Computer Inc.
    The 4.1.9f1 will be different on a 333 machine.
    What firmware do you need?
    http://docs.info.apple.com/article.html?artnum=86117

  • Whats wrong with this applet TAG

    Hi,
    Any ideas why this tag:
    <APPLET
    codebase="/applet"
    archive="JavaLibrary1.jar"
    code="org.gregnet.NewJApplet.class"
    width=350 height=200>
    </APPLET>
    results my web server is giving an error indicating it can't find anything at: "/applet/org/gregnet/NewJApplet.class"?? It's kind of like the ARCHIVE parameter it's being recognised? My web server I assume should only see the applet calling into the "http://<<domain>>/applet/JavaLibrary1.jar" address based on my applet tag (i.e. the code parameter should be used to form part of the HTTP request path I assume)
    Any ideas?

    Try the applet in Appleteer. See if that explains things better.
    Edited by: AndrewThompson64 on Feb 27, 2009 2:58 PM

  • What is wrong with this applet?

    Hi,
    I can't get this applet to work when embedded in the browser. It gives no errors... just does nothing. It works alright in the appletviewer though.
    This is the code
    import java.awt.*;
    public class MainApplet extends DoubleBufferApplet {
        private Image[] images;
        private ImagePaths imagePaths;
        private String[] paths;
        private int appletWidth;
        public void init() {       
            imagePaths = new ImagePaths();
            paths = imagePaths.getPaths(); //get image urls from a mysql database
            appletWidth = (int) this.getSize().getWidth();
            images = new Image[paths.length];               
            for (int i = 0; i < paths.length; i++){
                images[i] = this.getImage(getDocumentBase(),paths);
    public void paint(Graphics g){       
    g.setColor(Color.BLACK);
    g.fillRect(0, 0, appletWidth, 100);
    int length = (images.length * 100);
    do{
    for (int j = appletWidth; j > 0-length; j--){
    for (int i = 0; i < images.length; i++){
    if (j < appletWidth){
    g.drawImage(images[i], j+(i*100), 20, this);
    try{
    Thread.sleep(5);
    } catch (InterruptedException e){
    } while (true);
    I use this HTML<HTML>
    <HEAD>
    <TITLE>Image Display</TITLE>
    </HEAD>
    <BODY>
    <applet codebase="imagedisplay/"
    code="MainApplet.class" width="500" height="140"
    alt="Cannot load applet">
    </applet>
    </BODY>
    </HTML>
    Your help is much appreciated.
    Regards,
    William.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Well, then you should be much more explicit what you have done when you post. That way we won't waste time covering things that seem obvious to you, but, trust me, they're not obvious to everybody. On this particular forum, asking people to check the Java console leads to results about two thirds of the time. A lot of people out there don't seem to know that the Java console exists.
    If you're getting no errors in the console, then either (1) the bug is such that it doesn't produce any error messages (e.g., there's an unterminated loop), (2) there are error messages (e.g., an exception thrown) but the applet is catching them silently, or (3) maybe it is producing uncaught error messages, but you're not looking in the right place to see them. Considering that your applet subclasses another, it's possible that the superclass is the culprit. I'd suggest, as a first step, adding debugging statements to your code just to confirm that it's loading and that something can appear in the console.

  • What is wrong with my applet

    hi;
    i wrote this applet but it didn't work only with opera 8?
    so why only opera?
    package editeur;
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.*;
    import java.io.*;
    //Use double buffering to remove rectangle flickers and make it repaint faster.
    public class ShapeMover extends JApplet{
        static protected Label label = new Label(
                "Drag rectangle around within the area");
        MyCanvas mycanvas = new MyCanvas();
        BarreOutils barre=new BarreOutils();
        public static ColorChooserDemo barreCouleur=new ColorChooserDemo();
         public static  XMLayout xml=new XMLayout();
        public void init() {
            getContentPane().setLayout(new BorderLayout());
            getContentPane().add(BorderLayout.CENTER,mycanvas);
            getContentPane().add(BorderLayout.WEST, barre);
            getContentPane().add(BorderLayout.EAST, barreCouleur);
        public static void main(String s[]) {
            JFrame f = new JFrame("ShapeMover");
            f.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
            Applet applet = new ShapeMover();
            f.getContentPane().add("Center", applet);
            applet.init();
            f.pack();
            f.setSize(new Dimension(550, 250));
            f.show();
    /code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    maybe opera's the only one with the classes - won't even compile for me
    C:\TestApplet.java:15: cannot find symbol
    symbol  : class MyCanvas
    location: class TestApplet
    MyCanvas mycanvas = new MyCanvas();
    ^
    C:\TestApplet.java:16: cannot find symbol
    symbol  : class BarreOutils
    location: class TestApplet
    BarreOutils barre=new BarreOutils();
    ^
    C:\TestApplet.java:17: cannot find symbol
    symbol  : class ColorChooserDemo
    location: class TestApplet
    public static ColorChooserDemo barreCouleur=new ColorChooserDemo();
                  ^
    C:\TestApplet.java:18: cannot find symbol
    symbol  : class XMLayout
    location: class TestApplet
    public static XMLayout xml=new XMLayout();
                  ^
    C:\TestApplet.java:15: cannot find symbol
    symbol  : class MyCanvas
    location: class TestApplet
    MyCanvas mycanvas = new MyCanvas();
                            ^
    C:\TestApplet.java:16: cannot find symbol
    symbol  : class BarreOutils
    location: class TestApplet
    BarreOutils barre=new BarreOutils();
                          ^
    C:\TestApplet.java:17: cannot find symbol
    symbol  : class ColorChooserDemo
    location: class TestApplet
    public static ColorChooserDemo barreCouleur=new ColorChooserDemo();
                                                    ^
    C:\TestApplet.java:18: cannot find symbol
    symbol  : class XMLayout
    location: class TestApplet
    public static XMLayout xml=new XMLayout();
                                   ^
    C:\TestApplet.java:39: cannot find symbol
    symbol  : class ShapeMover
    location: class TestApplet
    Applet applet = new ShapeMover();
                        ^
    Note: C:\TestApplet.java uses or overrides a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    9 errors
    Process completed.Message was edited by:
    Michael_Dunn
    change file structure - easier to read

  • What's wrong with my div tag / site won't center....

    Hi,
    I am re-designing a website and I cannot get it to center.  I created a div tag and id it "wrapper" and created a css rule.  I am sure its a simple mistake, but I cannot figure it out.....
    Here is the CSS rules...
    @charset "UTF-8";
    /* CSS Document */
    div, h1, h2, h3, h4, h5, h6, p, pre, address, blockquote, span, ul, ol, li, dl, dd, dt, ing {
              margin: 0px;
              padding: 0px;
    #wrapper{
              margin: 0, auto;
              background-color: #9B9E6B;
    ul {
              list-style: none;
    table#content1{
              background-color: #00C;
              background-image: url(_images/content_bgrnd.png);
              background-repeat: no-repeat;
              font-family: "Arial Black", Gadget, sans-serif;
              font-size: 20px;
              text-align: center;
              padding: 8px;
    Here is the code for the site......
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Kiahuna 104</title>
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <link href="104.css" rel="stylesheet" type="text/css" />
    </head>
    <body onload="MM_preloadImages('_images/buttinside1.jpg','_images/buttproperty1.jpg','_images/b uttactivities1.jpg','_images/buttdining1.jpg','_images/buttcontacts1.jpg','_images/home_lg 1.png','_images/home_lg2.png','_images/home_lg3.png','_images/home_lg4.png','_images/home_ lg5.png','_images/home_lg6.png','_images/home_lg7.png','_images/home_lg8.png')">
    <div id="wrapper">
    <!--Header-->
    <table id="header">
      <div class="header"><img src="_images/newLOGO.jpg" alt="Kiahuna 104" width="1000"/>
    </div>
    <!--Navigation table-->
    <table width="1000" bgcolor="000">
      <tr>
        <td width="40"> </td>
        <td width="150"><a href="inside.htm"><img src="_images/butthome1.jpg" alt="home1" name="home1"  id="home1" /></a></td>
        <td width="150"><img src="_images/buttinside2.jpg" alt="inside2" name="inside2" id="inside2" onmouseover="MM_swapImage('inside2','','_images/buttinside1.jpg',1)" onmouseout="MM_swapImgRestore()" /></a></td>
        <td width="150"><a href="property.htm"><img src="_images/buttproperty2.jpg" alt="property2" name="property2" id="property2" onmouseover="MM_swapImage('property2','','_images/buttproperty1.jpg',1)" onmouseout="MM_swapImgRestore()" /></a></td>
        <td width="150"><a href="activities.htm"><img src="_images/buttactivities2.jpg" alt="activities2" name="act2" id="act2" onmouseover="MM_swapImage('act2','','_images/buttactivities1.jpg',1)" onmouseout="MM_swapImgRestore()" /></a></td>
        <td width="150"><a href="dining.htm"><img src="_images/buttdining2.jpg" alt="dining2" name="dining2" id="dining2" onmouseover="MM_swapImage('dining2','','_images/buttdining1.jpg',1)" onmouseout="MM_swapImgRestore()" /></a></td>
        <td width="150"><a href="contact.htm"><img src="_images/buttcontacts2.jpg" alt="contact2" name="contact2" id="contact2" onmouseover="MM_swapImage('contact2','','_images/buttcontacts1.jpg',1)" onmouseout="MM_swapImgRestore()" /></a></td>
      </tr>
    </table>
    <!--Start of content1 table- height = 371-->
    <table id="content1" table width="1000" height="371">
      <tr>
        <td width="34"> </td>
        <td width="897"><p>blah blah blah.</p>
          <p class="center2">NEW: IN-CONDO WASHER & DRYER - COMPLETELY NEW FURNITURE</p></td>
        <td width="53"> </td>
      </tr>
    </table>
    </body>
    </html>

    I tried to assign a width in both the page and CSS and it still doesn't center.  Here is a link to the site and the CSS....
    http://taffyproductions.com/test/
    @charset "UTF-8";
    /* CSS Document */
    div, h1, h2, h3, h4, h5, h6, p, pre, address, blockquote, span, ul, ol, li, dl, dd, dt, ing {
              margin: 0px;
              padding: 0px;
    #wrapper{
              margin: 0, auto;
              background-color: #000;
    ul {
              list-style: none;
    table#content1{
              background-color: #00C;
              background-image: url(_images/content_bgrnd.png);
              background-repeat: no-repeat;
    font-size: 16px;
              font-family: Papyrus, Arial, "Helvetica Bold", serif;
              font-size: 22px;
              text-align: center;
              padding: 8px;
    table#imagegallery{
              background-image: url(_images/imageGallery_bckgrnd.png);
              background-repeat: no-repeat;
    #imagegallery a img{
        padding: 0px;
        margin: 2px;
        border: 2px solid #000;
    #imagegallery a:hover img {
              border: 2px solid #C00;
    table#footer{
              background-image: url(_images/footer_bckgrnd.png);
              background-repeat: no-repeat;

  • What is Wrong with My html-el:reset Tag?

    In my JSP, I used <html-el:form ...>, <htim-el:checkbox ...>, <html-el:hidden ... >, <html-el:submit ... > without any problem.
    But, I got Error 500:(class: org/apache/strutsel?taglib/html/ELResetTag, method: release signature: ?V) Illegal use of nonvirtual method call
    when I used:
    <html-el:reset accesskey="C">Clear</html-el:reset>And the reset button does not get displayed when I
    <html-el:reset>Clear</html-el:reset>Would anybody point out what is wrong with the way I used the reset tag? Thank you.

    In my JSP, I used <html-el:form ...>, <htim-el:checkbox ...>, <html-el:hidden ... >, <html-el:submit ... > without any problem.
    But, I got Error 500:(class: org/apache/strutsel?taglib/html/ELResetTag, method: release signature: ?V) Illegal use of nonvirtual method call
    when I used:
    <html-el:reset accesskey="C">Clear</html-el:reset>And the reset button does not get displayed when I
    <html-el:reset>Clear</html-el:reset>Would anybody point out what is wrong with the way I used the reset tag? Thank you.

  • What is wrong with my 2 month old Mac book pro retina?

    I bought a new 13 inch Mac book pro Retina at the end of May 2013. I have been to the apple store and called apple care several times. Now things are very bad. It would crash and give me a white screen every so often but over the last week things have gotten very bad. It will crash with the white screen, browsers and applications all close unexpectedly - it started with firefox then safari, then mail then face book, then adobe and finally iphoto and picassa. I did send in the reports. Also if I had a picture in i-photo my picassa program is set up to grab all pictures - recently any pictures that have been grabbed it says the files are corrupted. I keep having trouble with the air port utility in that it can't find the wireless network and or the time capsuel even though it can be wireless or plugged in by ethernet. I called  apple care and got this very nice tech guy and he tried many different fixes and said he thought the hard drive would need to be replaced so got an appointment to take my computer in. They ran two tests and said everything is fine with the computer it must be the software. So now I'm supposed to get apple care to help me try and save all my data on flash drives! Can't back it up on time capsuel cause he said it would just back up the problem. So this seems overwhelming and I'm so upset. Well, then I thought about it and my old mac book in which all the data and software was transferred from hasn't been erased as I was having so many issues I hadn't done that yet. So my question is if it was the software, wouldn't it be making my older mac book do the same thing? What is wrong with my New Computer? As of tonight, I can't even open anything it gives a quick flash of trying to open and closes so the computer is totally useless - so no idea how to get the data off that is most recent. Apple says they cannot help cause it is a software program but now I have a 2 month old computer whish is useless. Any thoughts?

    Call Apple and make a appointment.
    You have 3 months of care and up to 3 years with paid AppleCare, let them handle it and bring everything in.
    Good Luck

  • Does anybody know what is wrong with my java code?

    Does anybody know what is wrong with my java code?
    --------------------Configuration: <Default>--------------------
    stockApplet.java:47: cannot find symbol
    symbol : variable M_pointThread
    location: class StockApplet
    if (M_pointThread==null)
    ^
    stockApplet.java:49: cannot find symbol
    symbol : variable M_pointThread
    location: class StockApplet
    M_pointThread=new Thread(this);
    ^
    stockApplet.java:50: cannot find symbol
    symbol : variable M_pointThread
    location: class StockApplet
    THE CODE:
    import java.applet.*;
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    public class StockApplet extends java.applet.Applet implements Runnable
    int Move_Length=0,Move_Sum=0;
    String FileName,Name_Str,Content_Date;
    int SP[]=new int[2000];
    int KP[]=new int[2000];
    int JD[]=new int[2000];
    int JG[]=new int[2000];
    int Mid_Worth[]=new int[2000];
    String myDate[]=new String[2000];
    double CJL[]=new double[2000];
    double MaxCJL,MidCJL;
    Label label[]=new Label[10];
    int MaxWorth,MinWorth;
    int x_move0,x_move1,MaxLength=0;
    int x0,y0,X,Y,Record_Num;
    boolean Mouse_Move,Name_Change=true;
    int JX_Five1,JX_Five2,JX_Ten1,JX_Ten2;
    public void init()
    TextField text1=new TextField();
    Thread M_pointThread=null;
    setLayout(null);
    this.setBackground(Color.white);
    this.setForeground(Color.black);
    for(int i=1;i< 10;i++)
    label=new Label();
    this.add(label[i]);
    label[i].reshape(i*80-65,10,50,15);
    if(i==2){label[i].reshape(80,10,70,15);}
    if(i==7){label[i].reshape(510,10,80,15);}
    if(i >7){label[i].reshape((i-8)*490+45,380,70,15);}
    FileName="six";
    Name_Str="six";
    this.add(text1);
    text1.reshape(150,385,70,20);
    text1.getText();
    public void start()
    if (M_pointThread==null)
    M_pointThread=new Thread(this);
    M_pointThread.start();

    Welcome to the forum. I think that George123 has your problem and its solution well in hand. Follow his good advice and you will have solved this problem. One other thing though just for future reference. If you post your code, here, you are going to want someone to be able to read it easily. Please use code tags when posting next time and your code will be much easier on the eye. You can find out about them here:
    http://forum.java.sun.com/help.jspa?sec=formatting

  • JScrollPane, what is wrong with my code?

    Hi, I appreciated if you helped me(perhaps by trying it out yourself?)
    I wanted my JScrollPane to display what is drawn on my canvas (which may be large)by scrolling, but it says it doesn't need any vertical and horizontal scroll bars. Here is the code that has this effect
    import javax.swing.*;
    import java.awt.*;
    public class WhatsWrong extends JApplet{
    public void init(){
    Container appletCont = getContentPane();
    appletCont.setLayout(new BorderLayout());
    JPanel p = new JPanel();
    p.setLayout(new BorderLayout());
    p.add(new LargeCanvas(),BorderLayout.CENTER);
    int ver = ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
    int hor = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
    JScrollPane jsp = new JScrollPane(p,ver,hor);
    appletCont.add(jsp,BorderLayout.CENTER);
    class LargeCanvas extends Canvas{
    public LargeCanvas(){
    super();
    setBackground(Color.white);
    public void paint(Graphics g){
    g.drawRect(50,50,700,700);
    and the html code:
    <html>
    <body>
    <applet code="WhatsWrong" width = 300 height = 250>
    </applet>
    </body>
    </html>
    What shall I do?
    Thanks in advance.

    What is wrong with your code is that your class, LargeCanvas must implement the Scrollable interface in order to be scrolled by a JScrollPane.
    A comment regarding your use of Canvas and Swing components: The Java Tutorial recommends that you extend JPanel to do custom painting. Canvas is what they call a "heavyweight" component and they recommend not to mix lightweight (Swing) components and heavyweight components.
    There is a lot more information on custom painting on the Java Tutorial in the Lesson "Creating a GUI with Swing.

  • What is wrong with my battery?

    What is wrong with it? I have nothing open, other than this one app. It is only a month old, and Mountain Lion seems to have made it this way?
    http://i49.tinypic.com/28hkard.png
    Only 3:20 of battery life?

    1. If the computer is on, turn it off.
    2. Reset the power manager by simultaneously pressing and then releasing Shift-Control-Option-Power on the keyboard. Do not press the fn (Function) key while using this combination of keystrokes.
    3. Wait 5 seconds.
    4. Press the Power button to restart the computer.
    I followed these directions, but the computer turned on when I initially pressed the power button while holding Option, Shift, and Control, so I don't know if it worked properly or not. I'm currently letting my battery drain, though.

  • What is wrong with my nokia e72!!!???

    Hi I recently purchased the e72 it's really nice but it has so many problems! I am clueless on what to do! Can anyone help me please!
    1) My phone dose not upgrade each time it says it failed to install.
    2) When I select the ovi store application on my phone it just does not work.
    3) I go on the ovi store online and I try to download apps it either says the certificate I am getting is too old but I still accept it. And when I do accept to download it just fails.
    4) The gps is just not working every time I connect it to my pc it gives me this error saying i have to disconnect my phone enter maps quit maps and then connect my phone to the computer again. But it keeps giving me the same error and asking me to repeat the steps.
    5) And every time I try to do anything regarding nokia it keeps saying it is giving me a certificate that is out of date.
    Can someone please help me I really don’t know what is wrong with my phone I haven’t done anything to it it's the first time this has happened to me with any nokia device.

    Right on!! Am enjoying my Lumia 900 and looking foward to a 920 later on this year! I find the windowsphone os quick, clean & easy to use and the multi size live tiles ( 7.8 ) make the interface way more innovative & attractive than the dreary grid of icons of the bloated android & overpriced and overrated Ios! although I buy my phones for my own use & satisfaction whenever I use it in company the appearance always brings interest & positive comment. Windowsphone is a "young" os and will hopefully go on to get smarter & better. Yes the tight control that microsoft keep over it causes a few limitations - but if u can't live with that don't buy it! Presumably anyone buying a top range smartphone does at least a little research first! Personally im happy that there's no danger of my handset being killed by a virus, I bought a windowsphone coz having looked around - thats what I wanted and the only handset i'll swap my 900 for will be a 920!!

  • What is wrong with my iBook?

    I have a G4 1.xx ghz iBook. It's about 14 months old, and it just stopped working a few days ago.
    It no longer powers up. I can hear what sounds like the fan when I push the power button, but nothing happens. The display worked just fine right before this happened, but now the display doesn't even turn on when I click on the power. It doesn't even make the startup sound.
    I have to click on shift control alt and power to shut it down. It once started up normally since this happened, but it turned itself off after about 10 minutes.
    What is wrong with my iBook? I've been using Windows again in the past week or so at home, and I really hate it.
    Please provide me some suggestions...
    Is this the infamous logic board problem? I thought those would only occur on the G3.
    iBook G4   Mac OS X (10.4.7)  
    iBook G4   Mac OS X (10.4.7)  

    Now it's working just fine. I am using my iBook now.
    I thought that the Apple Care was only good for 12 months. I am on my 14th or 15th month of owning it.
    iBook G4   Mac OS X (10.4.8)  

  • Why is it when using my iPhone 4s front camera, the screen sometimes turn black or have blue stripes on it? What's wrong with it and what should I do?

    When using my iPhone 4s front camera, the screen sometimes become black or have blue stripes on it! Is this a hardware or software problem? Can this issue be covered by my warranty? I bought it inmid-december last year, and this problem came at around Late January. It's a rare case, only came about 5 times, but this really concerns me. What's wrong with it? Thank you so much for your concern.

    thank you for your reply
    I brought it to the store and they agreed to give me an exchange. thank goodness!
    I have a new question: I've now transferred my back up datas to my new iphone. They wanted me to register, so I registered (as my old apple ID) and then they asked if I want to restore backup, I did that too. after the restore back up process, the only things that aren't there were my music and apps! what should I do to get them into my new iPhone?

  • What's wrong with the XML output?

    I got an XML page in IE browser with XSQL Servlet&XSL. But its format is often disordered, for instance there are blank lines between two sequential tags, or the tags at the same level display from different start point. So the whole file seems fall into disorder!
    What's wrong with it?
    Are there some bugs in XSQL Servlet?
    null

    Would you send your XSL file and XSQL file?

Maybe you are looking for

  • How do I create an Oracle 10g offsite backup

    Total size of the datafiles that make up the tablespaces of the DB = 1532121.6875 Mb This size will eventually grow to about 6-7 terrabytes I used the following query to determine the above size: SELECT sum(bytes/1048576) FROM dba_extents; I saw this

  • How to Receive soap input parameter value in BPEL

    Hi Please provide the solution to receive the input parameter value from a soap call i.e. . invoking a BPEL process from a PL/SQL client and with input parameter value. Following Xpath expression does not work ,if a value is passed from SOAP input pa

  • Want to add online store into my pre-designed PHP website template

    Hi guys, I have designed my website in PHP and need to add an online store to my site. In the past I've used the WebAssist PayPal extension but ideally I am after something a bit more versatile and something that displays the user's shopping basket w

  • Converted videos not put in library

    I'm trying to convert some music videos for use on my iPhone using "Create iPod or iPhone version" and I've noticed that while the conversion works fine, the resulting files are not placed in my iTunes library -- they're filed away correctly in my li

  • F keys on mac for sound brightness etc...

    Hey everyone, i just upgraded from sonleopard to mountain lion on my second Mac and before i had the top F keys with the litle drawings to show what eachone does, and they wherent set up correctly. when i click the brighness or the sound up/down/mute