Incredible Device/Experience BUT A Few things i would change...

Please respond with some feedback:
1. The Ability to Highlight, Copy and Paste (Very Important on a PDA/SmartPhone)
2. No Recessed Headphone Jack (It should be compatible with any headphones or speaker system. (For example I am visiting my parents right now, and they have it set up so a line input can be readily accessed for iPod use, however i need to use an adaptor in order to make use of it because a standard size jack wont fit the iPhone.
3. Instead of YouTube.... How about iChat! Thats a novel concept.
4. The 'Keyboard' only works horizontally when in safari, but not for typing long texts or email message (Do you think that can be corrected in software update???)
Any Thoughts? Thanks for Reading Mine
MacBook Pro   Mac OS X (10.4.10)  

But You are not able to view your online buddies, So i can contact my friends through their phone, or even their AIM or iChat if they IM me first (Because im set up for Mobile IM) But you can see a list of Online Buddies (Meaning Buddies sitting at a computer) Your know what i mean?

Similar Messages

  • Web Browser.....Code is inside...but clarify few things!

    HI All,
    this is pilot ..sorry to bother u again but this time its kinda important
    here is my program for a web browser--
    now i wanna know a few things HyperlinkListener just not support javascript nor does it support flash ...thats 2 and i wanna know wht else restrictions that are in this simple browser....
    and can u tell me how can i make this browser more faster and i wanna add a JProgressBar to it and i have no clue...please help/
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JEditorPane;
    import javax.swing.JLabel;
    import java.io.IOException;
    import java.awt.GridBagLayout;
    import java.awt.GridBagConstraints;
    import java.awt.BorderLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.UIManager;
    import javax.swing.JEditorPane;
    import javax.swing.event.HyperlinkListener;
    import javax.swing.event.HyperlinkEvent;
    import javax.swing.JOptionPane;
    public class Browser implements ActionListener
         JTextField t1;
         JLabel l1;
         JButton b1;
         GridBagLayout gbl;
         GridBagConstraints gbc;
         JPanel p;
         JFrame frame;
         JScrollPane scrollPane;
         JEditorPane jep;
         static String initialPage;
    public Browser()
         //JFrame.setDefaultLookAndFeelDecorated(true);
         /*try
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
         catch(Exception e)
             e.printStackTrace();
         frame=new JFrame("Simple Web Browser");
         gbl=new GridBagLayout();
         gbc=new GridBagConstraints();
         p=new JPanel();
         p.setLayout(gbl);
         jep = new JEditorPane();
         t1=new JTextField();
         b1=new JButton("Check it out!");
         b1.addActionListener(this);
         frame.getRootPane().setDefaultButton(b1);
         l1=new JLabel("Address");
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.fill=GridBagConstraints.HORIZONTAL;
         gbc.gridx=0;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(l1,gbc);
         p.add(l1);
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.gridx=1;
         gbc.gridy=0;
         gbc.weightx=1.0;
         gbl.setConstraints(t1,gbc);
         p.add(t1);
         gbc.anchor=GridBagConstraints.NORTHWEST;
         gbc.gridx=2;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(b1,gbc);
         p.add(b1);
        scrollPane = new JScrollPane(jep);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(p,BorderLayout.NORTH);
         frame.getContentPane().add(scrollPane);
        frame.setSize(1000,700);
        frame.setVisible(true);
    public void actionPerformed(ActionEvent e)
              initialPage=t1.getText();
              char a=initialPage.charAt(0);
              char b=initialPage.charAt(1);
              char c=initialPage.charAt(2);
              char d=initialPage.charAt(3);
              char ea=initialPage.charAt(4);
              char f=initialPage.charAt(5);
              char g=initialPage.charAt(6);
              if((a=='h')&&(b=='t')&&(c=='t')&&(d=='p')&&(ea==':')&&(f=='/')&&(g=='/'))
                   initialPage=t1.getText();
              else
                   initialPage="http://"+initialPage;
              jep.setEditable(false);
              jep.addHyperlinkListener(new second(jep));
             try
               jep.setPage(initialPage);
             catch (IOException ae)
                JOptionPane.showMessageDialog(frame,new String("Error: "+ae));
    public static void main(String[] args)
              new SimpleWebBrowser();
    class second implements HyperlinkListener
      private JEditorPane pane;
      public second(JEditorPane pane)
        this.pane = pane;
    public void hyperlinkUpdate(HyperlinkEvent evt)
       if (evt.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
          try
           pane.setPage(evt.getURL());
         catch (Exception e){}
      }}}

    Broken Browser excuse me/...check this out ---> run it and tell me if the code is broken...
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JEditorPane;
    import javax.swing.JLabel;
    import java.io.IOException;
    import java.awt.GridBagLayout;
    import java.awt.GridBagConstraints;
    import java.awt.BorderLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.UIManager;
    import javax.swing.JEditorPane;
    import javax.swing.event.HyperlinkListener;
    import javax.swing.event.HyperlinkEvent;
    import javax.swing.JOptionPane;
    public class Browser implements ActionListener
         JTextField t1;
         JLabel l1;
         JButton b1;
         GridBagLayout gbl;
         GridBagConstraints gbc;
         JPanel p;
         JFrame frame;
         JScrollPane scrollPane;
         JEditorPane jep;
         static String initialPage;
    public Browser()
         //JFrame.setDefaultLookAndFeelDecorated(true);
         /*try
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
         catch(Exception e)
             e.printStackTrace();
         frame=new JFrame("Simple Web Browser");
         gbl=new GridBagLayout();
         gbc=new GridBagConstraints();
         p=new JPanel();
         p.setLayout(gbl);
         jep = new JEditorPane();
         t1=new JTextField();
         b1=new JButton("Check it out!");
         b1.addActionListener(this);
         frame.getRootPane().setDefaultButton(b1);
         l1=new JLabel("Address");
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.fill=GridBagConstraints.HORIZONTAL;
         gbc.gridx=0;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(l1,gbc);
         p.add(l1);
         gbc.anchor=GridBagConstraints.NORTHEAST;
         gbc.gridx=1;
         gbc.gridy=0;
         gbc.weightx=1.0;
         gbl.setConstraints(t1,gbc);
         p.add(t1);
         gbc.anchor=GridBagConstraints.NORTHWEST;
         gbc.gridx=2;
         gbc.gridy=0;
         gbc.weightx=0.0;
         gbl.setConstraints(b1,gbc);
         p.add(b1);
        scrollPane = new JScrollPane(jep);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(p,BorderLayout.NORTH);
         frame.getContentPane().add(scrollPane);
        frame.setSize(1000,700);
        frame.setVisible(true);
    public void actionPerformed(ActionEvent e)
              initialPage=t1.getText();
              char a=initialPage.charAt(0);
              char b=initialPage.charAt(1);
              char c=initialPage.charAt(2);
              char d=initialPage.charAt(3);
              char ea=initialPage.charAt(4);
              char f=initialPage.charAt(5);
              char g=initialPage.charAt(6);
              if((a=='h')&&(b=='t')&&(c=='t')&&(d=='p')&&(ea==':')&&(f=='/')&&(g=='/'))
                   initialPage=t1.getText();
              else
                   initialPage="http://"+initialPage;
              jep.setEditable(false);
              jep.addHyperlinkListener(new second(jep));
             try
               jep.setPage(initialPage);
             catch (IOException ae)
                JOptionPane.showMessageDialog(frame,new String("Error: "+ae));
    public static void main(String[] args)
              new Browser();
    class second implements HyperlinkListener
      private JEditorPane pane;
      public second(JEditorPane pane)
        this.pane = pane;
    public void hyperlinkUpdate(HyperlinkEvent evt)
       if (evt.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
          try
           pane.setPage(evt.getURL());
         catch (Exception e){}
      }}}

  • After upgrade to ios7, few time i am having problem with my sound/speaker with terroble sound effect like machine or something.but after restart it will be fine.but how this thing can be fix? Because i never had this problem before upgrade to ios7.tq

    After upgrade to ios7, few time i am having problem with my sound/speaker with terroble sound effect like machine or something.but after restart it will be fine.but how this thing can be fix? Because i never had this problem before upgrade to ios7.tq

    Try going into your settings and 'reset all settings'
    You will need to retweak your device but it's been said to help with sound issues.

  • My iphone 4s will not allow me to open any apps that I have downloaded. I have tried a few things but still will not allow me to open. Shows they are open once pushing the home button twice. Please help!

    My iphone 4s will not allow me to open applcations that I have downloaded. I have tried a few things but still will not allow me to open. Shows they are open once pushing the home button twice. Please help!

    Pressing the Home button twice does not show you what apps are running. It shows you what apps were recently used.
    Download a free app from the App Store. Once it downloads, your other apps should work properly again.

  • HT1296 i have a load of stuff on my ipad but I can't get it onto my conputer, pressing sync comes up with a message saying it will all be deleted. I've transferred all purchases but this only does the few things I've got from apple (apps and a few itunes)

    I own an ipad2 and have loads of music and vids/photos etc on it from an old pc.
    I just bought a new pc and wanted to transfer everything to the new pc
    I've transferred purchases but this only transfers things bought in the itunes store like apps and a few songs
    The rest of the content is still on my ipad.
    When I press sync, it warns that it will delete all the content on my ipad and replace with the few things I've managed to import.
    How do I transfer all the content to the new pc?

    Similar issues here.
    I purchased five movies for download and having nothing but problems getting them downloaded. I keep receiving error messages and the download stops and I have to restart it, just to get another minute worth of download with each restart. Now Apple has my money and I have nothing.

  • When i watch videos on my iphone 5 my wifi buffers the video and then halfway through it just stops and all wifi stops working on my device. i need to switch back off and on the wifi then it works but the same thing happens every time for videos.

    when i watch videos on my iphone 5 my wifi buffers the video and then halfway through it just stops and all wifi stops working on my device. i need to switch back off and on the wifi then it works but the same thing happens every time for videos. NOT A ROUTER PROBLEM. all my other apple devices dont have this problem

    iOS: Importing personal photos and videos from iOS devices to your computer
    iOS: Unable to import photos or device not recognized as a camera

  • I up dated to the ios 5 and lost a few things like photos and contacts but then went to a concert and took photos when i came home i restored from last back-up got my old pictures back but lost the new ones. Is there any way i can recover the new ones?

    i up dated to the ios 5 and lost a few things like photos and contacts but then went to a concert and took photos when i came home i restored from last back-up got my old pictures back but lost the new ones. Is there any way i can recover the new ones?

    Please please help me, if you know how.

  • My iphone 4s turns off and restarts after a few seconds or minutes to establish a FaceTime call. I've tried "Restore iPhone" but the same thing keeps happening. Any solution?

    My iphone 4s turns off and restarts itself a few seconds or minutes after when I establish a FaceTime call. I've tried "Restore iPhone" from iTunes but the same thing keeps happening. Any solution?

    Settings > General > Reset > Reset Network Settings
    Also, if this only happens with one Wi-Fi network, power cycle that Wi-Fi router.
    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order.

  • When i sync my phone/ipad it just continues to update so in the end (hours later) i have to eject manually, then turn my device off/on to get things back to normal, but it doesnt update my devices properly, please help team.

    When i sync my phone/ipad in itunes, it just continues to update so in the end (hours later) I have to eject manually, then turn my device off/on to get things back to normal, but it doesn't update my device properly, please help team.

    You don't have much choice, do you? You're either going to have to restore the software or take it to the Genius Bar to see about getting that button fixed.

  • TS1363 Error message for my ipod touch, ipad and Nano. they all say the same thing " there has been a device detected, but cannot be identified properly. please disconnect and re-connect ipod properly". i have done all it asks, and still nothing help.

    can anyone help me try to figure out whyall 3 of my devices jsut stopped beign acceptd on my itunes? ipod touch, nano 6th gen and ipad. none of them will be read on my itunes, yes i have uninstalled and re installed my itunes and plugged and unpluggd the devices and i have reset them numerous times. so what next?

    Doublechecking. In the course of your troubleshooting to date, have you worked through the following documents?
    iPod nano: Error message saying that iPod 'could not be identified properly'
    iOS: Device detected but not identified properly on iTunes for Windows

  • A few thoughts and experiences after a few hours using my new ThinkPad E440 with Win 8.1

    After waiting 36 days for my new ThinkPad to arrive, I guess I'm just "eh" about it after using it some. Here are some of my thoughts, opinions, and experiences I've had after using it for a few hours... Hope this helps other people.
    I should not be surprised because I read all the reviews, but the touch pad really sucks. I hate everything about it, the way it clicks - it's so loud and clunky! - and it's insensitivity (and I adjusted this to be more sensitive). Thank goodness for the track point. I love that thing.
    The touchscreen stopped working after a few hours of use. After I rebooted it came back. Is this a bad omen? Or did I inadvertantly turn it off? Is that even possible? I am new to Windows 8 so anything is possible.
    The touch screen, when it's working, is not very responsive. It's MUCH LESS responsive than my Samsung Galaxy Note 2 Android phone or my LG G Pad 8.3 tablet. This is very disappointing.
    I ran the hardware scan that is in the Lenovo Solution Center and got a warning under the category "Local Connection Test". I looked at the list of System Events and it's very long. The first application error event name is MpTelemetry. Response is "Not available". The next one is "PnPRequestAdditionalSoftware". Response is "Not available". And the list goes on and on and on for pages. I have no idea what to do about this or what it means.
    Also in the Lenovo Solution Center, under Software, there is a Critical Alert that says I never updated Windows. But I did when it prompted me to while it was first booting up and it was updating and installing things. Where it says "To update your operating system, you must run Windows Update", I click on the Launch button and it takes me to Windows Update where it says No Updates are Available. Go figure. It also says there have been 9 Windows updates made to the computer. I guess I'll have to just always ignore that Critical Alert.
    In the system tray, it says "ThinkPad OneLink Dock Detached!". I don't have a dock... So, yes, that's true, it is detached.   I'll have to hide that one.
    I realize there is a Lenovo Recovery Partition on the hard drive but I would really like to create a set of recovery disks before I start customizing this thing, installing apps, and moving my files over. I can't find anything that tells me how to do it. Under the control panel, there is the Recovery icon. The only choice there for creating recovery media is to create a Recovery Drive, not disks. I'll post a separate item to get information on this.
    On the positive side, I have had it in my lap the whole time and it's not gotten too hot for my legs. That's a big improvement on my old Toshiba Satellite Pro.
    This locating the Fn key to the left of the CTRL key decision must have been made by someone smoking crack. Why would anyone in their right mind want to do this? We've had the CTRL key on the outer left edge like, FOREVER, why move it now?? This will be something that will take me a long time to adjust to - if I ever do. I use the CTRL a lot for cutting, pasting, and formatting things in Excel and Word. It's going to be a battle. I wonder if any software exists that allows you to redefine the keys? Speaking of location of keys, I keep hitting the Page Down key when I want the Page Up key. I'm used to the Page Up key being above the Page Down key instead of to the left.
    After being told here in the forum that the fingerprint reader was not an option in the US I am pleasantly surprised to see one on my new ThinkPad.
    I use the right-click on my mouse often. For example, to open a link in a new tab instead of switching to the new URL. For some reason, when I click on the right part of the touch pad when the mouse is located over a link, it just opens the new URL instead of giving me options for opening the URL. I'll have to figure this out.
    So anyway, I guess that's more than a few things... hope this is useful to someone...

    You can change FN and CTRL key in the BIOS

  • I'm trying to sync my device to itunes. It keeps telling me to click the device button but for me it doesn't show up. I've already upgraded itunes. Also whenever I plug my device into the computer itunes never shows up. How do I make it do that? Thanks!

    I need help with a few things....
    1.) My ipod touch (5th gen) was doing what i believe was an ios7 update when i stopped it becuz it was taking forever. After that the screen just said connect to itunes. I've looked up how to fix it and i know it would work but there is a few things...I dont ever use my ipod for music. Just for apps and stuff and I have never connected it to itunes or anything. I need help making it so when i connect my ipod to the computer it starts syncing. But when I follow the directions for that, it says go to the device button and I dont have that option...Help!!
    2.) In all the help videos, it says to do the slide to turn off thing but my ipod never lets me!! It does turn off though.
    Theres a few other things. I need to know if this problem can be fixed if I can't find a way to fix the things i just said. Or if there is somebody that I can have repair it for me. Also if I have a warranty with Best Buy, I need to know if this could be covered. This was a gift from my boyfriend for Christmas and I  use it a lot. I don't wanna have to buy a new one especially if this isn't a problem that can't be fixed. Thank you guys so much!!

    Try to connect in recovery mode, explained in this article:
    iOS: Unable to update or restore
    Before that, back up your device, explained here:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    How to back up your data and set up as a new device
    You can check your warranty status here:
    https://selfsolve.apple.com/agreementWarrantyDynamic.do

  • After upgraded to version 5 few things missing..

    Hi,
    I am using blackberry curve 8520.. I have been using this for almost a year already. I noticed, there are few things missing and some problems occurred when I upgraded to version 5. Eg. Memopad, No column in option for alarm tones, my BB getting slower during browsing, everytime I try to connect to wi-fi, it will be intermittent or not connected.
    For unable to connect to wifi, I suspected it is browser issue but then I set to default setting it is still the same.
    Can somebody help me to rectify this please?
    Tq.
    Solved!
    Go to Solution.

    Memopad: 1. On your homescreen, press the Menu key > SHOW ALL, so that SHOW ALL is checked.
    2. Look in EACH folder on your device... Applications, Instant Messengers, Downloads, etc.
    If you still don't see it, look at Options > Advanced > Applications. Do you see it listed there?
    If still can't be found, read this link.
    Alarms tones? Can you elaborate?
    Slow or lagging device, please see below.
    i don't know about your WiFi issue, you would also need to elaborate your problem.
    To prevent freezing or lagging/slow response on any BlackBerry, the most important practice you can adopt is to be sure to CLOSE applications when you are finished using them.
    If you just hit the red "end call" key to go back to the home screen the application actually stays open and running in the background. If you do this repeatedly you will have lots of apps open and consequently your memory will get used up. Lack of memory is the biggest reason your BlackBerry slows to a crawl or locks up. If you get into the habit of actually using the menu key to close the applications this will at least slow down this memory-clogging process. You still may have to do a battery pull or use the "Quickpull" app once in a while when things get slow.
    To check what applications are running on your device in the background, press the Menu key then choose Switch Applications. You will see the icons of each application there.
    So now, check your applications running in the background. There are commonly four or five applications that will always be running (Messages, Call Logs/Phone, BlackBerry Messenger, Homescreen, and the Browser; there are other third party applications such as BeeJive, and BlackBerry Alerts which will also run in the background which you cannot close if you want them to operate). Make certain that the browser is NOT on an active webpage (open the browser and choose Menu > Close). Close any other applications that do not need to be running (the camera or a game you were playing or Google Maps).
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HT1349 My ipad screen has got locked. This is probably because a teenager tried to use the device in my absence. The passcode window appears when I try to restart the device. But, there is no response when I try to type in my code. How can I revive the de

    My ipad screen has got locked. This is probably because a teenager tried to use the device in my absence. The passcode screen appears when I restart  the device. But, does not respond to typing. How can I revive the device?
    The device was synced to icloud some time ago. The Laptop PC I normally use with the device is not with me now and is being formatted for a different reason.

    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    Saw this solution on another post about an iPad in a school enviroment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just cancelling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • I gave my brother my old iPad.  I reset it so it's like a new iPad. But, it is still in my iCloud tabs, not what he is doing, but the last thing i had open in Safari.

    I gave my brother my old iPad.  I reset it so it's like a new iPad. But, it is still in my iCloud tabs, not what he is doing, but the last thing i had open in Safari. When I went to iCloud.com and did the find my iPhone thing, it was still listed. But it couldn't find it. It's rather annoying to have it there all the time. How do I make it go away. I can't see a way to tell iCloud that that device is no longer mine.

    Wipe iPhone/iPad/iPod touch clean
    There are a few steps to do:
    Switch off iMessage in Settings > Messages
    Switch off FaceTime in Settings > FaceTime
    Delete iCloud in Settings > iCloud > Delete Account
    Finally Settings > General > Reset > Erase All Content and Settings.
    Un-register your device: https://supportprofile.apple.com
    Now you can sell/give.

Maybe you are looking for