Use pages to transfer word doc to itunes

I purchased the 'pages' app by apple under the impression that I would be able to transfer microsoft word documents to my ipad and edit it. However, I have not seen any option for that functionality. Can anyone help please?

I don't have iTUnes 11.2 but I can't imagine that the file transfer part has changed. Have you looked with your device plugged in? That part, stuff specific to devices, only shows up if a device is attached and selected in the sidebar.
Attach your device, click on the name of your device in the sidebar (may need to turn that on, it defaults to off, control B on a PC brings the sidebar back), then navigate to the apps tab that you see horizontally with all the other device specific tabs and scroll down.

Similar Messages

  • When I click on the converted PDF in my downloads, I receive a message saying'invalid format' Could that be because I use 'Pages' and not 'Word" If so, how can I convey PDF's to Pages?

    When I click on the converted PDF n my downloads, I receive a message saying 'invalid file format'.
    Could that be because I use Pages and not Word?
    If so, how can I convert my PDF's to Pages so I can modify the documents?

    Hi Kathy,
    I'm not very familiar with Pages, but I did just read on Apple's website that it does import .docx files. What happens when you open Pages, and then choose File > Open to open the .docx files?
    Best,
    Sara

  • Using "Pages" as my word processor I can not print a Standard page.  Trying to print several copies of a single page gives me every thing parented back to back.  What do I do to fix this?

    Using "Pages" as my word processor I can not print a Standard page.  Trying to print several copies of a single page gives me every thing parented back to back.  What do I do to fix this?  (Using iMac OS 10.9.1 and Canon iP4200 printer)

    You have Duplexing turned on. Turn it off.
    This is to do with your Printer Driver and has nothing to do with Pages.
    Peter

  • Can Java be used to parse Microsoft Word(.doc) files?

    Hi guys ,
    I want to know whether Java can be used to parse Microsoft Word(.doc) files for searching a string or for checking for grammatical errors, etc
    Thanks in advance.
    Avichal

    Hey man, anything and every thing can be done these days.
    About ur question doc is like all other normal text files with some extra features and extra character supports and other stuffs.
    If u neglect those parts and if u consider it to be a normal text file then its a much simpler job.
    Here is a code that searches for the key word in all the doc files, txt files, pdf files and html files
    in the mentioned folder and sub folders. Any way its a servlet u can change it to a normal program.
    It first check the file to know whether they are doc, pdf, html or txt files if yes then it will read the file and
    store the contents in the vector and parse the vector for the search string and display the result.
    Along with the result the below code will also display the time taken and the number of search string found in the document
    import java.io.*;
    import java.util.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class search_local extends HttpServlet
         public void service( HttpServletRequest _req, HttpServletResponse _res ) throws ServletException, IOException
              long startTime = System.currentTimeMillis();          
              File RootDir     = new File( _req.getRealPath( "/docs/" ) );
              if ( RootDir.isDirectory() == false )
                   System.out.println( "Invalid directory" );
                   _res.setStatus( HttpServletResponse.SC_NO_CONTENT );
                   return;
              Vector kList = new Vector( 3 );
              StringTokenizer st = new StringTokenizer( _req.getParameter( "search_text" ), "+" );
              while ( st.hasMoreTokens() )
                   kList.addElement( st.nextToken().trim() );
              //- Run through list
              Vector toBeDone     = new Vector( 10 );
              Vector found     = new Vector( 10 );
              String dir[] = RootDir.list( new htmlFilter() );
              cDirInfo tX = new cDirInfo( RootDir, dir );
              toBeDone.addElement( tX );
              while (  toBeDone.isEmpty() == false )
                   tX = (cDirInfo)toBeDone.firstElement();
                   try
                        int x = 0;
                        for ( ;; )
                             File newFile = new File( tX.rootDir, tX.dirList[x] );
                             if ( newFile.isDirectory() )
                                  File t = new File( tX.rootDir, tX.dirList[x] );
                                  String a[] = newFile.list( new htmlFilter() );
                                  toBeDone.addElement( new cDirInfo( t, a ) );
                             else
                                  int freq = searchFile( kList, newFile );
                                  if ( freq != 0 )
                                       found.addElement( new cPage( freq, newFile ) );                              
                             x++;
                   catch( ArrayIndexOutOfBoundsException E ){}
                   toBeDone.removeElementAt(0);
                   dir     = null;
              long totalTime = System.currentTimeMillis()     - startTime;
              formatResults( found, kList, totalTime, _req.getRealPath( "/docs" ), _res );
         private void formatResults( Vector _fList, Vector _kList, long time, String _root, HttpServletResponse _res ) throws IOException
                 _res.setContentType("text/html");
              PrintWriter Out = new PrintWriter( _res.getOutputStream() );
              Out.println( "<HTML><HEAD><TITLE>Search results</TITLE></HEAD>" );
              Out.println( "<BODY><H3>Search Results</H3><BR>" );
              Out.println( "Keywords:<B> " );
              Enumeration E = _kList.elements();
              while ( E.hasMoreElements() )
                   Out.println( (String)E.nextElement() + " : " );
              Out.println( "</B><BR><BR><CENTER><HR WIDTH=100%></CENTER><BR>" );
              E = _fList.elements();
              cPage sPage;
              String link;
              while ( E.hasMoreElements() )
                   sPage = (cPage)E.nextElement();
                   link  = sPage.cFile.toString();
                   link  = "http://localhost/BugFix/docs/" + link.substring( link.indexOf( _root )+_root.length(), link.length() );
                   Out.println( "<FONT SIZE=+1><A HREF=" + link + ">" + sPage.cFile.getName() + "</A></FONT>" );
                   Out.println( "<FONT SIZE=-2>(" + sPage.freq + ")</FONT><BR>" );
              if ( _fList.size() == 0 )
                   Out.println( "<I><B>No sites found!</I></B><BR>");
              Out.println( "<BR><CENTER><HR WIDTH=100%></CENTER>" );
              Out.println( "<BR><FONT SIZE=-1>Time to complete: " + ((double)time/1000) + " seconds</FONT>" );
              Out.println( "</BODY></HTML>" );
              Out.flush();
         private int searchFile( Vector _klist, File _filename )
              //- Links the file
              int     frequency=0;
              try
                   DataInputStream In     = new DataInputStream( new FileInputStream( _filename ) );
                   String LineIn, token;
                   boolean bValid = true;
                   Enumeration E;
                   cLineParse lp;
                   while ( (LineIn = In.readLine()) != null )
                        lp = new cLineParse( LineIn.toUpperCase() );
                        while ( (token=lp.nextToken()) != "" )
                             if ( token.indexOf( "<" ) != -1 && (
                                   token.indexOf( "<A" ) != -1 ||
                                   token.indexOf( "<HE" ) != -1 ||
                                   token.indexOf( "<APP" ) != -1 ||
                                   token.indexOf( "<SER" ) != -1 ||
                                   token.indexOf( "<TEX" ) != -1  ))
                                  bValid  = false;
                             else if (     token.indexOf( "<" ) != -1 && (
                                            token.indexOf( "</A" ) != -1 ||
                                            token.indexOf( "</HE" ) != -1 ||
                                            token.indexOf( "</APP" ) != -1 ||
                                            token.indexOf( "</SER" ) != -1 ||
                                            token.indexOf( "</TEX" ) != -1  ))
                                  bValid  = true;
                             else if ( bValid )
                                  E = _klist.elements();
                                  String key;
                                  while ( E.hasMoreElements() )
                                       key     = ((String)E.nextElement()).toUpperCase();
                                       if ( token.indexOf( key ) != -1 )
                                            frequency++;
                   In.close();
              catch( IOException E ){}
              return frequency;
    class cPage extends Object
         public int     freq;
         public File cFile;
         public cPage( int _freq, File _cFile )
              freq = _freq;
              cFile = _cFile;
    //- End of file
    //----- Supporting classes
    class htmlFilter implements FilenameFilter
         public boolean accept(File dir, String name)
              File tF     = new File( dir, name );
              if ( tF.isDirectory() )
                   return true;
              int indx = name.lastIndexOf( "." );
              if ( indx == -1 )
                   return false;
              String Ext = name.substring( indx+1, name.length() ).toLowerCase();
              if ( Ext.equals( "html" ) ||
                    Ext.equals( "pdf" ) ||
                    Ext.equals( "txt" ) ||
                    Ext.equals( "doc" ) )
                    return true;
              return false;
    class cDirInfo
         public File     rootDir;
         public String[] dirList;
         public cDirInfo( File _r, String[] _d )
              rootDir     = _r;
              dirList = _d;
    class cLineParse
         String L;
         public cLineParse( String _s )
              L = _s;
         public String nextToken()
              String ns="";
              boolean bStart = false;
              for ( int x=0; x < L.length(); x++ )
                   if ( L.charAt(x) == '<' && ns.length() != 0 )
                        L = L.substring( x, L.length() );
                        return ns;
                   else if ( L.charAt(x) == '<' )
                        ns     = ns + L.charAt( x );
                        bStart = true;
                   else if ( L.charAt(x) == '>' ||
                               L.charAt(x) == '\r' ||
                         ( L.charAt(x) == ' ' && bStart == false ) )
                        ns     = ns + L.charAt( x );
                        L = L.substring( x+1, L.length() );
                        return ns;
                   else
                        ns     = ns + L.charAt( x );
              L = "";
              return ns;
    }

  • Open pages with a word doc

    I would like Pages to open as my defalt WP App when I click on a word doc. Is there a way to set my system to do that?

    Select a Word document. Press Command-I. Under "Open With" use the pull down menu to select "Pages". Click on "Change All".
    This should do it though I have not tried it.

  • A font not used in an MS Word doc is showing up in the PDF properties and won't embed

    A friend needed a new manuscript uploaded to a publishing site. I retyped it in MS Word (2007) using NO formatting shortcuts and using only ONE font (Georgia)  for both body and headers/footers. Placed all the jpg illustrations on the pages. Then saved it in the required PDF format for the publisher's system to use. They also require that ALL fonts/symbols are embedded. Even ONE character that is not embedded will void the file. I'm now on attempt 17.
    When I checked the properties on this PDF file, the font I used, including italics, symbols and bolding, are noted as embedded. However, it also says that there is ARIEL font (which I did not use) that is NOT embedded. AARRGGHH.
    This gal wants her book ready in two weeks. HOW can I resolve this? Any ideas? I saved it once through MS Word using the PDF option, but also tried it through my Photoshop Elements. Same result. My PC uses Windows 8 (NOT 8.1) and the Adobe Reader XI.0.7. The Java files are the most current update as of yesterday.

    It seems to me to be a problem of MS Word, not Adobe Reader.
    Also, I don't know how you can convert a Word doc to PDF with Photoshop Elements.

  • Pages '09 to Word doc, maintaining graphics in 'letterhead'.

    I have Pages '09 (version 4.2) and when I place 'letterhead' graphics into the Pages document and then save as a Word doc for clients to use as letterheads (to print as needed), the graphics in the Word doc come out in low res.  I have tried saving the Pages document several ways, but they all come out low-res in Word.  I need to be able to provide my non-graphic clients with a Word template of their newly designed letterhead.  Help please!

    Just a word of warning
    Depending on the version, MsWord may not play nice with .pdfs, something Microsft deliberately did to keep PC users away from a competing file format.
    If that happens try using a high resolution .tif file which is a more established Windows method.
    Peter

  • Pages and Windows Word docs

    Does anyone know if you can open Word docs created on a Windows machine in Pages for iPad if you receive them via email? I have tried this with Word docs created in Office 2003 and can't get it to work. The Pages documentation says it supports Word, but I'm starting to wonder if somehow it only supports Word files created on a Mac? Or is it just that it doesn't support older versions of Word like Office 2003? Thanks much.

    I've opened Word files created with Office 2008. I'm pretty certain I've opened files made with Win versions 2003 and 2007 (I went crazy testing the first week and naturally I didn't write down everything I did. Now I'm going back and doing some testing over ) What version are you using?

  • Do you know how to convert form pdf to pages then to word doc?

    Hello Everyone I use pages #Iwork #Mac so basically I have a pdf document with contains equations which I have to transcribe to a word document. But I don't know how to get started for adding these equations.. I will thank you so much http://img716.imageshack.us/img716/163/screenshot20130420at658.png
    Please help me I am new with mac
    I scanned this document frome of a page of papaer and I have to trascribe to a word document but actually I don't how to do that.

    There’s a easy and free way, just go to docs.google.com, click the upload button to upload your pdf file. Remember to check the option "Convert text from PDF or image files to Google Docs documents " before you click the “start upload” button. After the upload is done you can find the converted file on your Google Docs, now copy the texts to an empty word file, done! With this method you can also convert pdf to ppt if you copy the converted tsts to your empty ppt file. Or you can simply use a PDF to word converter, Adobe has a professional software that can do that but I can't think of the name right now.

  • Exporting document in Pages to a Word doc is messing things up!!

    Hi,
    Since I bought my Macbook I decided to step over to Pages instead of buying Word. I am starting to regret this now. I just created a new document in Pages, my cv. And as soon as I export this into a Word document the lay out has changed a bit. The lines or tabs do not appear nicely underneath each other but moved. I was told that if I used Pages and I need to send a doc to someone with Word that by exporting it, nothing would be changed in the document itself. But now I noticed that it does effect the original doc. What did I do wrong with saving and exporting? Or was I better of with buying Word in the first place? Thanks!

    Adiona wrote:
    I was told that if I used Pages and I need to send a doc to someone with Word that by exporting it, nothing would be changed in the document itself.
    That is definitely not true. All exported Word documents have at least some differences against the original Pages document. There may be small shifts in the interpretation of font heights or pictures and page numbers that move around.
    For simple documents this is rarely a problem. For more complicated it often is. If layout is important, you should always verify the layout using some other Word document reader like NeoOffice or indeed MS Office.
    For a CV, I would imagine that you do not want the reader to be able to change it. Unless that is the case, export the document to PDF instead. PDF files retain layout much better than Word documents.

  • Using Pages in iPad, I save to iTunes and synch w/ iMac.  Where does the Pages document go-I cannot find it?, Using Pages in iPad, I save to iTunes and synch w/ iMac.  Where does the Pages document go-I cannot find it?

    Using Pages on my iPad, I save to iTunes to share it with my iMac.  After download I cannot find the documents in my iMac.  Not in Pages, not in iTunes, so where do they go?

    Until Apple updates the desktop versions of the iWork apps you have to use iCloud.com in a web browser or iTunes to sync files. You could also try e-mail or DropBox.

  • Adding a web page to a word doc...

    Hello,
    This may be a stupid question, but I am new (ish) to the glorious world of Apple Mac...
    I am trying to add a web window/page to a word document, but have no idea how to do it using Safari/on my Mac.
    Does anyone have any idea of how to do this... please?
    Thanks very much...
    B.

    Well, you've posted in the Safari for Windows forum, so that's a mistake you want to avoid in the future if you want your topic to get better attention.
    But, you can't add web pages to Word documents. There are two other options you have:
    1. Create a hyperlink to the web page in the Word document (this works best if you know that page is going to be there for awhile).
    2. Take a screen shot of the web page or relevant portion and paste that into the Word document in a compatible format (.jpg, probably).
    3. Save the page as a PDF document and send it along with the Word document.
    Which of these is your preference?
    Mulder

  • Pages export corrupts word doc how can I fix this glitch?

    In Pages, when I Share and Export the Pages doc to a Word doc and open the Word doc it is corrupted - showing up copy from an older document. The same copy shows up every time. It looks faded out on each page and the actual copy from the Pages document shows up. This happens every time I export to Word and open the Word doc. Does anyone know how to fix this glitch?

    A glitch I haven't heard about before. Are you sure that you are not opening the old doc every time and have saved the new some where else on the computer?

  • Printing a document from firefox web page or Microsoft Word doc ument used to work just fine. All of a sudden I was unable to print a Word document. I can still print a web page. Any suggestions?

    I have a document from Microsoft Word that will not print. It's as if the printer is not connected when I attempt with the Word document. I have gone in and deleted any pending documents in Microsoft Word. I have restarted computer, as well as the printer. The printer does not seem to be connecting or responding to the Word program (cannot find spooler) Any suggestions?

    I have a problem similar to those posted here, with one difference. With my printers newly installed, regardless of which one is selected as the default, when I try to print from Adobe Reader I receive the error message we're talking about : "Before you can perform a print related task...."
    Here's the fun part.
    If I click OK on the message, ALL MY PRINTERS GET DELETED and, I get the windows message that "Spooler subsystem app has encountered a problem and needs to close"! If instead of clicking OK I switch to Task Manager and end Adobe, I'm fine and can print from other programs.
    I can "reset" the problem by deleting the files in C:\Windows\System32\Spool\Printers and C:\Windows\System32\Spool\Drivers\w32x86, restarting the machine, and deleting then reinstalling the printers (which show up again after the restart).
    BUT, if I try to print from Adobe Reader again, I get the same cycle of problems.
    I am running Windows Vista and Adobe Reader 8.1

  • Acrobat 9 Pro PDF is not retaining original page settings from Word doc

    The document I am trying to put into PDF format (from Word 2000, using Acrobat 9 Pro (trial version)) drops my original Word page settings (5.5" x 8.5") and defaults to 8.5" x 11" in the PDF.  Using "Crop Pages" does not remedy the situation - the doc just stays at the larger size in Acrobat/PDF. Can anyone tell me what I might be doing wrong?

    Change the paper size in the printer properties before creating the PDF. This is the same as putting the proper paper in a physical printer.

Maybe you are looking for

  • Mandatory Field in ALV Grid

    Hello, i've a editbale alv grid. Is it possible to set a field/colum as mandatory field? Best regards, TomSd

  • Convert integers to equivalent characters in string - NOT ASCII code character

    I have to output my data and associated string information to a string array and then to a spreadsheet file. I want to do this by converting integers (and other numbers) to an identical string of characters. I have tried Type Cast with a string const

  • ISE 1.2 scheduled backup not working

    Hi all, I have clean installation of ISE 1.2 (HA) Patch1  and tried to create scheduled backup from GUI. I can create it without problems but it does not start. I have created manual backups which are working fine, so there is no problem with FTP ser

  • Adobe Flash download blocked on Macbook Pro

    Macbook Pro Retina 15" running OSX 10.95.  Adobe Flash gets to the install point and is blocked because Flash wasn't downloaded from the App Store.  I've opened Safari>Preferences>Security>Manage Website preferences; I can't see anything that will al

  • Video Cuts out After 20 Minutes

    With my iPod video coming soon I am preparing movies to put onto my iPod. I convert DVDs into MPEG1s, then MPEG1s into uncompressed AVIs because QT can take audio and video from AVIs. My final uncompressed AVI is perfect, audio and video all the way