How to attach a Pages file?

My Pages file is greyed out, not only when I try to send it as an attachment with a Yahoo! account, but also when I try to upload it to MobileMe. I have tried to compress the file, but when I select the file in the Finder, the "compress" option is greyed out. I have checked my user settings and I do have "read and write" permission for this file.
I know how to send the file as a .pdf. But I need to send it someone who can open it in Pages and edit it.

When I select my document with a .pages extension in Finder, then click on File, the word "compress" is greyed out. Is there something I need to do when I save the file to make it possible for me to compress it? The only suggestion I can find in Help is to check that I have authority to read and write the file. I have confirmed this by clicking "Get Info" and "Sharing."
What else can I try? My secretary is able to compress these files with no problem, but I can't make changes and send them back to her.

Similar Messages

  • How can I transfer "Pages" files  from my IPad to my Mac?

    How can I transfer "Pages " files from my IPad to my IMac, I cannot use ICloud because I have Mountain Lion installed on the IMac?

    Actually, you can use iCloud and the way that you so it is to log into iCloud.com on the Mac (use Safari for best results) click on the Pages icon and then drag the Pages files into the browser window. It works the other way around as well. Log into iCloud.com on the Mac and download the files from Pages (that you created on the iPad) in iCloud onto your Mac. You can click on the file in the documents window and select it to Download by clicking on the Gear icon or right click upon the file and select download.
    The files will then sync to the Pages app on the iPad - assuming hat you have use iCloud tuned on in Settings>Pages>Use iCloud>On. I have an iMac running Tiger 10.4.11 that I can still move Pages/Word files back and forth Iike this.
    Also, File Sharing with iTunes is a great way to move the files back and forth.
    iOS: About File Sharing - Support - Apple
    Message was edited by: Demo

  • How to attach a text file as an attachment to email message?

    Hello Everybody,
    I have a .csv file, in which details about emp-id, emp-name, e-expenses for Reimbursement and email address are stored.
    My application reads this .csv file, and sends a mail to each employee with his id, salary details in text format. (by changing content type to "text/plain") The code is working fine. But,
    My problem is:
    The message is sent as message body to the end user.
    The end user / the person who receives this mail will not be a technical person. So,
    1) If he trys to take a print out of this e-mail, He get only half of it.(as no. of colums will be more than paper size).
    2) I am finding alignment problem. IF employee name is too big, other columns will shift to right and data will not be exactly under column header. (it is going in zig zag way)
    So, I thought sending text file with all the details as an attachment might do well.
    But, I don't know how to attach a text file to email-message body.
    code
    try
                   {               String s1="";
                                  File f1 = new File(the path);
                                  FileInputStream fstream = new FileInputStream(f1); //new
                                  BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
                                  int count=0;
                                  while((s1=br.readLine())!=null )
                                                 count++;
                                                 //out.println("within while loop "+count);
                                                 StringTokenizer st = new StringTokenizer(s1,",");
                                                 if ((st.hasMoreTokens())&&(count>1))
                                            String a=st.nextToken().trim();
                                                 String b=st.nextToken();
                                                 String c=st.nextToken();
                                                 String d=st.nextToken();
                                                 String e=st.nextToken();
                                                 String f=st.nextToken();
                                                 String g=st.nextToken();
                                                 String h=st.nextToken();
                                                 String i=st.nextToken();
                                                 String j=st.nextToken();
                                                 String k=st.nextToken();
                                                 String l=st.nextToken();
                                                 String m=st.nextToken();
                                                 String n=st.nextToken();
                                                 String o=st.nextToken();
                                                 String p=st.nextToken();
                                                 String q=st.nextToken();
                                                 String mail=st.nextToken();
                                                 String s=st.nextToken();
                                                 //out.println("b="+b+"c="+c+"d="+d+"e="+e+"f="+f+"mail="+mail);
                                                 %>
    <%
                                            String to =mail;
                                                 String from =request.getParameter("fromadd");                                        
                                                 String subject ="Statement of Expenses";
                                                 String smtp ="mail.xxxxxxxxxx.com";
                                                 String message="";                                        
                                                 message=message.concat("EMP ID");
                                                 message=message.concat("     ");
                                                 message=message.concat("Name");
                                                 message=message.concat("          ");
                                                 message=message.concat("Dept No.");
                                                 message=message.concat("     ");
                                                 message=message.concat("Acc No.");
                                                 message=message.concat("     ");
                                                 message=message.concat("*****************************************************************************************");     
                                                 message=message.concat(a);
                                                 message=message.concat("     ");
                                                 message=message.concat(b);
                                                 message=message.concat("          ");
                                                 message=message.concat(c);
                                                 message=message.concat("     ");
                                                 message=message.concat(d);
                                                 Properties props = System.getProperties();
                                                 // Puts the SMTP server name to properties object
                                                 props.put("mail.smtp.host", smtp);
                                                 // Get the default Session using Properties Object
                                                 Session session1 = Session.getDefaultInstance(props, null);
                                                 // Create a New message
                                                 MimeMessage msg = new MimeMessage(session1);
                                                 // Set the From address
                                                 msg.setFrom(new InternetAddress(from));
                                                 // Setting the "To recipients" addresses
                                            msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(to, false));
                                            /* // Setting the "cc recipients" addresses
                                            msg.setRecipients(Message.RecipientType.CC,InternetAddress.parse(cc, false));
                                            // Setting the "Bcc recipients" addresses
                                            msg.setRecipients(Message.RecipientType.BCC,InternetAddress.parse(bcc, false)); */
                                            // Sets the Subject
                                            msg.setSubject(subject);
                                            // set the meaasge in HTML format
                                            msg.setContent(message,"text/plain");
                                            // Set the Date: header
                                            msg.setSentDate(new java.util.Date());
                                            // Send the message
                                            Transport.send(msg);
                                            // Display Success message
                                            result =result.concat("<tr><td>"+b+"</td>"+"<td>"+to+"</td></tr>");
                                                      }//end of if of hasmore element
                                       }// end of while loop
                        out.println(result);                    
    }catch(Exception e)
                        // If here, then error in sending Mail. Display Error message.
                        result="Unable to send your message";
                        out.println("e="+e);
    Any help will be appreciated.
    Thanks and regards.
    Ashvini

    <html>
    <p>
    MimeBodyPart mbp1 = new MimeBodyPart();
    mbp1.setText("Your Messages");
    MimeBodyPart mbp2 = new MimeBodyPart();
    FileDataSource fds = new FileDataSource("Your Attachments");
    mbp2.setDataHandler(new DataHandler(fds));
    mbp2.setFileName(fds.getName());
    Multipart mp = new MimeMultipart();
    mp.addBodyPart(mbp1);
    mp.addBodyPart(mbp2);
    msg.setContent(mp);
    msg.saveChanges();
    msg.writeTo(System.out);
    msg.setSubject(subject);
    Transport.send(msg);
    </p>
    <B><U>See you can add above code in your program and see the magic</U></B>
    Bye
    regards--
    Ashish
    </html>

  • How to  move a page file to another directory ?

    Hi,
    What I did to try to move a page to another directory is:
    1. copy the page file to another directory /public_html/mydirectory.
    2. modify the nevigation-rule in the faces-config.xml file so that the nevigation-rule
    point to the file in the new directory.
    But when run the page, there is an FacesException: Cannt instantiate backing_bean.
    How to move a page file to another directory?
    Thanks
    Stephen

    besides moving the file to the new directory, i'd advise you to find the name of your page in every file of your application (ultraedit does this very well) and append the directory wherever it appears otherwise you'd probably miss a reference and have a problem like you have.

  • How to attach a PDF file TO the form so that recipients can access the file as a resource?

    How to attach a PDF file TO the form so that recipients can access the file as a resource?

    Sorry we do not support this. What you can do though is add a Formatted Text element and add a link to a PDF. To insert a link add some text, select the text and right click on the text (or look under the Insert menu in the top right of the scene)
    Gen

  • How to attach a .pld file in oracle Designer

    When we try to generate a form out of designer we are getting the error ilke
    sample.pld file is required. The Questions on it are,
    1. What is a .pld file in a designer mean.
    2. How to attach a .pld file in oracle designer for the generation of forms.
    Thanks,
    Ramesh.R

    Hi Erik,
    Thanks for the update.
    My problem in designer is in the desginer under the generator preference dialog window the property "Form/Libr" attachment the "module specific library attachment" has the value like "ABC". I am having ABC.pld file in my system. I have included the file path in the pll file path in the Generator options tab.
    While generating the forms from designer i am getting the error "CDG-01373 ERROR: Module ABC: Unable to attach library ABC".
    My Questions are how to attach the ABC.pld file for this error. Thanks in advance
    Thanks,
    Ramesh.R

  • Can any one tell me how to attach a pdf file to the mail through workflow

    I have a smart which i am able  to convert it to a pdf file...now.. can any one tell me how to attach a pdf file to the mail through workflow

    Hi,
    To create the task for attachment
    Use the BOR SELFITEM and method NOTES_APPEND.
    The out come of this task contain a link called attachment with a clip attached. Clisk on that icon and choose the type of attachment u want . RAW , EXCEL , TXT , PDF... Then using the import icon u can attach the document u like.
    But the TYPE : OBJ.
    Similarly using NOTE_DISPLAY method u can display the documents u like.
    In any work item u have the facility to attach any atttchment for further circulation .
    Attchment @ WORKITEM
    1.Click the workitem for which you want to create the attchment
    2.Press create attachment
    3. Add the attachment u like (PDF)
    Reward points for useful answer.
    Richard A

  • How do i transfer Page files from my ipad to my desktop mac?

    how do i transfer Page files from my ipad to my desktop mac? The mac help page doesnt help as my ipad files dont show up in itunes.

    I don't have the Pages app, but there are instructions on this page for how to send documents to/from your computer's iTunes : http://help.apple.com/pages/ipad/1.6.1/#tanb5b5c055

  • I just attached a pages file and email to gmail account and try open in windows but i cant open it it is in jpg format and pdf how can i open it in windows as well

    i emailed a pages file  through gmail which cant be opened in windows computer why

    Because a Windows computer doesn't have Pages or anything to convert it.
    Export the file from Pages into whatever format would be appropriate for your windows users (PDF, possibly Word if they have that program). Then, send that file instead.

  • How do you transfer Pages files from Mac to ipad?

    How do you transfer Pages documents from Mac to Ipad?

    If you have iOS 5 on the iPad and enabled iCloud in Pages, you can go on your Mac and go to http://icloud.com, then click iWork, then click the gear icon and upload the document. It should appear on your iPad.
    If you have an older OS on the iPad, you will need to plug in to the Mac and launch iTunes. Click on the iPad under DEVICES. Then click on the Apps tab up top. Scroll down until you see a File Sharing section. Click on Pages, then click on the "Add" button.

  • HOW TO ATTACH A MUSIC FILE TO PDF ?

    Is it possible to a attach a music file to a pdf slidehow on PSE 3.2 ?

    Hi Gail,
    It's pretty hard to find comparisons, but I think I found a couple. I'm
    going to see if I can dig up more for the future.
    Cheers
    http://www.adobe.com/products/photoshopelwin/upgrade/
    Compares last two paid consumer products with each other PhotoShop
    Elements 5, 6 and the suite that includes Premiere Elements.
    http://www.adobe.com/digitalimag/pdfs/pse2-ps7_comparison_chart.pdf
    Compares an older consumer version to an older professional version. I
    know it's not what you are looking for, but I thought people might like
    to see how the two categories roughly stack up...
    Interesting... nothing on PSA SE thus far.

  • How to attach the PDF file in spool to an email?

    Dear friends,
        I need to attach the PDF file generated in the spool (SP01) to email.
    The PDF file is generated from VL02N at the time of Post Goods Issue .
    Thanks,
    Vidya.

    Hi,
    Refer to the link it is explained how to configure the output type to send the email with PDF attachment on saving the Billing Document.. you need to do the same way..
    Email Billing document as PDF Attachment while saving from VF01/02

  • How to attach the .emp files and .rar files in this forum.

    Dear Sir ,
                          I want to attach the ".emp" file or .emp file stored in the "rar", how to attach these files in this forum because whenever I am going to attch the .emp file or .rar file , it is showing the error that " The contents of the attachment doesn't match its file type".

    Well, you might think that. But you would be wrong.
    I'm not aware of any unix OS with an undelete function at the filesystem level.
    Such things don't tend to work well in a multiuser/server environment where lots of things are writing to the disk in the background.
    And trying to guess what the filesystem used to look like is a good way to court random file system corruption.

  • How to attach Microsoft 2007 files (.docx, .xlsx) using SO_DYNP_OBJECT_SEND

    Hi,
    Would anyone know how to attach a file with extension .docx or .xlsx to an email using function module SO_DYNP_OBJECT_SEND?
    I am able to successfully attach .doc or .xls documents.
    The problem stems from the fact that the packing list field 'file_ext' takes a 3-character file extension.  This will not work for .xlsx or .docx since they are 4-character extension.
    I found a few suggestions that said I have to add the filename to the attachment header table....like this:
    data: wa_content TYPE soli.
    CONCATENATE '&SO_FILENAME=' lv_filename INTO wa_content.
    APPEND wa_content TO gt_att_head.
    I then pass gt_att_head to fm 'SO_DYNP_OBJEC_SEND'.
       CALL FUNCTION 'SO_DYNP_OBJECT_SEND'
         EXPORTING
           object_hd_change = l_title
           object_type      = 'RAW'
           raw_editor       = abap_true
           starting_at_x    = '5'
           starting_at_y    = '1'
           ending_at_x      = '120'
           ending_at_y      = '20'
           edit_title       = 'X'
           external_commit  = abap_true
         TABLES
           packing_list     = gt_packing_list
           att_head         = gt_att_head
           att_cont         = gt_total_att_cont
           exclude_fcode    = i_exclude_fcode
         EXCEPTIONS
           object_not_sent  = 1
           owner_not_exist  = 2
           parameter_error  = 3
           OTHERS           = 4.
    However, when I try to open an .xlsx file, I get the warning:
    "Excel found unreadable content in 'TestFC2.xlsx'. Do you want to recover the contents of this workbook?  If you trust the source of this workbook, click Yes."
    Has anyone else encountered this problem and found a solution?
    Thanks,
    Jennifer

    Hi Andrés,
    Thank you for the suggestions.  I did as you said, but it still did not work.
       DATA: wa_content TYPE soli.
       CONCATENATE '&SO_FILENAME=' lv_filename INTO wa_content.
       APPEND wa_content TO gt_att_head.
       CLEAR:wa_content.
       wa_content = '&SO_FORMAT=BIN'.
       APPEND wa_content TO gt_att_head.
    I am already sending the obtyp as 'EXT' in the packing list.
    * Static data
       gs_packing_list-file_ext = lv_ext.
       gs_packing_list-transf_bin = 'X'.
       gs_packing_list-objla = sy-langu.
       gs_packing_list-objtp = 'EXT'.
       gs_packing_list-objdes = lv_filename.
       gs_packing_list-objnam = 'Attachment'.
       gs_packing_list-head_start = 1.
       gs_packing_list-head_num = 1.
    I can see that the document is attached but when I open the XLSX document, I get the error about unreadable content.
    Any further suggestions are appreciated.
    Thank you,
    Jennifer

  • How Tell Version of Pages File Saved In?

    Hi,
    Having just switched to iWork 08 from iWork 06 I am wondering how I will be able to tell which version a file was created/saved in? I clicked on Get Info but all it tells me is it's a Pages file...no mention of which version. Is there anyway to find out?
    Thanks,
    Winston

    Here are version identifiers for Pages documents.
    en-tête Pages'06
    <sl:version-history>
    <sl:number sfa:number="2004042200" sfa:type="i"/>
    <sl:number sfa:number="2004060800" sfa:type="i"/>
    <sl:number sfa:number="2004061500" sfa:type="i"/>
    <sl:number sfa:number="2004061600" sfa:type="i"/>
    <sl:number sfa:number="2004062200" sfa:type="i"/>
    <sl:number sfa:number="2004062900" sfa:type="i"/>
    <sl:number sfa:number="2004072200" sfa:type="i"/>
    <sl:number sfa:number="2004091600" sfa:type="i"/>
    <sl:number sfa:number="2004093000" sfa:type="i"/>
    <sl:number sfa:number="2005092300" sfa:type="i"/>
    <sl:number sfa:number="2005140600" sfa:type="i"/>
    </sl:version-history>
    en-tête Pages'8 layout
    <sl:version-history>
    <sl:number sfa:number="2004042200" sfa:type="i"/>
    <sl:number sfa:number="2004060800" sfa:type="i"/>
    <sl:number sfa:number="2004061600" sfa:type="i"/>
    <sl:number sfa:number="2004062200" sfa:type="i"/>
    <sl:number sfa:number="2004062900" sfa:type="i"/>
    <sl:number sfa:number="2004072200" sfa:type="i"/>
    <sl:number sfa:number="2004091600" sfa:type="i"/>
    <sl:number sfa:number="2004093000" sfa:type="i"/>
    <sl:number sfa:number="2005091000" sfa:type="i"/>
    <sl:number sfa:number="2005091200" sfa:type="i"/>
    <sl:number sfa:number="2005092300" sfa:type="i"/>
    <sl:number sfa:number="2005101400" sfa:type="i"/>
    <sl:number sfa:number="2005101700" sfa:type="i"/>
    <sl:number sfa:number="2005121900" sfa:type="i"/>
    <sl:number sfa:number="2005140600" sfa:type="i"/>
    <sl:number sfa:number="72006110901" sfa:type="q"/>
    <sl:number sfa:number="72007010801" sfa:type="q"/>
    <sl:number sfa:number="72007012700" sfa:type="q"/>
    <sl:number sfa:number="72007061400" sfa:type="q"/>
    </sl:version-history>
    en-tête Pages'08 WP
    <sl:version-history>
    <sl:string sfa:string="Word"/>
    <sl:number sfa:number="72007061400" sfa:type="q"/>
    </sl:version-history>
    So it seems that searching for the signature:
    sl:number sfa:number="72007061400" sfa:type="q"
    would give the ability to distinguish Pages'08 docs from older ones
    Yvan KOENIG (from FRANCE lundi 2 juin 2008 13:40:38)

