Possible to write into the Calendar direct on the Ipod Touch?

Hello I have an old version of teh Ipod Touch I cant write directly into the Calendar from my Ipod Touch am I suppose to be able to do that? It would be very convinient if I could and a very stupid design if its not possible.
Please let me know if its my ipod touch that is faulty or maybe i am doing something wrong.
Cheers

Yeah, v1.1.2 can do that, as well as v1.1.3

Similar Messages

  • Photos into the iPod Touch

    I searched the posts and everything I have found seems to be regarding the same problem but using Windows....
    I am trying to upload photos onto my touch. Whenever I try to upload a picture I get the error saying something like "this photo is not viewable on this iPod". I know that is not the exact message but it is something along those lines.
    Any suggestions on what I should do? I sized the pictures down to 320x240, and they are named something like "IMG_804.jpg" minus the quotations of course...
    Thanks

    Thanks for the reply.
    I resized the photos using GraphicConverter. The only reason I did resize them is the original photos are large and I don’t want to take up that much space on my iPod.
    I should probably mention this as well: I have not tried Syncing the photos I want onto the iPod. I use my iPod on two computers and I don’t want the iPod to be Synced with just one of them. I have added everything else by just dropping it into the iPod via iTunes and that has worked fine for the movies, music, and podcasts. It recognizes the photos that I am trying to drop into it just like the other media but then the error pops up.
    Not that it matters but the exact error that I get is:
    “Some of the files, including “IMG_0874,JPG” were not copied to the iPod “Touch” because they cannot be played on this iPod”.
    Thanks again.

  • I now have I cloud on my PC and the iPod touch and it won't download the addresses into the iPod touch, please tell me why? many thanks for ur help in advance, Charlotte m

    I just downloaded I cloud onto my computer and its on the iPod touch already, the contacts won't sync, would someone tell me why, it should happen? many thanks, Charlotte m

    First import the card contacts into Gmail. Google for:
    import xx contacts into gmail
    where xx is the form of contacts you have
    See the following for syncing gmail contacts to your iPod:
    http://techcrunch.com/2012/09/27/google-introduces-an-easier-way-to-sync-gmail-c ontacts-to-your-iphone/

  • HT2305 how do you download the IOS 4.1 into the ipod touch ?

    how do u download the IOS 4.1 for the ipod touch ?

    By connecting the iPod to its syncing computer amd going to the Suumary pane for the iPod in iTunes and clicking on update.
    If you have the latest iTunes (10.5.x) yu can update as follows:
    - 1G i (original iPod touch: 2.1.2. To get the last update for the 1G you go:
    Purchasing iOS 3.1 Software Update for iPod touch (1st generation)
    - 2G goes to 4.2.1
    - 3G and 4G to 5.0.1
    To identify your iPod:
    Identifying iPod models

  • Is it possible to write into the clipboard with HTML flavor ?

    Hello,
    Last week I already posted this question in the awt abstract  forum, but since nobody answered, I guess it was not the right place. Thanks for any suggestions or comments
    I'm having a problem with the code below. Here is the scenario I wish to perform :
    1. Display a web page with my favorite navigator
    2. Select a few lines from this page and copy this area to the clipboard (CTL-C)
    3. When doing CTL-V (move) in a JTextPane, I intercept this action, to manipulate the data ( method clearClipBoard)
    4. This method does the following
    a) read the clipboard get the result into a String (this works fine).
    b) loop on this String to find occurrences of a particular word, and suppress the line containing this word.
    c) re-write the new String into the clipboard.
    This works pretty well when having the JTextPane with a RTF EditorKit. But it does not work with an HTMLEditorKit.
    I guess there is something wrong with DataFlavors, but I don't know how to set the DataFlavor to a text/html mime when writting the data back.
    When testing the authorized DataFlavor, none "text/html" mimes appear and of course I get an exception for the one I'm trying to use.
    Therefore the data is just a continuous string displayed in the JTextPane with all html tags visible instead of having formated data
    I did a lot of tries, but I failed. below is a piece of code I'm using.
    Thanks a lot, for any suggestions<
    Gégé
    private void clearClipboard()
      String      str     =      null,
                   result =      null;
    DataFlavor           flv          =      null;
    StringWriter             sw           =     null;
    try
         flv = new DataFlavor("text/html;charset=unicode;class=java.lang.String" );
         result= readClipBoard(flv );    //  This works fine
         sw = new StringWriter();       
         BufferedReader buffreader = new BufferedReader( new StringReader(result));
         BufferedWriter buffwriter = new BufferedWriter(sw);
         while ((str = buffreader.readLine()) != null)
            if (str.length() <= 0) continue;
            str=str.trim();                            
            String wk = "";
            while (true)
               //  re-create the string...... into str.  then break;     
            buffwriter.write(str);
      buffwriter.close();
    catch(Exception e) { e.printStackTrace();}
    writeClipBoard(sw.toString(),flv);      // on écrit dans le clipboad
    public static void  writeClipBoard(String s, DataFlavor flavor)
       try
          java.awt.datatransfer.Clipboard  clipboard = 
                            java.awt.Toolkit.getDefaultToolkit().getSystemClipboard();
          java.awt.datatransfer.Transferable transferable =
                       new java.awt.datatransfer.StringSelection(s);
          //  DataFlavor[] flv = transferable.getTransferDataFlavors();
          //   for (int i=0; i<flv.length; i++) System.out.println(flv.toString());
    // The Dataflavor I'm using is not in the flv table and
    // of course it raises an exception.
    transferable.getTransferData(flavor);
    clipboard.setContents(transferable, null);
    catch (Exception ex) {System.out.println( ex.toString());}

    Stanislav, I'm back with my complete test code.
    In fact, rather than modifying anything, I wrote this sample to just read the clipboard and write it back (without any change).
    1) First, you may test it without entering my code (that's the default) . Just start my sample.
    2) Go to your favorite Web browser. Select a few lines, and (copy to clipboard)
    3) Go to the application and "Paste" I works fine
    4) Then if you go to the initialize method, and please, uncomment the instruction where I'm defining the KeyListener (at the end of the method).
    5) Restart the application and redo the same. It does not work.
    In the list of flavors that I have printed (I got only 2 valid flavors, I tested both, without any success. I even try to set the flavor to null (got an exception of course).
    Thanks again to your help. I hope my English is not too bad, to make you understand.
    Gege
    package test;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.event.ActionListener;
    import java.awt.event.KeyListener;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.StringReader;
    import java.io.StringWriter;
    import javax.swing.text.html.HTMLEditorKit;
    public class TestTextPane extends javax.swing.JFrame implements KeyListener, ActionListener
         private static final long serialVersionUID = 1L;
         private final javax.swing.JTextPane myTextPane =   new javax.swing.JTextPane();
         private final javax.swing.JPanel frameContentPane = new javax.swing.JPanel();
         private final javax.swing.JButton  Terminer = new javax.swing.JButton();
         public TestTextPane() {
              super();
              initialize();
          public void actionPerformed(java.awt.event.ActionEvent e)
               System.exit(0);
        public static void clearClipboard()
             String      str          =      null,
                       result      =      null;
                        DataFlavor           flv          =      null;
                       StringWriter      sw           =     null;
             try
                  flv = new DataFlavor("text/html;charset=unicode;class=java.lang.String" );
                  result=  readClipBoard(flv );    // get clipboard content
                  sw = new StringWriter();       
                  BufferedReader buffreader = new BufferedReader( new StringReader(result));
                  BufferedWriter buffwriter = new BufferedWriter(sw);
                  while ((str = buffreader.readLine()) != null)
                       //  I re-write without processing     to see what's happening     
                       System.out.println(str);
                       buffwriter.write(str);
                  buffwriter.close();
             catch(Exception e) { e.printStackTrace();}
             writeClipBoard(sw.toString(),flv); // on écrit dans le clipboad
         public static void writeClipBoard(String s, DataFlavor flavor)
         try
                // flavor= new DataFlavor("application/x-java-serialized-object;class=java.lang.String");
              java.awt.datatransfer.Clipboard  clipboard = 
                        java.awt.Toolkit.getDefaultToolkit().getSystemClipboard();
              java.awt.datatransfer.Transferable transferable =
                        new java.awt.datatransfer.StringSelection(s);
              DataFlavor[] flv = transferable.getTransferDataFlavors();
              for (int i=0; i<flv.length; i++) System.out.println(flv.toString());
              transferable.getTransferData(flavor);
              clipboard.setContents(transferable, null);
         catch (Exception ex) {System.out.println( ex.toString());}
    public void FrameCenter( )
         java.awt.Dimension fenetre = this.getSize();
         int sizex = fenetre.width, sizey = fenetre.height;
         java.awt.Dimension screen = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
              setBounds((screen.width - sizex) / 2,(screen.height - sizey) / 2, sizex, sizey);
    private void initialize()
              setName("TestTextPane");
              setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
              setSize(557, 451);
              myTextPane.setName("myTextPane");
              myTextPane.setBounds(23, 18, 513, 307);
              Terminer.setName("Terminer");
              Terminer.setText("Finish");
              Terminer.setBounds(230, 370, 101, 25);
              frameContentPane.setName("myFrame");
              frameContentPane.setLayout(null);
              frameContentPane.add(myTextPane, myTextPane.getName());
              frameContentPane.add(Terminer, Terminer.getName());
              setContentPane( frameContentPane);
              Terminer.addActionListener(this);
              FrameCenter( );
              HTMLEditorKit htmlKit = new HTMLEditorKit();
              myTextPane.setEditorKit(htmlKit);
              myTextPane.setEditable(true);
              myTextPane.setText("Hello. Clipbard contains should be appended below" );
              // myTextPane.addKeyListener(this); // to be uncommented to trap clipboard events
    this.setVisible(true);
         public void keyPressed(java.awt.event.KeyEvent ke)
              if (ke.getKeyCode() == java.awt.event.KeyEvent.VK_V)
                   int i = ke.getModifiers();
                   if ( (i & java.awt.event.InputEvent.CTRL_MASK) == java.awt.event.InputEvent.CTRL_MASK)      {clearClipboard();}
         public void keyReleased(java.awt.event.KeyEvent ke){}
         public void keyTyped(java.awt.event.KeyEvent ke){}
         public static String readClipBoard(DataFlavor type)
              java.awt.datatransfer.Transferable contents = java.awt.Toolkit.getDefaultToolkit().getSystemClipboard().getContents(null);
              if (! contents.isDataFlavorSupported(type) ) return null;
              if ((contents != null) && contents.isDataFlavorSupported(type))
                   try
                        return (String) contents.getTransferData(type);
                   catch (java.awt.datatransfer.UnsupportedFlavorException ex){return  ex.toString();     }
                   catch (java.io.IOException ex)      {return  ex.toString();     }
              else return "";
         public static void main(java.lang.String[] args) {
              new TestTextPane();

  • How do I get an app into the ipod touch?

    I downloaded the ibooks app and it's in my itunes application library. I've synched several times, but the application is not being installed on my ipod touch (2nd generation, ios4.2). What do I need to do to get this installed?

    In the Apps pane for the iPod in iTunes do  you have the iBooks app checked so it will sync to the iPod?
    Yu can also redownload the app directly to the iPod via the Store app.

  • Audio on the iPod Touch Hissing.

    Hey Guys & Gals
    Has anybody else noticed that when they plug in their headphones into the iPod Touch that they start to hear a continuos hissing sound.
    This then also becomes apparent during some songs.
    Try it by putting in your headphones whilst they are not plugged in... then plugging them in. Do this is a silent environment and you may notice the issue.
    Is this something that apple knows about and can solve in a future update?
    Many thanks,
    Ecko

    Put me in this boat, too. I'm on my THIRD touch, the first one had 4 dead pixels, and the second one had a terrible hissing problem (really noticeable with good quality headphones, which are sold directly as a recommended accessory BY Apple). I've just spent 30 minutes on hold with Apple and they said they'll "Look into it."
    I"ve tried three different pairs of headphones with two different iPod touches, and both iPods and all headphones exhibited this really annoying hissing problem.
    Apple really needs to fix this. This is in-excuseable for a $400 music player.

  • Will the iPod Touch 5th generation have GPS?

    I think this would be a very useful feature, for exercise tracking, etc. and maps can be preloaded into the iPod Touches memory. GPS on th eiPod Touch would add value.

    There has been no announcement about any ipod touch 5the gen.
    From the terms of use of this forum:
    "do not add Submissions about nontechnical topics, including:
    Speculations or rumors about unannounced products."

  • Is it possible to login into the Java instance without password's input, using only my Windows workstation authorization?

    Dear Sirs,
    I try to do an authorization to my NW 7.3 Java instance through my Windows domain authorization.
    I done:
    1) Create connection to LDAP-server and tested it.
    2) Add windows domain certificate to TrustedCAs
    3) Configure SPnego
    Now, I can to login in my NW7.3 Java instance with my windows password, but however I must to input password when I open NW7.3 Java homepage.
    Is it possible to login into the Java instance without password's input, using my windows workstation login/password?
    What I have to do for that?
    I use Windows XP on my workstation and IE 8.0.6 & Chrome 38.0.2125.
    Best regards,
    Alexey Lugovskoy

    Please check
    Using Kerberos Authentication on SAP NetWeaver AS Java - User Authentication and Single Sign-On - SAP Library (NW7.3)
    Using Kerberos Authentication for Single Sign-On - User Authentication and Single Sign-On - SAP Library (NW7.0)

  • Is it possible to rate songs directly on the iPod touch?

    Is it possible to rate songs directly on the iPod touch?
    Also, is it possible to rate videos directly on the iTouch?

    Hi jackhowson,
    As Micromen said, you can rate songs directly on your iPod Touch.
    However with videos, currently you can't! You'll have to rate them on your computer. If you would like to ask Apple this feature, click [Name|http://www.apple.com/feedback/ipodtouch.html] and fill out the form.

  • Is it possible to get into the IC using the SALESPRO business role?

    Is it possible to get into the Interaction centre when using the SALESPRO business role?.
    If so, how is this done.
    I know using specific IC* business roles, like IC_AGENT, you are thrown straight into the IC, but I can't see how you can get into it via the SALESPRO business role, which I assume you should be able to do.
    Jason

    Please check
    Using Kerberos Authentication on SAP NetWeaver AS Java - User Authentication and Single Sign-On - SAP Library (NW7.3)
    Using Kerberos Authentication for Single Sign-On - User Authentication and Single Sign-On - SAP Library (NW7.0)

  • I am making a photobook through iPhoto for my Guest Book for guests to sign at my wedding.  I was wondering if it's possible to write on the paper used in the book with ink?  With some photopaper this isn't possible.

    I am making a photobook through iPhoto for my Guest Book for guests to sign at my wedding.  I was wondering if it's possible to write on the paper used in the book with ink?  With some photopaper this isn't possible

    It certainly woujld depend on the pen used - the paper specs are here
    LN

  • The contacts and calendar data on my iPod touch will not sync with my Mac

    I have a 2nd generation ipod touch, and an iMac running iTunes 8.2.1.
    I have been away from my mac for a few months and have entered a lot of contact and calendar info into my ipod touch.
    Now, when I try to sync the contacts and calendar data on my ipod touch with my mac, the data will not sync to my mac.
    Similarly, for the last couple months, the contact and calendar data on my ipod touch has not been able to sync with my mobileme account.
    I cannot afford to lose the contact and calendar data on my ipod touch.
    Can anyone kindly inform me how to fix this syncing problem without losing such data?

    DGKSA wrote:
    I ended up entering the data onto my Mac, then nuking my iPod touch with a restore.
    So, there is no need to respond to my question.
    You can also mark your post as "solved" if you solved your problem on your own.
    Only the original topic poster has the option to mark replies as either Helpful or Solved or to not mark a reply at all. The originator can also end the discussion by marking the topic as "answered," which displays a green star at the top of the topic page to let everyone know that the topic contains valid helpful information.
    copied from "Terms of Use"

  • Is it possible to have the battery charge percent also on the iPod Touch?

    Hi all.
    I'm new here.
    I've noticed that on the iPod Touch (4G and 5G) there isn't the option to show the Battery level in % (percentual) format on the top bar.
    Is it possible to integrate it with a iOS upgrade?
    If it is impossible: why?
    I don't know how to contact Apple directly... so I've joined the community.
    In my opinion iPod Touch is a very good product (as all Apple's products)... but I don't understand these differences with iPhone.
    Thanks in advance,
    Massimiliano

    You can NOT turn on percentage on the iPod for what ever reason.
    Here is the feed back page:
    http://www.apple.com/feedback/

  • Is it possible to Synchronise the windows média library with the iPod touch ?

    I 'm trying to transfer the player list of the Windows média library in the iPod touch. But the média player center doesn't even recognized the iPod??? Does that mean that I will only be able to synchronised the iPod with iTunes?  If that's the case is it possible to transfer the Windows  Music library into iTune and make iTunes the principal média center ?

    You must use itunes.
    Put everything into itunes

Maybe you are looking for

  • Is there a way to create a standard hollow bullet?

    Hello everyone, We are using FrameMaker 12 on a Windows 7 (64 bit) platform. I have found discussions on the Web about this, but so far nothing works for us. As you know, other word processing tools have a hollow bullet as a standard feature. After s

  • How can i convert/invert colors in a scanned pdf blueprint?

    We have several large format blueprints to scan in and I want to change the blue to white and white to black so I can view/print them.  Is this possible?

  • Old Hard Drive Data Recovery

    I need to insatall a Western Digital HDD with Moldex/SATA connections from my old PC into my HP P7-1204 temporarily to recover data. The HP HDD connections are proprietary (of course). Any suggestions? This question was solved. View Solution.

  • Copy/paste issues and delays in snow leopard

    I swear that since upgrading to Snow Leopard I've had trouble copying and pasting. Well, pasting actually. I can copy but when I paste (with command keys or edit menu) it'll be the last thing that had been in the clipboard. If I copy then wait a few

  • Cumulative Hot Fix 2 for ColdFusion 8.0.1?

    We've been feeling a little leery about Adobe's stance with CF8 for a while now due to the lack of patches and updates compared to what we've been used to expecting from Macromedia. We've been checking the patch and security pages a couple times a we