Have a peek and tell me where my code is bad

There are two lines of text in particular that will not
justify. They are "Demonstration Video" and "New Products". I am
very new to DW so don't go too techie on me as I will not
understand a word of it.

I'm lost....
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
==================
"joeq" <[email protected]> wrote in message
news:gk90hf$1pg$[email protected]..
> what does the invalid code have to do with the webforum?
>
>
quote:
Originally posted by:
Newsgroup User
> It's about the invalid code found on your page. Do you
need help
> interpreting it?
>
> --
> 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
> ==================
>
>
> "Fishgriddle" <[email protected]> wrote
in message
> news:gk8prf$ngb$[email protected]..
> > What is this about?
>
>
>
>
>

Similar Messages

  • HT1414 omg phone frozen during sync, will not turn back on and itunes wants me to restore but unsure if all my precious photos etc have been saved and if so where they are?? I cannot turn phone back on its frozen with itunes icon picture on screen!! help

    omg phone frozen during sync, will not turn back on and itunes wants me to restore but unsure if all my precious photos etc have been saved and if so where they are?? I cannot turn phone back on its frozen with itunes icon picture on screen!! help

    Once the Device is asking to be Restored with iTunes... it is too late to save anything...
    To minimise loss... Connect to iTunes on the computer you Usually Sync with and Restore from the most recent Backup...
    http://support.apple.com/kb/HT1414
    Restore from Backup
    http://support.apple.com/kb/ht1766

  • HT1600 after the update, i have only computers and settings icon, Where are the others ? youtube etc.

    after the update, i have only computers and settings icon, Where are the others ? youtube etc.

    Welcome to the Apple Community.
    Check you have an internet connection and that you are using the correct iTunes store location setting.
    Try restarting the router.
    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Open iTunes.
    Select your Apple TV in the Source list, and then click Restore.

  • Can some body tell me where my code is going wrong

    I have been trying to print a jTextArea and have been having trouble. Can some body look at my code and tell me where I am going wrong please, Thank You.
    I have pasted the code below. P.S. I have only attempted to print the jTextArea I have not done anything else. The program was written in the hope that I could learn how to print a jTextArea and no other function in an aim to transfer the successful code to other applications that I enter information into the jTextArea.
    * print.java
    * Created on 05 August 2007, 23:34
    package my.print;
    * @author morgan
    import java.awt.print.*;
    public class print extends javax.swing.JFrame {
    /** Creates new form print */
    public print() {
    initComponents();
    /** This method is called from within the constructor to
    * initialize the form.
    * WARNING: Do NOT modify this code. The content of this method is
    * always regenerated by the Form Editor.
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents() {
    jScrollPane1 = new javax.swing.JScrollPane();
    jTextArea1 = new javax.swing.JTextArea();
    jButton1 = new javax.swing.JButton();
    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    jTextArea1.setColumns(20);
    jTextArea1.setRows(5);
    jScrollPane1.setViewportView(jTextArea1);
    jButton1.setText("jButton1");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton1ActionPerformed(evt);
    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGap(88, 88, 88)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
    .addComponent(jButton1)
    .addContainerGap(67, Short.MAX_VALUE))
    layout.setVerticalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGap(95, 95, 95)
    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addComponent(jButton1)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
    .addContainerGap(109, Short.MAX_VALUE))
    pack();
    }// </editor-fold>
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    try {
    jTextArea1.print();
    } catch (java.awt.print.PrinterException exc) { // ... }
    * @param args the command line arguments
    public static void main(String args[]){
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    new print().setVisible(true);
    // Variables declaration - do not modify
    private javax.swing.JButton jButton1;
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTextArea jTextArea1;
    // End of variables declaration
    }

    sorry i hope that this preserves the code.
    * print.java
    * Created on 05 August 2007, 23:34
    package my.print;
    * @author  morgan
    import java.awt.print.*;
    public class print extends javax.swing.JFrame {
        /** Creates new form print */
        public print() {
                initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
        private void initComponents() {
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jTextArea1.setColumns(20);
            jTextArea1.setRows(5);
            jScrollPane1.setViewportView(jTextArea1);
            jButton1.setText("jButton1");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(88, 88, 88)
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jButton1)
                    .addContainerGap(67, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(95, 95, 95)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jButton1)
                        .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addContainerGap(109, Short.MAX_VALUE))
            pack();
        }// </editor-fold>
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    try {
        jTextArea1.print();
    } catch (java.awt.print.PrinterException exc) { // ... }
         * @param args the command line arguments
        public static void main(String args[]){
            java.awt.EventQueue.invokeLater(new Runnable() {
                 public void run() {
                    new print().setVisible(true);
        // Variables declaration - do not modify
        private javax.swing.JButton jButton1;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JTextArea jTextArea1;
        // End of variables declaration
        }The preview looked correct. Thank you for the URL. I have been writting my program in netbeans 5.5.1. unfortunately it simplifies the code that you have to put in but at the same time it makes it difficult to follow code examples that are intended to develope the whole of the code from scratch. I have tried looking at the netbeans guidance documentation but find that it doesn't always work even when I follow the direct code for the demonstrations. Anyway thanks for the guidance and for getting back to me so soon.

  • I have a scanner and i get the error code:201 what does this mean?

    i have a scanner and i get the error code:201 what does this mean?

    More information needed for someone to help... please click below and provide the requested information
    -PPro Information FAQ http://forums.adobe.com/message/4200840

  • I am trying to reinstall my Quicktime 7 Pro  after cleaning out my MacBook OSX 10.5.8 following a hacking. I have Quicktime player and  reregistered with the registration code for Quicktime  7 pro and it seems to be successfully registered but not in Appl

    Hello everybody. I am trying to reinstall my Quicktime 7 Pro after having my MacBook OSX 10.5.8 cleaned out following a hacking. I have Quicktime player and I reregistered with the purchased registration code for Quicktime 7 pro. It seems to be successfully registered with "Quicktime 7 Pro" appearing under the inserted registration code but it is not showing in Applications folder and I do not know how to access it or what to do. Thanks for reading this. I hope you can help me. Aidan from Dublin, Ireland.

    Inapplicable advice removed; misread the OS version.

  • I have an iMac running system 10.10.3.  I would like to use an external hard drive to save all my iMovie projects.  How do I transfer the files and tell iMovie where to find them?

    How can I move all my iMovie projects to an external hard drive and save all future projects to that same drive without constantly getting the 'can't find files' statement?  I am using iMovie 10.0.7,

    Have a look at the help files on this at:  http://help.apple.com/imovie/mac/10.0.8/#/mov3fa25bae7
    You can have multiple libraries if you want and save them anywhere.
    Geoff.

  • When I download something, the download box never has anything in it after downloading, so I cant open the item up from the download box, I have to go and find it where I downloaded it

    I have firefox on my work and home computers - at the work on, I have a list of documents listed in my downloads box which I can access directly - great - on my home computer it shows while downloading, however as soon as it has finished downloading the box goes empty, I then have to minimise everything and find the downloaded item.

    See:
    * https://support.mozilla.com/en-US/kb/Unable%20to%20download%20or%20save%20files#w_choose-a-different-download-folder

  • Someone have a look and tell me my mistake

    Ok so im creating a website and im basically using this for a
    CSS style for the background image:
    <style type="text/css">
    <!--
    body {
    background-image:url(images/background.jpg);
    background-attachment: fixed;
    background-color: #fff000;
    background-repeat:no-repeat
    The point of it is to stop the image from scrolling down with
    the text which does work, however, using photoshop CS3 ive created
    a gradiant background image (Which can be found
    Here
    and instead of making a huge background image on photoshop ive used
    the last bit of color in the gradiant (which is #fff000) to fill
    out the rest of the page, However the start of the gradiant itself
    in the image seens to be repating on the far right of the page. Ive
    racked my brains from 2am till 4am last night to fix this problem
    and no joy/ Even Joesph Lowery's book couldnt help me :( So i was
    wondering if anyone had any ideas for me?

    Would make no difference. While it's always a good practice
    to end your
    terminal style declarations with a semi-colon, it's not
    required. If you
    are interested, check the extensive discussion to a thread by
    the same
    originaly poster on the DW general forum. That's why we
    suggest that you
    not post the same thread on multiple forums.
    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
    ==================
    "mac-in-the-mountains" <[email protected]>
    wrote in message
    news:gplkcf$iog$[email protected]..
    > I'm no expert but it looks like you are missing a semi
    colon from the last
    > line.
    >
    > background-repeat:no-repeat;

  • Can someone tell me where my code is going wrong

    Hi I am trying to save the information in a jtextfield and then reopen that data at a later date in the same jtextfield. I have put the code in and it runs but when I try to save the jtextfield it does not create a file so when I try to reopen it there is no file to open as none was made, but i can get the save filechooser and open filechooser to open just not do what I want them to.
    Thanks the Lord of the realm.
    * NewJFrame.java
    * Created on 10 November 2007, 20:03
    package javaapplication56;
    import java.awt.Component;
    import java.io.File;
    import javax.swing.JFileChooser;
    * @author  morgan
    public class NewJFrame extends javax.swing.JFrame {
        /** Creates new form NewJFrame */
        public NewJFrame() {
            initComponents();
        //Create a file chooser
    final JFileChooser fc = new JFileChooser();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            jTextField1 = new javax.swing.JTextField();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            jButton2 = new javax.swing.JButton();
            jButton4 = new javax.swing.JButton();
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jTextArea1.setColumns(20);
            jTextArea1.setRows(5);
            jScrollPane1.setViewportView(jTextArea1);
            jButton2.setText("calculate");
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
            jButton4.setText("OPEN");
            jButton4.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton4ActionPerformed(evt);
            jButton1.setText("SAVE");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addGap(80, 80, 80)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 87, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 52, Short.MAX_VALUE)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
                            .addComponent(jButton4, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                            .addComponent(jButton2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
                        .addComponent(jButton1))
                    .addGap(27, 27, 27))
            layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {jButton1, jButton2, jButton4});
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addGap(30, 30, 30)
                            .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addGap(54, 54, 54)
                            .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(layout.createSequentialGroup()
                            .addGap(49, 49, 49)
                            .addComponent(jButton2)
                            .addGap(46, 46, 46)
                            .addComponent(jButton4)
                            .addGap(20, 20, 20)
                            .addComponent(jButton1)))
                    .addContainerGap(100, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    JFileChooser jfc = new JFileChooser(new File(jTextField1.getText()));
        if (evt.getSource() == jButton1) {
                int returnVal = jfc.showSaveDialog(this);
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                    File file = jfc.getSelectedFile();
        private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {                                        
          if (evt.getSource() == jButton4) {
            int returnVal = fc.showOpenDialog(NewJFrame.this);
            if (returnVal == JFileChooser.APPROVE_OPTION) {
                File file = fc.getSelectedFile();
                //This is where a real application would open the file.
                append("Opening: " + file.getName() + "." + newline);
            } else {
                append("Open command cancelled by user." + newline);
        private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    float num1, result;
        num1 = Float.parseFloat(jTextField1.getText());
              result = num1;
                     jTextArea1.setText(String.valueOf(result));
        private String newline;
        private Object aComponent;
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NewJFrame().setVisible(true);
        private void append(String string) {
            throw new UnsupportedOperationException("Not yet implemented");
        // Variables declaration - do not modify                    
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JButton jButton4;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JTextArea jTextArea1;
        private javax.swing.JTextField jTextField1;
        // End of variables declaration                  
    }Edited by: Reg_Dwight on Dec 19, 2007 5:10 PM

    Reg_Dwight wrote:
    please can you be more specific I am new at filechoosers and I am unsure of you reply although I am grateful for it though.I can see you are using an IDE. I agree, it looks so easy but the code under an IDE-generated GUI can be so complicated.
    I'm no expert, but I can tell you that I started with java.io.File, java.io.PrintWriter, and java.util.Scanner for simple I/O. It's only now that I am hard-coding GUI components even though I use an IDE.
    My unsolicited advice is to run through those three classes first, preferably as book topics, so that you can get a feel for file I/O.

  • Looking for the names of these editing techniques and a place where I can learn to do them...

    Hi Everyone,
    Currently I am using adobe cs4 and I have a video which uses some transitional editing techniques which I would like to use in a short that I want to create... I would be grateful if someone could look at the sections of the clip, tell me the name of the tansitional editing techniques, and tell me where I could find a lesson teaching me how to do it please...
    1. 0:01 - 0:02 - where the transition goes from the title card to the building... specifically what type of transition is this called and how can I find a lesson for it... how is the flash achieved where building seems to luminate briefly... and how is the color of the building achieved and where can I learn how to do this....
    2. 0:06 - 0:09 - what is the name of the technique for the pictures passing over each other and where can I learn to do this...
    3. 0:10 - 0:15 What is the name of the technique for the picture gradually moving from the background to the foregraound and where can I learn this...
    4. 0:16- 0:18 What is the name for the technique for the two pictures blending with the title and where can I learn to do this...
    5  0:50 - 1:00 What is the name of the technique for getting the circlular shadowed spot light to appear on the beige background and where can I learn this
    http://www.youtube.com/watch?v=l01murqKzjo&feature=relmfu
    Thanks for your help...
    John

    I don't know, but here are some Tutorial links
    http://forums.adobe.com/thread/913334
    http://forums.adobe.com/thread/845731
    -and http://forums.adobe.com/message/3234794
    Encore http://tv.adobe.com/show/learn-encore-cs4/
    A "crash course" http://forums.adobe.com/thread/761834
    A Video Primer for Premiere http://forums.adobe.com/thread/498251
    Premiere Tutorials http://forums.adobe.com/thread/424009
    CS5 Premiere Pro Tutorials http://forums.adobe.com/message/2738611
    And http://blogs.adobe.com/premiereprotraining/2010/06/video_tutorials_didacticiels_t.html
    And http://blogs.adobe.com/premiereprotraining/2010/06/how_to_search_for_premiere_pro.html
    CS5 Tutorials http://bellunevideo.com/tutlist.php
    PPro Wiki http://premierepro.wikia.com/wiki/Adobe_Premiere_Pro_Wiki
    Tutorial http://www.tutorialized.com/tutorials/Premiere/1
    Tutorial http://www.dvxuser.com/V6/forumdisplay.php?f=21
    Tutorial HD to SD w/CS4 http://bellunevideo.com/tutorials/CS4_HD2SD/CS4_HD2SD.html
    Premiere Pro Wiki http://premierepro.wikia.com/wiki/Main_Page
    Exporting to DVD http://help.adobe.com/en_US/premierepro/cs/using/WS3E252E59-6BE5-4668-A12E-4ED0348C3FDBa.h tml
    And http://help.adobe.com/en_US/premierepro/cs/using/WSCDE15B03-1236-483f-BBD4-263E77B445B9.ht ml
    Color correction http://forums.adobe.com/thread/892861
    Photo Scaling for Video http://forums.adobe.com/thread/450798
    -Too Large = Crash http://forums.adobe.com/thread/879967
    After Effects Tutorials http://www.videocopilot.net/
    Authoring http://www.videocopilot.net/tutorials/dvd_authoring/
    Encore Tutorial http://www.precomposed.com/blog/2009/05/encore-tutorial/
    And more Encore http://library.creativecow.net/articles/devis_andrew/
    Surround Sound http://forums.adobe.com/thread/517372

  • Where in gods name is the homesharing button, I see a little cloud that you cannot click on and tells you what account you have but thats is. There's an option for turning on and off homesharing, but no button to access the actual library of the other PC

    Where in god’s name is the homesharing button, I see a little cloud that you cannot click on and tells you what account you have but that's it. There's an option for turning on and off homesharing, but no button to access the actual library of the other PC. On either PCs. Both are logged in and both are registered for homesharing. however because apple keeps updating and moving things around for no reason there appears to be no way of accessing the homsharing button in the latest version of itunes. the website refers to " Once set up, all the libraries from your computers you've enabled Home Sharing on will show up in the SHARED area of iTunes:" well I have searched all over in the recent itunes versions and there is no "shared area" to be found.
    Please find the attachment of a screen cap of my itunes.
    If anyone can help by telling me where it has been moved to or if it even still exists that would be much appreciated.

    Welcome to the Apple Community.

  • Can anyone tell me where to send my i phone to for repair?? I have paid by card on this site but been given no details as to what address it is to be sent . i am not a computer whizz but not an idiot either and i am becoming more and more frustrated !!!!!

    Can anyone tell me where to send my i phone to for repair?? I have paid by card on this site but been given no details as to what address it is to be sent . I am not a computer whizz but not an idiot either and i am becoming more and more frustrated !!!!!

    Yes, AppleCare can tell you.  Below is the number for AppleCare in the US. 
    1-800-APL-CARE *
    1-800-275-2273
    Hours of Operation: 7 days a week from 5am - 8pm Pacific time.
    If you live outside the US, additional contact information can be found at this link.
    http://support.apple.com/kb/he57

  • I have set up folders to file my emails on iCloud but notice that some of the emails are missing. Can anyone tell me where they are and how to get them back.

    I have set up folders on iCloud to file my mail but notice that some of the emails are missing when I've transferred them. Can anyone tell me where they are and how to get them back please?

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • I have ilife 09 preinstalled on my mac and im downloading guitar lessons from the lesson store but lesson number 1 isnt there. can anyone tell me where i could get it?

    I have ilife 09 preinstalled on my mac and im downloading guitar lessons from the lesson store but lesson number 1 isnt there. can anyone tell me where i could get it?

    You might profit from a visit to a Minneapolis Apple store. With a brand new Mac, I think they will be most helpful - not just with transferring files, but with other advice as well. And I strongly recommend you invest in a back up drive. The Apple folk can help with that as well.

Maybe you are looking for

  • Appointments don't show up in monthly view

    My iCal program has been having all sorts of problems recently. Right now, when I open the program, the monthly view shows but none of my appointments are visible. They only show up if I go to daily or weekly view and then return to the monthly view.

  • Start-up issue HELP ME PLEASE! ASAP

    At start up computer goes to blue screen that says: Esc=boot menu> F1=Setup>F10=system recovery> Than immediately goes to a black screen that says: Reboot and select proper Boot device Or insert Boot Media in selected Boot device and press a key_ I p

  • Downloaded ringtone doesn't show

    Having downloaded a ringtone from the app store to my computer, and having converted it to the right format, I cannot get it to appear on my iphone as a ringtone, although it does appear on the list of music on the iphone

  • Unable to Unlock Files

    We are implementing inCopy/inDesign at our publishing house, and have hit our first major snag. We can check documents out from our designers, in the assignment system, but when we try to check them back in, we are gettng a "can't unlock" error messa

  • Firefox 14 keeps crashing upon loading. Maybe sticks open for 10 seconds, but without any functionality. Then closes and asks me to restart or close.

    I have tried reinstalling, opening it in safe mode with add-ons disabled as well.. I don't get anything from the crash reports either, as it wont allow me to see it. I have tried everything that I possible could think about.. I'm lost on this one.