How to save chat transcript by buddy, not by date

iChat used to save the chat transcripts by buddy and not by date. Now each day has it's own saved file With numerous buddies. It used to append any new chat to the same buddy file. Is there a way to go back to that?

thank you. I have chax but can't find the log viewer. where is it? Also, do you know how to get AIM to stop telling me I am signed in in more than one location?

Similar Messages

  • How to save message when getting "email not responding"

    how to save message when getting "email not responding"

    How could you even know if you have a message if the email account isn't responding?
    Quit the mail app and reboot your iPad.
    Tap the home button once. Then tap the home button twice and the recents tray will appear at the bottom of the screen. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the mail icon. Tap the home button twice.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • How to setup a remote recovery process - Not using Data Guard?

    Hello -
    Has anyone (or can send me some links) set up recovery at a remote site - and not used Data Guard? For example, shipped off logs via FTP, applied the logs, and kep the DB in recovery mode?
    Thanks!

    Mlike,
    This manual procedure is described in the Dataguard Concepts manual for 10gR2, hopefully is this your unmentioned version (BTW what happens if you do type your version? Does your boss beats you up for doing that?). I don't know why someone wants to replace something robust by something unreliable by default, using FTP. Not only unreliable, also unsecure!
    Sybrand Bakker
    Senior Oracle DBA

  • How to save a DocumentFragment which is not in XML

    Hi,
    i want to make an export from a view object as CSV-file. To achieve this i have made a stylesheet, that converts a xml to a text format.
    DocumentFragment oDF = tNode.transformNode(xslt);
    And from here i have the problem: How could i save the DocumentFragment to my harddisk? (Inserting that DocumentFragment in a XMLDocument doesn't work because it is no longer in xml-format)
    Thanx,
    Marc

    Hey Marc,
    I'd rather use a code like this:
    DOMParser parser = new DOMParser();
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    PrintWriter pw = new PrintWriter(baos);
    try
    String xslUrl = "yourXSLdocument.xsl";
    parser.parse(is); // the xml document input stream
    XMLDocument doc = parser.getDocument();
    XSLProcessor xp = new XSLProcessor();
    try
    XSLStylesheet xsl = xp.newXSLStylesheet(new FileInputStream(xslUrl));
    xp.processXSL(xsl, doc, pw);
    String processedDoc = baos.toString();
    System.out.println(processedDoc); // Here you go!
    catch (XSLException xsle)
    JOptionPane.showMessageDialog(null, xsle.toString(), "XSLException", JOptionPane.ERROR_MESSAGE);
    catch (SAXException saxe)
    JOptionPane.showMessageDialog(null, saxe.toString(), "SAXException", JOptionPane.ERROR_MESSAGE);
    Please tell me is this is addressing your problem...
    Thank you

  • How to save HD in 16x9 and not 4x3?

    I have a Sony HDR-HC1 and have created an movie in iMovie 6, importing video in the HDV format (16x9). No matter what I try, including "fixes" already posted, I cannot save the movie, in any format tried, in that aspect ratio. I only get 4x3. Any known fixes?

    Now I'm completely confused as to what you're trying to do.
    - "share to iDVD" works perfectly for me. I get a 16x9 project.
    - If I change the aspect ratio in QT Pro, and import that into iDVD, that works as well.
    - I also just tried choosing "Share > Quicktime > Expert settings" and choosing "Apple Intermediate Codec" "Preset: other / Current Frame Rate" and setting the size to 1920x1080, and exporting that. That also plays correctly, and doesn't require QT Pro, if that's a problem; the pixel stretching is done on export for you.
    You mention .dv; HD projects are not DV, so if you're selecting that as the export format, that'd be a problem. HD projects are natively in Apple Intermediate Codec format.

  • How to save chat on 2nd generation ipod touch

    hi! i have a problem with saving my conversations on my ipod touch 2nd generation. does anybody know how and give me step-by-step instructions?

    This is not a feature of ipod.
    Sorry.

  • How to save xml and xsl function to a data grid column

    hi. wondering, i have a xml and a xsl file, and have the transform class, and so need to save the xml and the xsl file, and display the results on a particular data grid column and to loop through the data grid columns. so, how do i use the xml save function
    class, any examples or point me to articles, where i can read how to do this. need to display a file, with a different colour and font. any ideas. thanks. marvin.hi. need to save a xml and xsl file and display the results on data grid. how do i do this. any
    sample code or articles i can read about thanks. marvin.
    http://startrekcafe.stevesdomain.net http://groups.yahoo.com/groups/JawsOz

    
    Hi.
    Okay, well, did ask on the msdn forums, and some one replied, and so, will paste the code he suggested.
    But getting a lot of errors.
    Can you help me out.
    Where am I going wrong.
    So, I can then get this to work, then it shows the colours and the fonts on the specified data grid.
    Can you help.
    Want to get this working and passed today if possible.
    Will pasate the code and the errors below.
    Can you help.
    Where am I going wrong.
    Marvin.
    // Set up the data set.
    DataSet ds =
    new
    DataSet();
    // Set up the data table.
    DataTable dt =
    new
    DataTable();
    // Ad the data table to the data set.
        ds.Tables.Add(dt);
    // Write the xml document to the data grid column.
        ds.WriteXML(@"c:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\CurrentCount.xml");
        ds.WriteXML(@"c:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\OnOrder.xml");
        ds.ReadXML(@"c:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\CurrentCount.xml");
        ds.ReadXML(@"c:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\OnOrder.xml");
    // Set up the data table and the data set and set to 0.
        dgvDisplayData.DataSource = ds.Tables[0];
    Error      1              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                215        
    18           WoodStocks
    Error      2              Invalid token ')' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                215        
    21           WoodStocks
    Error      3              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                219        
    16           WoodStocks
    Error      4              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                221        
    16           WoodStocks
    Error      5              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                222        
    15           WoodStocks
    Error      6              Invalid token '(' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                223        
    15           WoodStocks
    Error      7              Invalid token '=' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                227        
    31           WoodStocks
    Error      8              Array size cannot be specified in a variable declaration (try initializing with a 'new' expression)               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                227        
    43           WoodStocks
    Error      9              Invalid token ';' in class, struct, or interface member declaration               
    C:\Docs\Education\CertificateFourProgramming\CoreInfrastructure\DevelopingXMLApplications\Assignments\WoodStocks\WoodStocks\frmData.cs                227        
    45           WoodStocks
    Can you help me out.
    Thanks.
    http://startrekcafe.stevesdomain.net http://groups.yahoo.com/groups/JawsOz

  • Time Machine - how to save work and mail after 'restore to' date

    OK, things have gone seriously wrong on my girlfiends almost new 21" iMac.
    First Excel wouldn't open a week ago, and now Quark won't launch and Word seems to be corrupted.
    Time to go back in time.... (cue wibbly wobbly special effect)
    We reckon it was definitely ok about a month ago. She backed up regularly.
    1- Is there a way to just go back with the apps and OS and leave everything else alone?
    2 - Failing that, she can back up all her recent work, but how to keep the mails in the Outlook mailbox that have been recieved since the 'go back' time?
    Many thanks.

    Install [https://addons.mozilla.org/en-us/thunderbird/addon/importexporttools/ ImportExportTools] and adjust the Options (see picture).
    http://chrisramsden.vfast.co.uk/3_How_to_install_Add-ons_in_Thunderbird.html

  • How to turn off all cellular service (not just data) without airplane mode?

    Hi,
    I work in a lab where cell service is minimal.  In iOS8, can we turn off all cellular service (not just cellular data) without using airplane mode?  It would also be helpful to be able to keep GPS on with all cell service turned off when hiking.
    Thanks,
    Matt

    matt100psi wrote:
    Hi,
    I work in a lab where cell service is minimal.  In iOS8, can we turn off all cellular service (not just cellular data) without using airplane mode?  It would also be helpful to be able to keep GPS on with all cell service turned off when hiking.
    Thanks,
    Matt
    Unfortunately, no. To turn off cellular service, requires the device to be put into Airplane Mode, which also turns off the GPS receiver.

  • How to sync in new mac w/o loosing data? iphone 4S

    I used to sync my iPhone 4S in a Snow Leopard Mac.... now i have Lion and i want to sync in the new one, how can i sync in the new not losing data?
    I think a full backup in the old one -> Sync in the new -> restore backup in the new.... does that work?

    DonCampi wrote:
    I used to sync my iPhone 4S in a Snow Leopard Mac.... now i have Lion ...
    If this means it is a DIFFERENT computer and you still have access to the OLD computer... Then...
    To have  EVERYTHING  as it is Now...
    From your OLD computer...
    Copy your ENTIRE iTunes FOLDER to an External Drive... and then from the External Drive to your New Computer..
    Full Details Here  >  http://support.apple.com/kb/HT1751
    An Added Bonus is that you will have a Backup of iTunes.
    If not...
    Try these 2 User Tips...
    Syncing to a New Computer...
    https://discussions.apple.com/docs/DOC-3141
    Recovering your iTunes library from your iPod or iOS device
    https://discussions.apple.com/docs/DOC-3991

  • How to get Mac Messages to NOT save chats?

    How to get Mac Messages to NOT save chats?
    I went through the Preferences but I do not see where I can check/uncheck save chats.  Will someone help direct me?

    Hello mayonnaise18,
    Thank you for the question.  You can disable the option to save chats in the Messages tab in Messages>Preferences:
    Automatically save conversations when you close them
    Choose Messages > Preferences, and then click Messages.
    Select “Save history when conversations are closed.”
    These steps are to enable the option to save messages, but you would want to uncheck the option to "Save history when conversations are closed."  You can find the full article here:
    Messages (Mountain Lion): Save conversations
    http://support.apple.com/kb/PH12012
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How do I save items in library but not copy to ipod?

    How do I save items in library but not copy to ipod?

    If the item is in your iTunes library then it is already saved.
    With the iPod plugged in then select the items that you want to sync to the iPod. You can sync your entire library to the iPod - space permitting - or just selected content.
    MJ

  • How to save as Word document, when Pages does not give that option, but only "Save a version"

    I cannot save a document in Word or Word-compatible form. The only options I am given in File is "Save a Version," which does not provide for saving in Word. How do I do this?

    Use the Export item from the File menu and select Word at the top.
    Best of luck.

  • How to save book in pdf tiff 300 dpi? with these steps file -print book- PDF- save PDF to folder as TIFF 300 dpi does not work

    how to save book in pdf tiff 300 dpi?
    with these steps file -print book- PDF- save PDF to folder as TIFF 300 dpi does not work

    Hi pissedadobeuser,
    Does this issue occur with any particular web page?
    Are you able to print the webpage to 'Adobe PDF' to convert it to pdf.
    Which Browser version, OS version and Acrobat version are you using?
    Regards,
    Rave

  • How to save bloger password in firefox 3.6.6 ? common ways at internet such as changing nsLoginManager.js is not working because the notepad cant save the new file.

    how to save bloger password in firefox 3.6.6 ?
    common ways at internet such as changing nsLoginManager.js is not working because the notepad cant save the new file.
    == URL of affected sites ==
    http://blogger.com

    Some sites like PayPal, Yahoo, Windows Live and bank sites use ''autocomplete="off"'' to prevent Firefox from saving the name and the password.
    If a site uses ''autocomplete="off"'' then look at this article for a bookmarklet to remove that autocomplete attribute.
    http://kb.mozillazine.org/User_name_and_password_not_remembered (bookmarklet)
    http://kb.mozillazine.org/Password_Manager
    See also http://en.wikipedia.org/wiki/Bookmarklet

Maybe you are looking for

  • Crash for stop motion files

    Hi gang. Major issue. I have stop motion .prel file that is 64 mb in size in \user\adobe\ auto save. IT will not load. It gets past 100% for lad, hangs for 30 secs then pops a crash message after about a minute. Crash details: Problem Event Name: APP

  • History of number of connected users

    Hello, Do you know how to have the history of the connected users (the number ) => The average of connected users, and why not the max number of users for a day. Thank's and regards Laurent

  • IPod Sync warning

    When playing music from my iPod through itunes I keep getting this warning saying "The iPod cannot be synced. The required file is in use." I have my settings set to 'manually manage music' so don't know why it keeps happening. Any ideas?

  • WPA2 and Hexadecimal keys

    I'm not sure if I'm missing something, but here it goes... In Airport Admin Utility running under OSX 10.4.X, the WPA/WPA2 key could be either an 8-63 character ASCII password or a password of exactly 64 hexadecimal characters. You had to explicitly

  • 9iR2 DB auditing is not showing clients IP address

    Friends, OS: RHEL AS 3 DB: 9iR2 (9.2.0.4) init.ora - audit_trail = true when i execute the below query...its return empty.... select sys_context('userenv','ip_address') from dual;will the above query work in 9i db? how can i get the client's ip addre