Maybe you are looking for

  • What type of internal hard drive can I use for my Macbook pro?

    HI, My macbook pro stopped working and I took it to Apple store to find out what was wrong with it. I have been told that the hard disk i snot working anymore. Since I cannot afford to pay Apple's fees, I was told that I can order it online and pput

  • Same line Item but two differentreceiving IDOCS

    Folks I am new to SAP PI and seeking your help in the following scenario legacy -> SAP PI -> branched to two idocs in ECC The scenario is that a fixed length flat file coming from Legacy wil contain some line items  but each line will be a separate i

  • "Connection failed ... There was an error connecting to the server"

    Hi, I have a late-2009 imac, running Snow Leopard and all the latest updates. However, since ugrading to ilife '09, I now see the following error "Connection failed There was an error connecting to the server "BeechMac". Check the servername or IP ad

  • Problem with my ipod touch jack

    I have a problem with my ipod touch jack. When I listen to music (using non aple headphones and the headphones it came with)it doesn't sound as good as my mp4 player so I purchased  an adapter and it still doesn't work what can I do?

  • SQL 2.0 and CVI 5.5 Problem - Help please!

    Hi All, I have recently updated to CVI 5.5. Over the last week I have been update my programs to 5.5. However, I am having problems with the SQL toolbox - more specifically the "DBImmediateSQL" function. When the line of code runs which contains this