In Conversation View is there any way to see my own contributions to the conversation?

That is pretty much it!
When in Conversation view I would like to be able to see my own emails as well, so I know what people are replying to, is this possible?

Based on what wikipedia said for iOS 5 you will be able to purchase text tones. SO you will have to wait till then. Hopefully someone will release an app to create your own much like they have now.

Similar Messages

  • Is there any way to see a Flickr group in the Apple TV screen saver

    I can easily add an individual but there MUST be a way to add a group. The Flickr URL just changes from /photos/***** to /groups/****.
    Any ideas?

    Hi there
    Try clicking Project > Rescale and scaling the project to be a smaller size.
    Note that you probably want to leave the "Maintain aspect ratio" option selected (you are welcome Lilybiri )
    Additionally, note that rescaling will inevitably result in a loss of fidelity. Things just begin to fuzzy up when you do that. The degree to which it suffers is in direct proportion to how much scaling you wish to do.
    As a final note, you only really want to ever rescale a project once. So if you aren't sure about the final outcome, click File > Save As and rescale. Look at it. LIke it? Terrific! Keep it! Don't like it so much? Scrap it and open the original again. Then again click File > Save As...
    Rinse and repeat as necessary... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • HT201299 Is there any way to see what apps are consuming the iPad's cellular data?

    The rapid usage of my cellular data and resulting drain on battery life has been a real issue since iOS6. If I disable cellular data, things improve dramatically. It would sure be nice to know who the culprit is. Any apps to help with this?
    Thanks!

    Never heard of one - the sandboxed nature of iOS would make it impossible to build an app to do so, since apps are isolated from each other and each others data.
    All you can do is the trial and error method.
    A couple of iOS features to check though, are
    Settings - General - About - Advertising - Limit Ad tracking = ON
    Settings - General - About - Diagnostics and Usage - DON'T SEND (checked)
    Settings - General - About - Date and Time - Time Zone = OFF (uses location services to check if you've crossed a time zone - unnecessary use of location services if you are not travelling outside of any wifi or cell coverage)
    Settings - General - Restrictions - Location Services - System Services - all OFF (these involve transmitting location based data out, ie. from your device).

  • Is there any way to set default column widths in the Finder's Column view

    When my Finder windows open in column view, all the columns are always VERY wide. I have to then spend time resizing them to a managable width. Is there any way to set default column widths in the Finder's Column view?
    <Re-Titled By Host>

    No, because you can't set a columns view default.
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • I wanted to know how to view the gifts I've sent to people and (if possible) know if they received and downloaded them. Is there any way to do that, other than asking the person?

    I wanted to know how to view the gifts I've sent to people and (if possible) know if they received and downloaded them. Is there any way to do that, other than asking the person? Obviously I want the gift to be a surprise (for my best friend specifically) so asking them if they received it would ruin that.

    Have you tried resetting your iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.

  • Only an exclamation point shows up when I click a thumbnail in my iphoto folder. Is there any way to recover these photos by using the thumbnails?

    Only an exclamation point shows up when I click a thumbnail in my iphoto folder. Is there any way to recover these photos by using the thumbnails? Please help. Thanks!

    That exclamation mark is displayed when iPhoto cannot link to the original file.  First make sure you are running a "managed" library by checking iPhoto's Advanced preference pane to make sure the checkbox to copy files into the library during import is checked.
    Click to view full size
    If it is checked you can try the following: make a temporary, duplicate copy of the library and apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • I'm wondering is there any way to see what tool is selected in full screen mode?

    Question: Is there any way to see what tool is selected in professional full screen mode when tools and windows are hidden?
    Here's an example what i mean..i made a sketch
    So what i mean is for example you are in full screen mode, and you press "U" to activate Rectangle Tool >>> you see like pop-up or anything similar that shows you what tool is selected.
    Thank you!

    you need iPhoto v9.2 or Aperture 3.2 to view the stream on your Mac.

  • Is there any way too see all data on all enteties an user owns.

    Hi all,
    Is there any way to see all data an user owns in CRM2011?
    Maybe an custom report or view?

    I could only think of one solution to this, a little bit of code to get a list of records a user owns. The List contains Entity objects with the Id & LogicalName. You could do this with a report too but you'll have to query every entity...
    public List<Entity> GetOwningRecords(IOrganizationService service, Guid systemUserId)
    List<Entity> owningRecords = new List<Entity>();
    RetrieveAllEntitiesRequest retrieveAllEntitiesRequest = new RetrieveAllEntitiesRequest();
    retrieveAllEntitiesRequest.EntityFilters = EntityFilters.Entity;
    retrieveAllEntitiesRequest.RetrieveAsIfPublished = true;
    RetrieveAllEntitiesResponse retrieveAllEntitiesResponse = (RetrieveAllEntitiesResponse)service.Execute(retrieveAllEntitiesRequest);
    foreach (EntityMetadata entityMetadata in retrieveAllEntitiesResponse.EntityMetadata)
    if (entityMetadata.OwnershipType != OwnershipTypes.UserOwned)
    continue;
    try
    QueryExpression query = new QueryExpression(entityMetadata.LogicalName)
    ColumnSet = new ColumnSet("ownerid"),
    Criteria =
    Conditions =
    new ConditionExpression("ownerid",ConditionOperator.Equal, systemUserId)
    EntityCollection result = service.RetrieveMultiple(query);
    foreach (Entity entity in result.Entities)
    owningRecords.Add(entity);
    catch (FaultException<OrganizationServiceFault>)
    Console.WriteLine(String.Format("Couldn't retrieve the records for {0}", entityMetadata.LogicalName));
    catch (Exception)
    Console.WriteLine(String.Format("Unexpected error for {0}", entityMetadata.LogicalName));
    return owningRecords;
    Hope this helps

  • HT1420 Is there any way to see the computers authorized on my account so that I can deauthorize only the ones that are no longer functioning?

    Is there any way to see which computers are authorized on my account so I can deauthorize the one's we don't have anymore?

    You can only do that by deauthorizing all computers then re-authorizing the ones you still own.
    De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.
    For more information on authorization and de-authorization: iTunes Store- Authorize or deauthorize your Mac or PC.
    Before you get rid of a computer you should do certain things: What to do before selling or giving away your Mac.

  • Is there any way to see full icon label on desktop or in folder?

    Is there any way to see full icon label on desktop or in folder...like in windows...for example for "Macintosh HD" I see "Mac...HD", but I want to see "Macinto..."? Is there any way to change this? I have in many folder files with similar names, and I need to click twice on each file to see its full name and it can be really annoying...

    In Finder, just drag the divider bar further to the right while holding down the option key to see the full label (using the 'option' key will make the width preference stick).
    On the desktop icon, hold down 'contro'l and click on the icon. Choose 'Show view options' then make the grid spacing larger.

  • Is there any way to see a text history from an Iphone???

    Is there any way to see a text history from an Iphone that has been synced to Itunes account???

    SMS's are not synced through iTunes. Your SMS history is stored on your phone and also included as part of your iPhone backup. To view SMS's on your computer requires either extracting them from your phone or from your iPhone backup. Either or requires third-party software, as such is not supported by Apple. clayfromherriman has given you a way to extract from your backup. To extract from your phone, you can use this:
    http://www.wideanglesoftware.com/touchcopy/index.php

  • Is there any way to find a lost phone if the battery is dead?

    Is there any way to find a lost phone if the battery is dead?

    No there is no way mate. Sorry.

  • Is there any way to see if a file has been saved to an external device, or to see a history of which external devics have been connected to an iMac in 10.6.7?

    I have a client that believes someone came into his house and took some digital files (photos, stored in iPhoto) off of his iMac (2.66GHz running v10.6.7)
    He usually just sleeps his computer while away and requires no password to login.  Is there any way to see if an external device or CD/DVD has been used to save files?  Is there any wya to see the history of a file and determine if it has been saved anywhere else?  I know this is a long shot, but I figure it is worth asking.

    Will it continue to say that the device is in lost mode if it has been restored?  My Find Iphone is saying that when the device is connected to the internet that it will be locked and that a message (that I typed in) will appear. It also says that I will be notified and that a sound will occur when it is connected. Now my iphone has been updated to the ios7, but I don't think his ipod was updated.

  • If I use an SD card for both Windows 7 and Mac, is there any way to see the documents from the Mac sight while on the windows side?

    If I use an SD Card on both the windows 7 and Mac OS (using bootcamp), is there any way to see the data seen on the Mac OS side while using the Windows OS?

    Windows Aero style uses a different background image than Mac:
    Windows Aero:
    #nav-bar {
    background-image: linear-gradient(rgba(253,253,253,0.45), rgba(255,255,255,0));
    Mac:
    #nav-bar {
    background: url(chrome://browser/skin/Toolbar-background-noise.png),
    linear-gradient(hsl(0,0%,93%), hsl(0,0%,83%));
    I can't test hands on, but you might be able to clear that OSX "fog" using a rule such as:
    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    #nav-bar, #PersonalToolbar {
    background-image: none !important;
    background-color: transparent !important;
    This could be applied using the Stylish extension or by creating/editing a userChrome.css file.

  • Is there any way to search for a term using the Firefox search field, and have the results automatically open in a new tab?

    Is there any way to search for a term using the Firefox search field, and have the results automatically open in a new tab? When there was support for Google Toolbar, I was able to do this; now, whenever I want to search for something, I have to open a new tab to do it, and cut-and-paste my search into the search field in the new tab. I used to be able to highlight, drag, and drop something into the search field and have it automatically open in a new tab. This is enough for me to switch to Chrome . . .

    Set a preference to have searches from the Search Bar (upper right) automatically open all searches in a new tab
    #type '''about:config''' in the URL/Location/Address bar and press the Enter key
    #if you see a warning, accept it (promise to be careful)
    #Filter = '''browser.search.openintab'''
    #in the lower panel, double click the item (or right-click and choose "Toggle") to change the value to "true"
    #close the about:config tab and test
    #See:
    #*For help with opening/using about:config, also see: http://kb.mozillazine.org/About:config
    #*Also see: http://kb.mozillazine.org/About:config_entries (click on "Browser", scroll down to browser.search.openintab)
    '''Search Bar''': http://support.mozilla.com/en-US/kb/Search+bar
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    About Google toolbar............
    Google decided that they will no longer produce the Google Toolbar for Firefox 5 and newer version. It is best to move on to other alternatives than to try any "hacks" to the toolbar that may or may not perform in the future. Future versions of Google toolbar will only work with IE7-9. Google Toolbar is not available on any other browser, even Google's own browser.
    *http://googletoolbarhelp.blogspot.com/2011/07/update-on-google-toolbar-for-firefox.html
    *https://support.mozilla.com/en-US/kb/google-toolbar-not-compatible-firefox?s=google+toolbar&r=0&as=s
    *http://www.google.com/support/toolbar/bin/answer.py?answer=1342452&topic=15356%29
    *Google Toolbar 8 FAQ (IE only): https://www.google.com/support/toolbar/bin/answer.py?hl=en&answer=1111588
    '''''To access your Google Bookmarks visit''''' www.google.com/bookmarks.
    Alternatives:
    *http://kb.mozillazine.org/Using_Google_Toolbar_features_without_toolbars
    *https://addons.mozilla.org/en-US/firefox/addon/googlebar-lite/
    *https://addons.mozilla.org/en-US/firefox/addon/gbookmarks-google-bookmarks-fo/

Maybe you are looking for