Is there a fast way to look at all you iMessage history?

^^^

The only close way would be if you had saved everything on your phone and you could look at it. Since iMessage uses data that would not be differentiated between iMessage or email, or Internet data, you wouldn't be able to see it on your carrier's site either. Apple does not keep a record of messages.

Similar Messages

  • Is there a faster way to 'write' automation?

    I have a plugin that adjusts the gain on a vocal track.
    One of the features is to automate the adjustment so that the automation can be adjusted manually afterwards for fine tuning.
    As far as I can tell, the only way for this to happen is to 'play' the whole audio all the way through with the plugin in write mode.
    Is there any faster way to get that initial automation curve created?
    Also, is there a feature to reduce the number of automation points? IE turn 100 points into 10?
    Thanks!
    - Jac

    Thanks Eriksimon! 
      I have a plugin that will create the automation, and I'd like to edit/fine tune that automation after the plugin has created the initial automation.
      I'm looking for a way for that plugin to run through the file faster than real time so I don't have to wait an hour for the first pass to be written.
      The other thing I'd like to do is,  once the automation is drawn by the plugin, I'd like to reduce the number of points it created.  In Reaper, there is a functoin to select a bunch of points and reduce them down so that say 10 points might reduce down to 3 if most of them are reasonably redundant. I'm looking for a similar function or script for Logic Pro X.
      Thanks for the reply!

  • HT204350 Hey, migration from an old mac late 2008 aluminium to a brand new mac book air. Only the new one has firewire. Transmissiom via wifi estimates ~50h. Is there a faster Way to sync? Tanks in advance

    Hey, migration from an old mac late 2008 aluminium to a brand new mac book air. Only the new one has firewire. Transmissiom via wifi estimates ~50h. Is there a faster Way to sync? Tanks in advance

    I'll venture that your problem here is that you're using two very different versions of Mac OS X.  The USB adapter has been useful to me when making big downloads or while using other networks, but it might not be your case. 
    Here's what I would advise, though it may be less than stellar:  Copy the files you need into folders and move them through a USB flash drive or using that external hard drive of yours. (Could the format be the reason your MBA can't see it?). Some stuff like calendars and contacts can be exported too. At least in Lion, I haven't used Tiger in a while. 
    Good luck.

  • I have a ! next to some songs and i have to locate them under my music under my documents and when i do it plays in my itunes is there a faster way to do this?once i fix this can i do anything from it happening again?

    i have about 100 songs itunes shows a ! next to it says cannot find please locate i can locate them under my music under my documents and when i do it plays in itunesbut that would take a kong time is there a faster way to fix this?and once i do fix this is there a way for this not to happen again?

    Hello ryane84
    There really is not a faster way to link the songs. You could get the info on the missing songs to see where they sit on your computer and just move the files there before. Then you can organize your library to move them in the iTunes library folder or another place of your choosing. To keep it form happening again, the article does have a section on what to do to keep it organized when new media is added.
    iTunes: Finding lost media and downloads
    http://support.apple.com/kb/ts1408
    Regards,
    -Norm G.

  • Is there a fast way to wrap unstructured text into [Para] tags?

    I'm trying out my new Frame 12 by trying to produce an ebook in several formats. I'm using the out-of-copyright Agatha Christie's A MYSTERIOUS AFFAIR AT STYLES.
    Is there a fast way to wrap each paragraph with a [Para] tag?
    Thanks in advance.

    Wow, Russ, leave it to an FDK programmer to want to write a script or plugin to solve every problem! And FM does indeed have native functionality that addresses this situation. The conversion tables (see the Structured Application Developer Reference) that you mention in passing were designed to handle exactly this situation. Except that a conversion table operates on an unstructured rather than a partially structured document. So, all TdeV1 need do is:
    1. Create a new document from the chosen sample.
    2. Delete all content, including the root element.
    3. Paste the original, unstructured paragraphs.
    4. Use StructureTools > Generate Conversion Table to create a new coversion table.
    5. Complete the table as follows:
    Wrap this object or object
    In this element
    With this qualifier
    P:
    Para
    Para+
    Section
    Section
    Chapter
    6. Save the conversion table but leave it open.
    7. In the original document, use StructureTools > Utiltities > Structure Current Document.
    8. Create the needed Head elements for the Chapter and Section.
    Another alternative, available since FM 11, is Smart Paste. Recall that Smart Paste allows the user to copy material from web pages and Microsoft Office products such as Word and paste it into FM. Yes, in general, there is a significant amount of setup to prepare for using Smart Paste. However, Smart Paste is supported out of the box for DITA. So TdeV1 could do the following:
    1. If the content originated in Word, open the Word document and copy the paragraphs to the clipboard.
    2. Use DITA > New DITA File > New <topic> to create a new DITA document.
    3. Click in the <body> element to set an insertion point within that element.
    4. Use Edit > Smart Paste. FM will paste the content, converting each paragraph to a <p>.
    5. Copy the resulting <p> elements to the clipboard.
    6. Paste the <p> elements into the actual document.
    7. Select the <p> elements and use the Element Catalog (or Ctrl-3 to bring up the Smart Catalog for changing elements) to change them to <Para> elements.
    However the structured document is created, while this sample template is appropriate for initial experimentation with structured FM, it is intended for technical material and not optimal for fiction. To get the most out of a structured document for production work, it's almost always necessary to define elements and attributes appropriate to the particular project.
        --Lynne

  • Is there a faster way to sync?

    Hello.
    I had some issues with my Apple TV and MAcBook syncing yesterday and I had to pair my computer again, and the content of Apple TV was erased. So now I have to sync everything again but its taking hours (I think even days). My internet connection might be causing some slow syncing.
    Is there a faster way to sync for the first time? (I guess just to transfer around 50 GB of info into apple TV, and then, wireless works out just fine)
    I left my computer all night syncing and it only did around 11 GB, after that, it went into sleep and stopped syncing.
    Cheers and thanks...
    IA

    your internet connection have nothing to do with the sync'ing between your computer and atv
    you don't even have to have an internet connection to sync
    you can try using eathernet rather then wifi but not sure how much it would help
    really the bottleneck seem to be located elsewhere i suspect

  • Is there a faster way to figure out what a negative number in base 8 is?

    Hi,
    Altough I know that using base 8 in java is rare, I am still curious about ways to convert from a negative decimal number into a base 8 number.
    For example, when we want to find out the negative representation of -11 (base 10) in base 8 . I would first convert -11 into the 2's complement representation of base 2 first (i.e. 11 in binary is 00001011; -11 two's complement is then 11110101). I then convert this into base 8 (365). Is there a faster way for this?
    I hope i am not confusing everybody.
    Thank you.
    - nygrl

    Octal values from 0 to Integer.MAX_VALUE is
    between 0 and 17777777777, and those from
    Integer.MAX_VALUE to -1 is from 20000000000 to
    37777777777.correction:
    Octal values from 0 to Integer.MAX_VALUE is between 0 and 17777777777, and those from Integer.MIN_VALUE to -1 is from 20000000000 to 37777777777.

  • Is there a fast way to convert mp3 to mp4?

    Got a large library of audiobooks in itunes that are in mp3 format.  I want to convert them to mp4.  Join Together by Doug Adams does a great job of this but is sloooow (appears that Quicktime is running in single step mode.)  Is there a faster way to make the conversion?  What are the best sample rates and data rate for a fast conversion?
    Thanks for any suggestions.

    You still haven't talked about the reason for converting, other than easier to use. I can read between the lines and guess that you are copying the files to some special device that doesn't like MP3,but no idea what it is or why MP3 doesn't work with it. Also, are you settled on using AAC format? I think it is a more advanced format intended to replace MP3 (Haha... sorry, just thinking about how long these PC guys took to give up on Windows XP-- they will fight much harder before giving up MP3 and AVI),
    Try Max for conversions. It has a batch feature (drag a dozen files to the window and click the Convert icon). Here is the comparison I got:
    Using iTunes to convert a 3:02 length song, 192 kbps, 4.2MB MP3 to AAC 128 kbps, 2.8 MB, the conversion time is 59 seconds.
    Using Max (free) to convert the same MP3 to the same setting of AAC 128 kbps, 2.9 MB, the conversion time is 37 seconds.

  • Hi, my iPhone 3GS wall charger stoped working, and I went to Orange shop with my warranty and L.I.G. insurance.They said I should also give them the phone for almost 10 days, isn't there a faster way, is it possible the Apple Store replaces my wall charge

    My 5YO daughter owns her very own IPhone 3GS, she got it for her 5YO birthday on the 24th of june. its allready upgraded to iOS5, and works like a charm.
    Last evening, while it was charging, a flame appeared and the charger stopped working.The USB still works.
    It was plugged in a Belkin 3700 joule along with my 47 Inch Full HD TV .
    No storm or something like that, and there was nothing wrong with my TV, as in was still running.
    Problem.
    I went today to an Orange store here in Romania, with the charger, invoice,warranty, and L.I.G. (London Insurrace Group ((I think))) insurrance, and they said I MUST also bring the iPhone, and thet it will take just about 10 working days for them to give me back the Iphone, and a new charger.
       Is there a faster way I can get the wall charger replaced?
    Should I try going to the Apple Store with the warranty from Orange.
    Thank you for your answers.
    Please excuse my English.
    CONDOLENCES APPLE. for your painfull loss.

        I can see that this issue has been quite extensive, and frustrating, and I am so sorry for all that has happened societygirl! I would like to help you work this issue out. Please follow & send me a Direct Message, so I can get your account specifics and help finally bring this to a resolution.
    Thank you,
    MichelleH_VZW
    Follow us on Twitter @VZWSupport

  • I am migrating from my old black MacBook to a new MacBook pro over wifi but why does it take SO Long...?  I have about 400 gig to transfer and it says 80 hours!  Can this be right?  Is there a faster way?  Is there a way to cancel the migration?

    I have an old black MacBook (2006) and want to migrate to my new MacBook pro i7. The migration assistant offered me the prospect of migrating via wifi.  Stated at 108 hours to transfer about 400 gig. Now revised down to 85 hours. Why is this so so so long??  Is there a faster way?  What happens if I cancel now.  Is there a way to cancel? As there is no cancel button....
    Ay suggestion sighing the next 80 hours very much appreciated.

    The 2006 MacBook has firewire. Use a cable like this. Boot the '06 with the T key held down until you see the Firewire icon. Connect the 400 port on the '06 to the 800 port on the i7. Run Migration Assistant. 400 GB will still take a long time, but it will be closer to 8 hours I think.

  • I have backed up all my music on an external hard drive and i was wondering is there a quick way to put it all back on itunes.

    i have backed up all my music on an external hard drive and i was wondering is there a quick way to put it all back on itunes.

    Hello, Gazzlaa84.
    You can import your media a couple different ways.  If you plan on keeping the media on the external drive, I would just direct iTunes to read the media folder on the external.  Here are the steps on how to make that change.
    iTunes for Windows: Moving your iTunes Media folder
    http://support.apple.com/kb/HT1364
    iTunes for Mac: Moving your iTunes Media folder
    http://support.apple.com/kb/HT1449
    Also, here is another great resource for moving your iTunes media. 
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    Cheers,
    Jason H. 

  • My Iphone 4 has a cracked screen and has made it impossible for me to unlock my pin. I an giving the phone to a friend but want to know if there is a way I can ensure all my data is wiped off it before I do. Can anyone help?

    My Iphone 4 has a cracked screen and has made it impossible for me to unlock my pin. I an giving the phone to a friend but want to know if there is a way I can ensure all my data is wiped off it before I do. Can anyone help? I have upgraded to a iPhone 5 so Im not sure if the old one would have automatically wiped the old phone. I have lots of emails and messages I wouldnt want peo

    Have you synced this phone, with iTunes, while the passcode was enabled? If so, plug it in, iTunes running, & hit the Restore button on the Summary Pane. This will also erase the phone.
    However, if you have not synced, while the passcode was enabled, you will not be able to do this without first enereting the passcode. If that's the case, try recovery mode:
    http://support.apple.com/kb/HT1808

  • How do you disable "Connect to iTunes to Enable Push Notification" Message when opeing an app? Thie message is compeleyely annoying and theres is no way to cancel it. You have to clcik on "OK" to use the app.

    How do you disable the "Connect to iTunes to Enable Push Notifications" prompt when opening apps on an iPad (OS7)? The message is completely annoying and there is no way to cancel it. You must click on "OK" to use the app. I have already disabled notifications on those apps in the Notification Center.

    The best way to do this is to leave all files unchanged, but render the file containing that horrendous bird noise unreadable to the system. Open a terminal window, and paste this command:
    sudo chmod 000 /System/Library/Frameworks/Social.framework/XPCServices/com.apple.twitter.xpc/C ontents/Resources/TwitterSent.caf
    That's it. Your Tweets should hereinafter be silent unless you change TwitterSent.caf's permissions again.

  • I had been using iMessage all along with my friend who is using an iPhone 6. I choose to send a sms to him as I do not have any connection, after that there is no way I can send him an iMessage again. Can anyone advise how do I switch back?

    I had been using iMessage all along with my friend who is using an iPhone 6. I choose to send a sms to him as I do not have any connection, after that there is no way I can send him an iMessage again. Can anyone advise how do I switch back? I had tried resetting the network setting, toggling off the sms but to no avail.
    Thank you.
    Regards

    What do you mean you choose to send him an SMS because you don't have any connection. What kind of connection? Delete the thread with that individual that you sent via SMS, and as long as you have iMessage activated on your device and your friend has an active data connection, it should recognize that and send as an iMessage. Another scenario is to have the friend send you a message that you can respond to.

  • Is there a fast way to change size and Res in multiple photos?

    I have cs5 and am trying to change 70 to 100 photos from 4288x2848 300ppi psd, To 1000x664 at 72ppi jpeg quickly. Is there an easy way? If there is not a fast way to do it what is the best way to do it? Any help would be appreciated.

    Yep it can be done in bridge.
    First copy the files to another folder for protection.(just in case something went wrong)
    Select all of the files then click the export tab (may need upgrading of bridge to see the tab, not sure)
    Double click save to hard drive,
    The Image options tab will let you change the size of the image.  However it looks like the resizing is restrained only and does not offer a ppi setting.
    Your other option is to use image processor.
    First create an action that will change the ppi.
    Now it just a matter of running image processor and tell it what folder has the images you want changed, what folder you want the new images at, The file type and file size, and finally the action you just created.
    image processor can be run from photoshop (file>scripts>image processor) or bridge (tools>photoshop>image processor)
    Whether or not ppi has to be change depends on what you are using the images for. Prints require it to set the print size, for the screen it is not required since the screen has no way of knowing how to use ppi.

Maybe you are looking for