Turn a PDF into an App? Can it be done?

I have a few PDF files that I use constantly for reference on the job. I can open them in a reader app like GoodReader, but I do have to drill down to the specific documents each time I need to open one.
How great it would be to have each of the documents as an app, with its own icon on a launcher screen!
Does anyone know of any way to turn a PDF (or any other) document into its own app that can go onto the screen?

The only way that I can think of is to place them on a web server somewhere. navigate to them in safari and tell safari, to save the shortcut to that webpage on the home screen. then when you click on the shortcut, safari opens to that "page" which is really the pdf being served as a web page.
a Developer can make a simple app to display one pdf as the home pdf, but you couldn't install more than one version of the app at a time, so you could only have one pdf ready at a time. Kinda useless.
Jason

Similar Messages

  • How do I turn a PDF into a JPEG?

    How do I turn a PDF into a JPEG?

    Hi joeyk86530628,
    If you have Adobe PDF Pack, you can export that PDF file to JPEG format. You can use Acrobat, as well, if you have that.
    If you don't have Acrobat, you're welcome to give it a try. You can download a free 30-day trial from http://www.adobe.com/products/acrobat.html. In Acrobat, you choose File > Save as Other > Image > JPEG (or JPEG2000).
    Please let us know if you have additional questions.
    Best,
    Sara

  • Help! Turning a PDF into an Online Document

    Hello Community,
    I spend a lot of my time taking PDF versions of large chart books, hyperlinking and bookmarking to the nth degree, and writing commentary on these charts. The PDF's can be anywhere from 15 to 500 pages long (sometimes longer) and they range in file size from a couple mbs to sometimes 40-50mbs.
    For larger PDF's that I can't email, I will start using a service like AdobeSend which will be very helpful.
    What I really want to do however is somehow get my PDF's online in a webpage kind of a format. Is something that a layman can do or do I need a degree in website design or programming or something.
    The ideal world would be where the cover of the PDF would be like the home page of a website. Each link or bookmark in the document would function like hypertext in a website. That way, I wouldn't need to send the file at all, it would just be hosted somewhere and whoever had the webaddress could access the online PDF.
    I've looked at website creation sites like Wix, but I didn't see initially how I can host a large PDF document using their site builder. If anyone knows of a good way to turn a linked PDF into a Website like document I would be forever grateful.
    thank you

    Is the PDF embedded?
    Is the color used on a vector object?
    If so you can copy the Pantone color from one object to another with the color picker.
    You can't read the color in the color picker window. You can't pick up any exact color (let alone a spot color) from linked files.

  • How to turn this Java into something I can use in CF?

    Hi - Following on from a recent post about how to strip our special characters from a string before insertion to the db I have found this Java code - my question is, how can I turn this into something I can use with CF? I think I need to use the cfscipt tag but that's right on the boundaries of my knowledge base.. If anyone could please help I'd be ever so grateful - thank you!
    package net.htmlescape;
    * HtmlEscape in Java, which is compatible with utf-8
    * @author Ulrich Jensen, http://www.htmlescape.net
    * Feel free to get inspired, use or steal this code and use it in your
    * own projects.
    * License:
    * You have the right to use this code in your own project or publish it
    * on your own website.
    * If you are going to use this code, please include the author lines.
    * Use this code at your own risk. The author does not warrent or assume any
    * legal liability or responsibility for the accuracy, completeness or usefullness of
    * this program code.
    public class HtmlEscape {
      private static char[] hex={'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
       * Method for html escaping a String, for use in a textarea
       * @param original The String to escape
       * @return The escaped String
      public static String escapeTextArea(String original)
        return escapeSpecial(escapeTags(original));    
       * Normal escape function, for Html escaping Strings
       * @param original The original String
       * @return The escape String
      public static String escape(String original)
        return escapeSpecial(escapeBr(escapeTags(original)));
      public static String escapeTags(String original)
        if(original==null) return "";
        StringBuffer out=new StringBuffer("");
        char[] chars=original.toCharArray();
        for(int i=0;i<chars.length;i++)
          boolean found=true;
          switch(chars[i])
            case 60:out.append("&lt;"); break; //<
            case 62:out.append("&gt;"); break; //>
            case 34:out.append("&quot;"); break; //"
            default:found=false;break;
          if(!found) out.append(chars[i]);
        return out.toString();
      public static String escapeBr(String original)
        if(original==null) return "";
        StringBuffer out=new StringBuffer("");
        char[] chars=original.toCharArray();
        for(int i=0;i<chars.length;i++)
          boolean found=true;
          switch(chars[i])
            case '\n': out.append("<br/>"); break; //newline
            case '\r': break;
            default:found=false;break;
          if(!found) out.append(chars[i]);
        return out.toString();
      public static String escapeSpecial(String original)
        if(original==null) return "";
        StringBuffer out=new StringBuffer("");
        char[] chars=original.toCharArray();
        for(int i=0;i<chars.length;i++)
            boolean found=true;
          switch(chars[i]) {
            case 38:out.append("&amp;"); break; //&
            case 198:out.append("&AElig;"); break; //Æ
            case 193:out.append("&Aacute;"); break; //Á
            case 194:out.append("&Acirc;"); break; //Â
            case 192:out.append("&Agrave;"); break; //À
            case 197:out.append("&Aring;"); break; //Å
            case 195:out.append("&Atilde;"); break; //Ã
            case 196:out.append("&Auml;"); break; //Ä
            case 199:out.append("&Ccedil;"); break; //Ç
            case 208:out.append("&ETH;"); break; //Ð
            case 201:out.append("&Eacute;"); break; //É
            case 202:out.append("&Ecirc;"); break; //Ê
            case 200:out.append("&Egrave;"); break; //È
            case 203:out.append("&Euml;"); break; //Ë
            case 205:out.append("&Iacute;"); break; //Í
            case 206:out.append("&Icirc;"); break; //Î
            case 204:out.append("&Igrave;"); break; //Ì
            case 207:out.append("&Iuml;"); break; //Ï
            case 209:out.append("&Ntilde;"); break; //Ñ
            case 211:out.append("&Oacute;"); break; //Ó
            case 212:out.append("&Ocirc;"); break; //Ô
            case 210:out.append("&Ograve;"); break; //Ò
            case 216:out.append("&Oslash;"); break; //Ø
            case 213:out.append("&Otilde;"); break; //Õ
            case 214:out.append("&Ouml;"); break; //Ö
            case 222:out.append("&THORN;"); break; //Þ
            case 218:out.append("&Uacute;"); break; //Ú
            case 219:out.append("&Ucirc;"); break; //Û
            case 217:out.append("&Ugrave;"); break; //Ù
            case 220:out.append("&Uuml;"); break; //Ü
            case 221:out.append("&Yacute;"); break; //Ý
            case 225:out.append("&aacute;"); break; //á
            case 226:out.append("&acirc;"); break; //â
            case 230:out.append("&aelig;"); break; //æ
            case 224:out.append("&agrave;"); break; //à
            case 229:out.append("&aring;"); break; //å
            case 227:out.append("&atilde;"); break; //ã
            case 228:out.append("&auml;"); break; //ä
            case 231:out.append("&ccedil;"); break; //ç
            case 233:out.append("&eacute;"); break; //é
            case 234:out.append("&ecirc;"); break; //ê
            case 232:out.append("&egrave;"); break; //è
            case 240:out.append("&eth;"); break; //ð
            case 235:out.append("&euml;"); break; //ë
            case 237:out.append("&iacute;"); break; //í
            case 238:out.append("&icirc;"); break; //î
            case 236:out.append("&igrave;"); break; //ì
            case 239:out.append("&iuml;"); break; //ï
            case 241:out.append("&ntilde;"); break; //ñ
            case 243:out.append("&oacute;"); break; //ó
            case 244:out.append("&ocirc;"); break; //ô
            case 242:out.append("&ograve;"); break; //ò
            case 248:out.append("&oslash;"); break; //ø
            case 245:out.append("&otilde;"); break; //õ
            case 246:out.append("&ouml;"); break; //ö
            case 223:out.append("&szlig;"); break; //ß
            case 254:out.append("&thorn;"); break; //þ
            case 250:out.append("&uacute;"); break; //ú
            case 251:out.append("&ucirc;"); break; //û
            case 249:out.append("&ugrave;"); break; //ù
            case 252:out.append("&uuml;"); break; //ü
            case 253:out.append("&yacute;"); break; //ý
            case 255:out.append("&yuml;"); break; //ÿ
            case 162:out.append("&cent;"); break; //¢
            default:
              found=false;
              break;
          if(!found)
            if(chars[i]>127) {
              char c=chars[i];
              int a4=c%16;
              c=(char) (c/16);
              int a3=c%16;
              c=(char) (c/16);
              int a2=c%16;
              c=(char) (c/16);
              int a1=c%16;
              out.append("&#x"+hex[a1]+hex[a2]+hex[a3]+hex[a4]+";");    
            else
              out.append(chars[i]);
        return out.toString();

    hi Dan, thanks for asking
    I did this in the end..
    <cfscript>
      // function cleantext(string) {
      //   string = "<p>" & string;
      //   string = Replace(string, chr(13) & chr(10) & chr(13) & chr(10), "</p><p>", "all");
      //   string = Replace(string, chr(13) & chr(10), "<br />", "all");
      //   string = string & "</p>";
      //   return string;
    * HtmlEscape in Java, which is compatible with utf-8
    * @author Ulrich Jensen, http://www.htmlescape.net
    * Feel free to get inspired, use or steal this code and use it in your
    * own projects.
    * License:
    * You have the right to use this code in your own project or publish it
    * on your own website.
    * If you are going to use this code, please include the author lines.
    * Use this code at your own risk. The author does not warrent or assume any
    * legal liability or responsibility for the accuracy, completeness or usefullness of
    * this program code.
    function cleantext(string)  {
      private static char[] hex={'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
       * Method for html escaping a String, for use in a textarea
       * @param original The String to escape
       * @return The escaped String
      public static String escapeTextArea(String original)
        return escapeSpecial(escapeTags(original));   
       * Normal escape function, for Html escaping Strings
       * @param original The original String
       * @return The escape String
      public static String escape(String original)
        return escapeSpecial(escapeBr(escapeTags(original)));
      public static String escapeTags(String original)
        if(original==null) return "";
        StringBuffer out=new StringBuffer("");
        char[] chars=original.toCharArray();
        for(int i=0;i<chars.length;i++)
          boolean found=true;
          switch(chars[i])
            case 60:out.append("&lt;"); break; //<
            case 62:out.append("&gt;"); break; //>
            case 34:out.append("&quot;"); break; //"
            default:found=false;break;
          if(!found) out.append(chars[i]);
        return out.toString();
      public static String escapeBr(String original)
        if(original==null) return "";
        StringBuffer out=new StringBuffer("");
        char[] chars=original.toCharArray();
        for(int i=0;i<chars.length;i++)
          boolean found=true;
          switch(chars[i])
            case '\n': out.append("<br/>"); break; //newline
            case '\r': break;
            default:found=false;break;
          if(!found) out.append(chars[i]);
        return out.toString();
      public static String escapeSpecial(String original)
        if(original==null) return "";
        StringBuffer out=new StringBuffer("");
        char[] chars=original.toCharArray();
        for(int i=0;i<chars.length;i++)
            boolean found=true;
          switch(chars[i]) {
            case 38:out.append("&amp;"); break; //&
            case 198:out.append("&AElig;"); break; //Æ
            case 193:out.append("&Aacute;"); break; //Á
            case 194:out.append("&Acirc;"); break; //Â
            case 192:out.append("&Agrave;"); break; //À
            case 197:out.append("&Aring;"); break; //Å
            case 195:out.append("&Atilde;"); break; //Ã
            case 196:out.append("&Auml;"); break; //Ä
            case 199:out.append("&Ccedil;"); break; //Ç
            case 208:out.append("&ETH;"); break; //Ð
            case 201:out.append("&Eacute;"); break; //É
            case 202:out.append("&Ecirc;"); break; //Ê
            case 200:out.append("&Egrave;"); break; //È
            case 203:out.append("&Euml;"); break; //Ë
            case 205:out.append("&Iacute;"); break; //Í
            case 206:out.append("&Icirc;"); break; //Î
            case 204:out.append("&Igrave;"); break; //Ì
            case 207:out.append("&Iuml;"); break; //Ï
            case 209:out.append("&Ntilde;"); break; //Ñ
            case 211:out.append("&Oacute;"); break; //Ó
            case 212:out.append("&Ocirc;"); break; //Ô
            case 210:out.append("&Ograve;"); break; //Ò
            case 216:out.append("&Oslash;"); break; //Ø
            case 213:out.append("&Otilde;"); break; //Õ
            case 214:out.append("&Ouml;"); break; //Ö
            case 222:out.append("&THORN;"); break; //Þ
            case 218:out.append("&Uacute;"); break; //Ú
            case 219:out.append("&Ucirc;"); break; //Û
            case 217:out.append("&Ugrave;"); break; //Ù
            case 220:out.append("&Uuml;"); break; //Ü
            case 221:out.append("&Yacute;"); break; //Ý
            case 225:out.append("&aacute;"); break; //á
            case 226:out.append("&acirc;"); break; //â
            case 230:out.append("&aelig;"); break; //æ
            case 224:out.append("&agrave;"); break; //à
            case 229:out.append("&aring;"); break; //å
            case 227:out.append("&atilde;"); break; //ã
            case 228:out.append("&auml;"); break; //ä
            case 231:out.append("&ccedil;"); break; //ç
            case 233:out.append("&eacute;"); break; //é
            case 234:out.append("&ecirc;"); break; //ê
            case 232:out.append("&egrave;"); break; //è
            case 240:out.append("&eth;"); break; //ð
            case 235:out.append("&euml;"); break; //ë
            case 237:out.append("&iacute;"); break; //í
            case 238:out.append("&icirc;"); break; //î
            case 236:out.append("&igrave;"); break; //ì
            case 239:out.append("&iuml;"); break; //ï
            case 241:out.append("&ntilde;"); break; //ñ
            case 243:out.append("&oacute;"); break; //ó
            case 244:out.append("&ocirc;"); break; //ô
            case 242:out.append("&ograve;"); break; //ò
            case 248:out.append("&oslash;"); break; //ø
            case 245:out.append("&otilde;"); break; //õ
            case 246:out.append("&ouml;"); break; //ö
            case 223:out.append("&szlig;"); break; //ß
            case 254:out.append("&thorn;"); break; //þ
            case 250:out.append("&uacute;"); break; //ú
            case 251:out.append("&ucirc;"); break; //û
            case 249:out.append("&ugrave;"); break; //ù
            case 252:out.append("&uuml;"); break; //ü
            case 253:out.append("&yacute;"); break; //ý
            case 255:out.append("&yuml;"); break; //ÿ
            case 162:out.append("&cent;"); break; //¢
            default:
              found=false;
              break;
          if(!found)
            if(chars[i]>127) {
              char c=chars[i];
              int a4=c%16;
              c=(char) (c/16);
              int a3=c%16;
              c=(char) (c/16);
              int a2=c%16;
              c=(char) (c/16);
              int a1=c%16;
              out.append("&#x"+hex[a1]+hex[a2]+hex[a3]+hex[a4]+";");   
            else
              out.append(chars[i]);
        return out.toString();
    </cfscript>  
    <cfset cleanedtext = cleantext(dirtytext)>
    Although actually I also ended up changing my charset of my tables to utf8 (it was latin_swedish) and that seems to have solved the head issue (with special characters (bullet points i think it was) throwing an error when inserting them in the db)

  • How do I turn my PDF into a URL address?

    Hi...
    I am all very new to this and I need major help! I have a
    image that I made a PDF using Adobe Acrobat. The file is saved on
    my MAC desktop called test.pdf. I want to put this as a link on my
    website. I need to turn the PDF and give it a web address (URL) but
    I have no idea how to do that. I know that after I get the URL to
    my PDF I then have to find an HTML code to post onto my hosting
    server so the document is clickable. Can someone please help? I am
    very new to all of this so please be as simple as possible and talk
    to me as if I were 5 years old! :)
    THANK YOU THANK YOU THANK YOU!!

    Thank you for your posting. These forums are specific to the
    Acrobat.com website and it's set of hosted services, and do not
    cover the Acrobat family of desktop products. Please visit the
    following forums for any questions related to the Acrobat family of
    desktop products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/

  • Unable to install AcrobatProDC to convert pdf to power point can it be done with Pro?

    I'm unable to install AcrobateProDC to convert pdfs to powerpoint, can it be done with AcrobatPro?

    Hi markn117,
    Could you please let me know what version of OS are you using.
    Please ensure that you are signed in as administrator and anti-virus software is disabled temporarily as that might interrupt the installation process.
    What exactly happens when you try to install Acrobat DC? Does the installation stuck in between?
    Is there any message dialog box that prompts on your screen?
    Using Acrobat Pro DC, you can definitely export any PDF to PowerPoint with ease.
    Let me know more so that I can help you out with the same.
    Regards,
    Anubha

  • I was updating an app and i went into the app after it was done and it froze, to resolve that issue i pressed the sleep mode button but now it wont turn on

    please help

    Try:                           
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

  • Turning 2pg pdf into 2 - 1pg pdfs

    I converted a word document to pdf, its a postcard, front and back.  Now I realize I need the front in one document and the back in another. Is there any way to do that now that its already a pdf?

    Use Document>Extract pages and choose to save pages as seperate files.
    But of course this requires Acrobat and not the free Reader.

  • Drag and drop images into anchored frames -- can this be done with the images imported by reference?

    My company bought a product from another company and the only manuals files that came with it were in pdf format. I am currently grabbing text out in Acrobat, then pasting and reformatting it in FrameMaker. Boring and tedious. . . .
    Eventually I get to the point of importing the illustrations. There are *hundreds* of them. As a rule, we import the files by reference, to keep the chapter size smaller and to be able to double click the image to open it for modification.
    However, I can drag an image file from the folder window and drop it into an anchored frame. Oooh, this is fast--way faster than all the mousework that goes into clicking file>import>file>[choosing the file then hitting the import button].
    But, dang it, that copies the image into the FrameMaker file. No double-click opening. Giant fm. file size. Mad boss, shaking an SOP standards sheet in my face.
    So, my question: Is there a way to import an image *by reference* by dragging and dropping them into an anchored frame?
    Thanks, folks.
    Moore. Matt Moore.

    I tried the RTF route and, in addition to getting the body text I wanted, got paragraph after paragraph of the page numbers, the illustration text, the header and footer verbiage, all randomly placed between body text paragraphs.
    I did the same file twice, once by saving as RTF and deleting unwanted stuff, then repairing body paragraphs (each line of which is a seperate paragraph in the RTF file) and also by sweeping only the necessary text, then copying and pasting it page by page. The second method was a bit faster and less frustrating. Not to say that it isn't slow and frustrating in itself, but just a bit less. Less errors, too, with the second method.
    Bummer about importing by reference. I don't suppose there's a way to set up recorded actions with hotkeys, is there? Like in Illustrator?
    Thanks, Art.
    Moore. Matt Moore.

  • I have an iPad and would like to replicate my Bookmarks list from Firefox for MAC to my iPad Safari.app; can this be done automatically?

    I have a MacBook Pro running OS X 10.5.7, and an iPad 2 running iOS 6.1.3.
    On the MAC, I have Firefox for MAC v 19.0.2 and Safari 6.0.3
    On the iPad, I have only Safari for iPad. I always use Firefox as my browser for the MacBook, but there is no Firefox app for the iPad.
    My Safari bookmarks automatically update from the MacBook to the iPad, but not from Firefox to the iPad. Is it possible for the automatic update to be made from Firefox instead of Safari to the iPad Safari.app? If not, is there an easy way on the MacBook to keep the Safari bookmarks up to date with the Firefox bookmarks, so that the iPad shares my Firefox bookmarks?
    If not possible now, are you planning to make this possible for MAC users who also have an iPad?

    See:
    *https://blog.mozilla.org/services/2012/08/31/retiring-firefox-home/
    *http://itunes.apple.com/us/app/bookmarks-on-the-go/id550037184

  • I want to combine several libraries on several drives into one library, Can this be done?*

    I have several itunes libraries and playlists on several drives and directories.  Is there an easy way to combine all these files into one library with one play list?  Currently it takes up alot of space and I do not have all the media available readily useable.

    Interesting. If it claims to do it, then it should; I didn't think it did. Importantly, Acrobat doesn't know how to read INDD files, except that it knows how to run InDesign to make a conversion. If there is any trouble running InDesign on that machine, it will affect it.
    Still, I'd recommend exporting. With InDesign documents the export settings used are critical, and you'd want to control them rather than have some default.

  • Can a PDF be an app?

    1.  Can you offer fillable pdf forms as an iphone or an ipad app?     Can you store the PDF on the phone?   
    2..  If you store a  PDF in the cloud...can somone access and display the PDF on their phone?  
    3.  Does Adobe have a ist of third party developers we can contract with to create fillable pdf forms?
    If we set up the signature field as just a field on the form, the user can touch this field and electronically sign the form. 
    So we get the power of electronic signatures on a PDF form.
    thanks
    kml

    What if we did it this way:
    1.   collect the data fields for the form on an ipad or ipphone
    2.   collect the signature as another data field
    3.   create an xml word doc......integrate the data fields into the word doc
    4.   convert the word doc to a pdf
    5.   store the pdf in the cloud
    6.   the user can access the pdf from his phone... he could share access with others.
    does this work?
    Kathy Lane
    650-823-5998
    http://www.diesmart.com
    http://www.twitter.com/diesmart
    Date: Wed, 21 Mar 2012 09:20:59 -0600
    From: [email protected]
    To: [email protected]
    Subject: Can a PDF be an app?
        Re: Can a PDF be an app?
        created by Joel_Geraci in Security & Digital Signatures - View the full discussion
    klm: 1) The Adobe Reader on mobile devices currently doesn't support form filling or JavaScript so while you can store and view PDF files on a number of phones, you can't easily fill out the forms using the Adobe products. There ar ethird party tools that allow you to add comments but I haven't seen anything that will turn the PDF into an APP. 2) Yes - I use DropBox and it works great. 3) You might check out AcrobatUsers.com instead 4) Since forms don't work on the mobile versions, signatures don't either. J-
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4280344#4280344
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4280344#4280344. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Security & Digital Signatures by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to combine PDFs into a single PDF and preserve links between original PDFs within single PDF

    Acrobat Pro can combine multiple PDF files into one PDF file.
    However, during this process not all links are supported.
    Links within the individual PDF files that are combined seem to work in the single resulting PDF file.
    Links that were between the individual PDF files when combined do not seem to work in the single resulting PDF file.
    Combining the PDF files should support the links that were btween the original individual PDF files in the resulting single PDF file.
    How can this be done?

    Sorry, not possible.

  • How to import epub/pdf into macvericks' ibooks ?

    how to import epub/pdf into macvericks' ibooks ?

    Placing the PDF into an InDesign document shouldn't be a problem, but if it is, please post back. What I think you're asking for is how to edit a PDF with InDesign, which can't be done. You would need the source document, edit that and then export to another PDF (if PDF is the end goal). There are some programs that can edit PDFs or convert PDFs to other formats (Word, InDesign, etc.), and they will work to one extent or another. You should expect to have to rework parts of it should you go that way. Keep in mind that PDF is generally considered a final document that isn't intended to be edited.

  • How to add ADMOB advertisement into Android app using ADF Mobile

    hi,
    i need to integrate ADMOB advertisement into Android app.
    can i do that using Oracle ADF mobile?
    regards,
    ad

    Hi,
    I think, there is one example for ADF Mobile push notification with Google Cloud Messaging.
    http://deepakcs.blogspot.in/2013/06/adf-mobile-push-notifications-with.html
    Eba

Maybe you are looking for

  • How to share iPhoto with other accounts in same machine

    If I have a lot of pictures in iPhoto in my IMAC and want to be able to share with my wife when she login in as her. Is that possible. Thanks.

  • How to delete google search history in safari on itouch ?

    Hi All ! I would like to know how I can delete the google search history in safari? Thanks

  • How to add log details for marketing attributes

    Hi, when user is changing marketing attributes in bp transaction we need to show the log details in log file.how to capture the change log details in to log file ? is there any way to show change log files. rose

  • Regarding advance receipt from one time vendor

    Hai friends,                 i am trying to receipt advance from one time vendor. while i am posting in f-48 i am getting a error that there is no necessary setting for special gl transactions for one time vendor. can any one help me to sort it out t

  • Printing selected addresses for group

    I open address book; from Edit menu,choose Edit Distribution List; choose the group I want to print; choose the addresses I want to use; click OK--and when I try to print labels for the group, all addresses print, not just the ones I've chosen. When