I can't send new Keynote files using Sparrow.

I want to send Keynote files, but Sparrow gives an error and won't send at all. Sending with Gmail works, but the receiver can't open the file. What to do?

Going back to Keynote 1, the OSX "Package" was always a folder that was only treated differently due to the .key at the end instead of .folder. In between then and now, they created another format that was essentially the same thing, but zipped up (and still with a .key extension). Keynote would open both and save to both the same and there wasn't a functional difference. There's never been a "simple" Keynote file, it's always been basically a folder, zipped or not, with a .key extension.
For example, take a .key file from Keynote '09 (one that won't let you "Show Package Contents", change the extension to .zip (you'll have to tell Finder YES this is what I want to do), then double click on it. OSX's built in unzipper will open it like any other .zip file and you'll see the "folder" contents. By the same token, take any .key file that WILL let you "Show Package Contents", change it's extension from .key to .folder and save that. It'll open just like any other folder on your system. And, the changes are reversible for Keynote '09, change the .folder back to .key or change that .zip back to .key and Keynote will recognize it.

Similar Messages

  • TS3276 why i can't send a Pages file using gmail

    i can't send Pages attach file using gmail imap server

    Google blocks the new iwork files :(
    And there is no responce yet when they fix it
    Solution!!!:
    1 - Send it by exporting to office files
    2 - Saving the files as old iwork documents
    3 - Command P and save as PDF
    4 - Save in icloud and send the URL

  • TS3276 I recently got a new Macbook Pro and got a free update OS X 10.9.1 which includes Keynote, Pages, Numbers.  The only problem is that I am unable to send my Keynote Presentations using gmail, even after compressing.

    I recently got a new Macbook Pro with OS X 10.9.1
    A free upgrade was done and included Pages, Keynote, Numbers. The only problem is that I cant send Keynote files i.e with extension .key through gmail. Even compressing the files doesnt solve the issue.
    PLEASE HELP!

    I can't send a KeyNote Presentation from icloud.com to gmail.com eMail Address.
    This is the Error Code:
    Reason: SMTP transmission failure has occurred
    Diagnostic code: smtp;552-5.7.0 This message was blocked because its content presents a potential issue. Please visithttp://support.google.com/mail/bin/answe to review our message content and attachment content guidelines. p3si11624956pbj.68 - gsmtp
    Remote system: dns;aspmx.l.google.com (TCP|17.172.108.249|38112|74.125.25.26|25) (mx.google.com ESMTP p3si11624956pbj.68 - gsmtp)
    After reading other posts on this and similar boards, I tried Pages and Numbers and can't send those files to a gmail recipient either.
    I can send to other eMail addresses I've tested however, it seems to be isolated to gMail accounts.
    Kim.

  • Send a picture file using sockets

    Hi,
    Could someone please tell me how I can send a picture file using sockets across a TCP/IP network? I have managed to do it by converting the file into a byte array and then sending it but I dont see the data back at the client when I recieve the file. I just see the byte array as having size 0 at client.
    Byte array size is correct at client side.
    //client code
    System.out.println("Authenticating client");
              localServer = InetAddress.getLocalHost();
              AuthConnection = new Socket(localServer,8189);
              out = new PrintWriter(AuthConnection.getOutputStream());
              InputStream is = AuthConnection.getInputStream();
              System.out.println(is.available());
              byte[] store = new byte[is.available()];
              is.read(store);
         ImageIcon image = new ImageIcon(store);
              JLabel background = new JLabel(image);
              background.setBounds(0, 0, image.getIconWidth(), image.getIconHeight());
              getLayeredPane().add(background, new Integer(Integer.MIN_VALUE));
    //extra code here
              catch (UnknownHostException e) {
    System.err.println("Don't know about host: LocalHost");
    System.exit(1);
              catch (IOException e) {
    System.err.println("Couldn't get I/O for "
    + "the connection to: LocalHost");
    System.exit(1);
    //server code
                   DataOutputStream out = new DataOutputStream(incoming.getOutputStream());
                   FileInputStream fin = new FileInputStream("3trees.gif");
                   byte[] b = new byte[fin.available()];
                   int ret = fin.read(b);
                   out.write(b);

    i used OutputStream as
    OutputStream out = incoming.getOutputStream(); and flushed the stream too.
    But I still get the same output on the client side. I tried sending a string and it works , but I cant seem to be able to populate the byte array on the client side. It keeps showing zero. Please advise.
    Thank you.

  • How to create new XML file using retreived XML content by using SAX API?

    hi all,
    * How to create new XML file using retreived XML content by using SAX ?
    * I have tried my level best, but output is coming invalid format, my code is follows,
    XMLFileParser.java class :-
    import java.io.StringReader;
    import java.io.StringWriter;
    import javax.xml.transform.OutputKeys;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMResult;
    import javax.xml.transform.sax.SAXSource;
    import javax.xml.transform.sax.SAXTransformerFactory;
    import javax.xml.transform.sax.TransformerHandler;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.Document;
    import org.xml.sax.Attributes;
    import org.xml.sax.InputSource;
    import org.xml.sax.SAXException;
    import org.xml.sax.helpers.XMLFilterImpl;
    public class PdfParser extends XMLFilterImpl {
        private TransformerHandler handler;
        Document meta_data;
        private StringWriter meta_data_text = new StringWriter();
        public void startDocument() throws SAXException {
        void startValidation() throws SAXException {
            StreamResult streamResult = new StreamResult(meta_data_text);
            SAXTransformerFactory factory = (SAXTransformerFactory) SAXTransformerFactory.newInstance();
            try
                handler = factory.newTransformerHandler();
                Transformer transformer = handler.getTransformer();
                transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
                transformer.setOutputProperty(OutputKeys.INDENT, "yes");
                handler.setResult(streamResult);
                handler.startDocument();
            catch (TransformerConfigurationException tce)
                System.out.println("Error during the parse :"+ tce.getMessageAndLocation());
            super.startDocument();
        public void startElement(String namespaceURI, String localName,
                String qualifiedName, Attributes atts) throws SAXException {
            handler.startElement(namespaceURI, localName, qualifiedName, atts);
            super.startElement(namespaceURI, localName, qualifiedName, atts);
        public void characters(char[] text, int start, int length)
                throws SAXException {
            handler.characters(text, start, length);
            super.characters(text, start, length);
        public void endElement(String namespaceURI, String localName,
                String qualifiedName) throws SAXException {
            super.endElement("", localName, qualifiedName);
            handler.endElement("", localName, qualifiedName);
        public void endDocument() throws SAXException {
        void endValidation() throws SAXException {
            handler.endDocument();
            try {
                TransformerFactory transfactory = TransformerFactory.newInstance();
                Transformer trans = transfactory.newTransformer();
                SAXSource sax_source = new SAXSource(new InputSource(new StringReader(meta_data_text.toString())));
                DOMResult dom_result = new DOMResult();
                trans.transform(sax_source, dom_result);
                meta_data = (Document) dom_result.getNode();
                System.out.println(meta_data_text);
            catch (TransformerConfigurationException tce) {
                System.out.println("Error occurs during the parse :"+ tce.getMessageAndLocation());
            catch (TransformerException te) {
                System.out.println("Error in result transformation :"+ te.getMessageAndLocation());
    } CreateXMLFile.java class :-
    Sax.startDocument();
    Sax.startValidation();
    Sax.startElement("", "pdf", "pdf", new AttributesImpl());
    Sax.startElement("", "basic-metadata", "basic-metadata", new AttributesImpl());          
    String xmp_str = new String(meta_data.getByteArray(),"UTF8");
    char[] xmp_arr = xmp_str.toCharArray();
    Sax.characters(xmp_arr, 0, xmp_arr.length);
    Sax.endElement("", "pdf", "pdf");
    Sax.endValidation();
    Sax.endDocument();
    Sax.endElement("", "basic-metadata", "basic-metadata");* In CreateXMLFile.java
    class, I have retreived the xml content in the meta_data object, after that i have converted into character array and this will be sends to SAX
    * In this case , the XML file created successfully but the retreived XML content added as an text in between basic-metadata Element, that is, retreived XML content
    is not an XML type text, it just an Normal text Why that ?
    * Please help me what is the problem in my code?
    Cheers,
    JavaImran

    Sax.startDocument();
    Sax.startValidation();
    Sax.startElement("", "pdf", "pdf", new AttributesImpl());
    Sax.startElement("", "basic-metadata", "basic-metadata", new AttributesImpl());          
    String xmp_str = new String(meta_data.getByteArray(),"UTF8");
    char[] xmp_arr = xmp_str.toCharArray();
    Sax.characters(xmp_arr, 0, xmp_arr.length);
    </code><code>Sax.endElement("", "basic-metadata", "basic-metadata");</code>
    <code class="jive-code jive-java">Sax.endElement("", "pdf", "pdf");
    Sax.endValidation();
    Sax.endDocument();     
    * I HAVE CHANGED MY AS PER YOUR SUGGESTION, NOW SAME RESULT HAS COMING.
    * I AM NOT ABLE TO GET THE EXACT OUTPUT.,WHY THAT ?
    Thanks,
    JavaImran{code}

  • Sending a pdf file using submit without client email program.

    I need a solution on sending a completed pdf file to my email address without the clients email program poping up.  My website has a small pdf file that users can complete and return to me.  I get many complaints from users stating it requires them to save the file first and then they are unsure were it saved or how to attach it to a email.  To make this easer on my users I want the submit button to simply send me the file using some method from my website.  I use iPage to host the site now.  I was looking for a script to call or some way to do this automaticly.  I was woundering if urs/sbin/sendmail might work.  I am simply at a loss on this.

    Using a sendmail type script will send you the form data in the body of an email message, if the form is set up to submit as "HTML". You can create your own script to attach the form data as an FDF, XFDF, or even the complete PDF, but it's unlikely your provider supplies a script for this, so you'd have some custom programming to do.
    Sending just the form data also avoids the licensing restrictions for Reader-enabled forms. You can easily import an FDF or XFDF into a blank form to create a filled-in form.

  • Jump to new Keynote File at the end of Presentation

    Apologies if this topic has been discussed, in the 11th hour for a solve. Is it possible to trigger a new keynote file at the end of my first Keynote file?
    I know this can be triggered via "enable link" in the inspector on an object. I am wanting to run Keynote presentation "A" with an apple remote, then the last slide of Keynote A triggers new Keynote File "B".
    possible? yes, I know I could just tail them together in one keynote file but that is not what I need to do. I need presenter B to be able to work independently until the last minute before the show and I just want to link to their file.
    Thanks in advance for any solved or helpful answers.

    Hi David,
    There's no way to make the last slide force a different presentation to open on its own, but you can set up the slide so that it has a link to an external presentation. Make sense?
    Select the item on the slide you'd like to link from. In the Hyperlink Inspector, select "Enable as a hyperlink," and in the drop-down menu, select "Keynote File."
    Now all you have to do is click on that element when you're running the slideshow, and your other presentation will automatically open.
    Hope that helps!
    —Hazy

  • HT6114 why i can not attach new pdf files  to my email

    why i can not attach new pdf files  to my email ?

    If you aren't getting the reset link on the Password & Security section of your account then you don't have a rescue email address (an alternate email address is different), and you won't be able to add one until you can answer your questions - you will have to contact Support in your country to get the questions reset.
    Contacting Apple about account security : Contact Apple for help with Apple ID account security
    If your country isn't on that page then try this form to contact Support :  https://www.apple.com/emea/support/itunes/contact.html
    When they've been reset you can then add a rescue email address for potential future use : Manage your Apple ID primary, rescue, alternate, and notification email addresses
    Or if it's available in your country you could change to 2-step verification : Frequently asked questions about two-step verification for Apple ID

  • Unrelated Audio on new Ingested files using Prelude CC

    Why would my new Ingested files use audio from previous Ingested files that are completely unrelated when I open them in Premiere Pro CC to began a new Project? I can not hear any audio that's on the Ingested file, just a different files audio from a previous Rough Cut.

    funkydoobie wrote:
    Does Creative plan to support H.264 video in the future with a firmware update (Especially considering that the new 32 GB Zen--which is apparently out now--will feature a chip that supports H.264.)
    All Zen's (2/4/8/6/32) have the Sigmatel STMP3700, which is capable of much more than Creative care about, so probably not :-(Message Edited by m99__ on 2-05-20070:4 PM

  • Can not send new emails after upgrading to firefox 13

    can not send new emails thru att.net (which is yahoo) since upgrading to firefox 13. Says "loading" and nothing happens. Can send new emails thru gmail

    Hi,
    Not sure about ATT but plain yahoo.com seems to be okay. Can you also please check this in a [https://support.mozilla.org/en-US/kb/Managing-profiles new profile]. If the new profile is okay, you can then [https://support.mozilla.org/en-US/kb/reset-firefox-easily-fix-most-problems Reset Firefox] on the old (previous) profile via '''Help''' ('''Alt''' + '''H''') > '''Troubleshooting Information'''.

  • Can I present a keynote presentation using airplay and Apple TV? How do I set up airplay ?

    Can I present a keynote presentation using airplay and Apple TV? How do I set up airplay ?

    Hi Andy,
    You can do this reasonably easily.
    First up you need to think about how you are going to drive the TV- Your iMac could do it, but a laptop would be easier if you can access one.
    Second you need to look at the screen inputs. If it is a flat screen TV it is likely to have at least a VGA connection which you should have a connector to 'out of the box' and it will work much like connecting your mac to a projector would.
    If not you'll probably need a connector for your mac that outputs composite (a single RCA connector) or S-Video to connect. You'll need to do this connection and find out the resolution the display supports before the big day (I live in a country with PAL which typically is 720x576). Make the Keynote presso the same resolution and you should be all good. A test drive is essential!
    Here's a typical adapter from the Apple Store
    http://store.apple.com/us/product/M9267G/A?fnode=MTY1NDA5OQ&mco=MjE0NTg4NQ
    Just as a thought- you could just burn a DVD with the images- it's pretty simple to set up (with transitions) a photo library in iDVD, though a little more tricky if you need the images to appear at certain times.

  • How can I send "new" iMessages to apple users?

    I am unable to send new iMessages but I can send iMessages from previous threads. How can I send new iMessages to other apple users?

    Just click the button in the top right corner that looks like a pencil on a piece of paper make sure you are at the main I message screen were all the threads are listed.
    If that's not the issue you can try:
    1.hold the home and power button for 10-11 seconds
    2. When the slide to power off comes up ignore that and keep holding home and power
    3. The screen will go black and you will see an apple logo that's when you can let go of the home and power button
    4. The. iPhone will come back on and you can try sending a message
    If it still does not work
    1. Go to settings> General> Reset> select "Reset All Settings" this will not erase any data on the device it will only reset the settings
    2. After that try to send a message again
    If that does not work you can try this
    1. Plug your iPhone into iTunes and click your iPhone in iTunes
    2. Then press backup iPhone
    3. Then restore your iPhone this will erase everything and reinstall the operating system
    4. Try to send a message and see if it sends
    5. Then go back into iTunes and select restore from backup and select the backup you made earlier this will put all the data back on the device all apps will need to be re downloaded but app data will still be on the device. Pictures and messages. Will also be their.
    If that did not solve your issue I would then go into the apple retail store

  • How can i send a PDF file to my i phone and be able to read it

    How can i send a PDF file to my i phone and be able to read it

    Use the free Adobe Reader for iPhone -> https://itunes.apple.com/us/app/adobe-reader/id469337564?mt=8.
    Clinton

  • How can i rename a jar file using only java code

    i have tried everything i can think of to accomplish this but nothing works.

    ghostbust555 wrote:
    In case you geniuses haven't realized I said I tried everything I can think of not that I tried everything. So help or shut up I realize that I didn't try everything but if you can't figure it out either DO NOT POST.
    And the question is how can i rename a jar file using java code? As it says in the title. Read.I would tell you to use the File.renameTo method, but surely that would have been obvious, and you would have tried it already? But maybe you didn't. You were kind of lacking in details in what you tried.
    And yes, I am a genius. Just don't confuse "genius" with "mind-reader".

  • How to create a new excel file using Excel Destination when Destination file not exists.

    how to create a new excel file using Excel Destination when Destination file not exists.

    Just need to set an expression for excel connectionstring and set delay validation to true and it will create it on the fly.
    The expression should return the full path with dynamic filename in each case.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Maybe you are looking for

  • Ipod touch 4th gen not synching?

    When I tried to synch my ipod it told me that there were 3 apps I could not synch to my ipod because they werent compatible. I have used these apps forever and they just started this. The apps were ibooks, tumblr, and aviary photo editor. I think it

  • Get Certificate in java Mapping

    Hi all, How can I get the certificate in java mapping to pass in my tag?? Example: <ns0:certificate>MIICbzCCACegAWVVUUYBUYBuycuyguyUUYVUHvuyvBVUYVhvteTR+h898BIUuhOH90iuBIouiiuGhcdxwAuijnPOMoiu97tyUYGujhbhbiugg87UHVUHbuiybiiuhyrd4wjbJVUY</ns0:certific

  • How can I do to restart my questions

    how can I do to restart my answers for the security questions as I forgot then and cannot proceed with purchasing

  • So, I'm trying to install my Photoshop Elements 7 that I got with my Bamboo Pen and touch.... Serial number, lost codes.

    Yep, as the topic says, I need help. is there any way at all that I can get a code for my photoshop Elements 7 so I could use it again? I have the CD right here with me it came in a Bamboo Pen and Touch set a long time ago as part of a software packa

  • Internet for clients through squid

    i have proxy-server on linux.Squid. my clients on WinXP. I want to make internet for the whole localnet,but only several users can has it.i dont know why. On the same computer in the same group one user has access to the internet,another doesn't (the