Can't find Library when using Import Mailboxes option in Mountain Lion

Hi there, I'm trying to import my Mailboxes I've created on my iMac in my Apple Mail, but I can't see the "Library" folder. I've searched the web and found instructions to unhide the "Library" folder when using Finder, but this does not help me as I can't use this when following the instructions and prompts in the Mail>File>Import Mailboxes option. I'm running Mountain Lion. Can anyone help?

Sorry that option not available in mountain lion.
You can use a terminal command but the easiest way to do this is to choose Go>Go To Folder ~/Library.
When it opens drag the Folder from the window bar into your side bar.
This will make it always available.
To remove it just drag out of the side bar.

Similar Messages

  • Can't find library when compiled with debugging

    Hi all,
    Compiling this code segment cannot find a library when using -g
    bash-3.2$ cat tester.cc
    #include <iostream>
    #include <string>
    using namespace std ;
    static void
    myRoutine()
    string str= "this is in routine" ;
    string str3 ;
    str3 = str.substr(11,7) ;
    if(str.substr(0,4) == "this") cout << "Have a hit" << endl ;
    cout << "this is str3 - " << str3 << endl ;
    int main(int argc, char **argv)
    string str = "this is a test" ;
    string str1, str2 ;
    str1 = str.substr(0,4) ;
    str2 = str.substr(10,4) ;
    cout << "this is str1 - " << str1 << endl ;
    cout << "this is str2 - " << str2 << endl ;
    myRoutine() ;
    return 0 ;
    bash-3.2$ CC -g -o tester tester.cc
    bash-3.2$ ldd tester
         libCstd.so.1 =>     /usr/lib/libCstd.so.1
         libCstd.so.1 (SUNW_1.4.2) =>     (version not found)
         libCrun.so.1 =>     /usr/lib/libCrun.so.1
         libm.so.2 =>     /usr/lib/libm.so.2
         libc.so.1 =>     /usr/lib/libc.so.1
    If I comment out:
    if(str.substr(0,4) == "this") cout << "Have a hit" << endl ;
    bash-3.2$ cat tester.cc
    #include <iostream>
    #include <string>
    using namespace std ;
    static void
    myRoutine()
    string str= "this is in routine" ;
    string str3 ;
    str3 = str.substr(11,7) ;
    // if(str.substr(0,4) == "this") cout << "Have a hit" << endl ;
    cout << "this is str3 - " << str3 << endl ;
    int main(int argc, char **argv)
    string str = "this is a test" ;
    string str1, str2 ;
    str1 = str.substr(0,4) ;
    str2 = str.substr(10,4) ;
    cout << "this is str1 - " << str1 << endl ;
    cout << "this is str2 - " << str2 << endl ;
    myRoutine() ;
    return 0 ;
    bash-3.2$ CC -g -o tester tester.cc
    bash-3.2$ ldd tester
         libCstd.so.1 =>     /usr/lib/libCstd.so.1
         libCrun.so.1 =>     /usr/lib/libCrun.so.1
         libm.so.2 =>     /usr/lib/libm.so.2
         libc.so.1 =>     /usr/lib/libc.so.1
    Or if I remove -g:
    bash-3.2$ cat tester.cc
    #include <iostream>
    #include <string>
    using namespace std ;
    static void
    myRoutine()
    string str= "this is in routine" ;
    string str3 ;
    str3 = str.substr(11,7) ;
    if(str.substr(0,4) == "this") cout << "Have a hit" << endl ;
    cout << "this is str3 - " << str3 << endl ;
    int main(int argc, char **argv)
    string str = "this is a test" ;
    string str1, str2 ;
    str1 = str.substr(0,4) ;
    str2 = str.substr(10,4) ;
    cout << "this is str1 - " << str1 << endl ;
    cout << "this is str2 - " << str2 << endl ;
    myRoutine() ;
    return 0 ;
    bash-3.2$ CC -o tester tester.cc
    bash-3.2$ ldd tester
         libCstd.so.1 =>     /usr/lib/libCstd.so.1
         libCrun.so.1 =>     /usr/lib/libCrun.so.1
         libm.so.2 =>     /usr/lib/libm.so.2
         libc.so.1 =>     /usr/lib/libc.so.1
    then I can run successfully
    Any thoughts or hints?
    bash-3.2$ CC -V
    CC: Sun Ceres C++ 5.10 SunOS_i386 2008/07/10
    Usage: CC [ options ] files. Use 'CC -flags' for details
    bash-3.2$ uname -a
    SunOS alpha 5.11 snv_86 i86pc i386 i86pc
    Thanks,
    Jim

    Ack! Please ignore my earlier posting. I did not play close enough attention to details in your post. I apologize for the confusion. Let me start over:
    The Studio Express release you have contains a newer version of the C++ runtime library libCstd.so.1 than is available yet in Solaris patches. We bump the internal version number when we add new interfaces. The internal version number of the Studio Express library is SUNW_1.3.2. The version of the latest release Solaris patch is SUNW_1.3.1.
    Some new string class operator functions are in version SUNW_1.3.2. I think these are also defined as inline functions in the compiler headers. When you compile with -g, inlining is disabled, and you create a dependency on library version SUNW_1.3.2. (Compiling with -g0 allows function inlining, and might resolve your problem, but read on.)
    We have not released a libCstd.so.1 with internal version SUNW_1.4.2, so I don't understand how that version number could appear in an error message. Did you really see that version, or is it a transcription error? For now, let's assume it is a transcription error.
    When you compile and link with CC, the program gets a runpath pointing into the compiler installation area. At program run time, the loader looks for libraries in directories listed in the runpath, with /lib and /usr/lib as last resort. The "ldd" command reports what the runtime loader will do regarding dependent libraries.
    If the compiler is installed in /opt, a 32-bit program gets a runpath that includes /opt/SUNWspro/lib. In that directory in Sun Studio Express is a symbolic link that points to ../prod/usr/lib/libCstd.so.1, the library with version SUNW_1.3.2.
    If you try this:
    % /opt/SUNWspro/bin/CC hello.cc
    % ldd a.out
    you should see, among other things,
    libCrun.so.1 => /opt/SUNWspro/lib/libCstd.so.1
    (Depending on the OS version, you might see
    libCrun.so.1 => /opt/SUNWspro/prod/usr/lib/libCstd.so.1 instead.)
    But if ldd can't resolve the library, you probably have a corrupted Sun Studio Express installation. In that case, uninstall it, and reinstall from a fresh download.
    If you run the program on a different computer where Sun Studio Express is not installed, the loader won't be able to find the right library version, and you will get "not found" results. I addressed this issue in another thread:
    http://forums.sun.com/thread.jspa?threadID=5340163

  • Where can I find a list of compatible videocameras for OSX Mountain Lion?

    I need a list of compatible videocameras I can use with my Mac OSX Mountain Lion.  Can someone help me?  I have always used a Canon ZR 950, but I was told it would not work with this new iMac.  Is there an adaptor that would work with it?  I bought a Thunderbolt, but it would not connect it.

    You may have a hard time finding a list of Mountain Lion compatible video cameras as it can depend on which video editing software you're using.
    if you want to use iMovie for editing read here > Apple - iLife '11 Help - iMovie '11 Supported Cameras

  • Safari can't find servers when using Wi-Fi

    I can log onto wi-fi networks just fine. When I look at the details I see all the connection details and the wi-fi icon shows up on the phone.
    But when I try to use the browser, or even just access email or maps, the phone can't locate anything. I have to shut off wi-fi and use edge.
    Any ideas what's wrong?

    I think my situation might be similar and I am stuck as well...
    What I see is I CAN connect to my home network (secured etc) no problem.
    I have been able to connect to unsecured networks before, no problem.
    But the "unsecured" wireless that is at my office does NOT allow me to get to the internet. Connecting to it via a laptop does the thing where it redirects the first web page you open to a agreement page, and you need to click "yes, I will be nice" or whatever before it allows full internet access, but then it is free and clear.
    From the iphone, the connection looks like it works - the iphone thinks its connected. If I look at the details I see it starts with a 169.* address, then DHCP looks like it kicks in and it gets a 42.* address and a router on that same network. The DNS it gives are on different networks (192.* and 166.*) however. Any page I try to go to in safari waits for a while then reports "...can't find the server", instead of going to the agreement page. I have tried adding the router's address in the DNS list just in case...
    Is there some incompatibility with this sort of thing?
    Cyberquixote
    Message was edited by: cyberquixote

  • Can't find file when use the main(String[] args) method

    I put a file under the DefaultDomain directory of Weblogic 11.1.1.5 on my local machine. Below is how I look up this file
    FileInputStream fis = new FileInputStream("input.xml");
    I started up the IntegratedWeblogicServer instance and I tested using the below 2 approaches.
    1) When I test a web service program using the below approach, it CAN'T find the input.xml file
    public static void main(String[] args)
    2) When I package it into an EAR file and deploy it onto the server then log into the admin console and use the test client approach then it's able to find the file
    How do I make it so it can find the file using #1 approach?
    Thanks

    That's how relative paths work, and it's nothing particular to Java.
    When you type ls input.xml or dir input.xml does it list the file, or give an error? If it lists the file, then it's in your current directory, and it will work if you run Java from that directory. If it gives an error, then that file is not in your current working directory, and Java won't be able to find it either.

  • Sony MDR-1RBT headphones have crackling or pops in audio when using bluetooth on my iMac - Mountain Lion

    I notice crackling noise or pops when I listen to music using my Sony MDR-1RBT bluetooth headphones with my 3.4GHz Intel Core i7 iMac running  OSX 10.8.5
    I do not hear the crackling when I listen to the headphones using my MacBook Pro 2.7GHz Intel Core i7 with OSX 10.8.5
    I also do not hear the crackling when using wired connection to the headphones.
    So it would seem that something with the Bluetooth on the iMac is the problem. But I have no idea how to troubleshoot this further.
    Does anyone have any ideas what the cause may be?
    I am pretty sure that it is not interference from another device because I can connect to my MacBook Pro in the same area as my iMac with no crackling

    Hi Michael Erb1,
    Thanks for using Apple Support Communities.  It may also be worth resetting the NVRAM of your iMac to see if that helps with the crackling:
    About NVRAM and PRAM
    http://support.apple.com/kb/HT1379
    Cheers,
    - Ari

  • URLClassloader can't find superclass when using JWS

    Using a URLClassLoader to load a class "LocalClass" which is stored locally on disk. "LocalClass" extends "AppClass" which is in a jar file in the application classpath. This works when running the application from the console, but not when running it using Web Start.
    Using Web Start, the class loader fails with a NoClassDefFoundError on _"AppClass"_. I guess it's a security restriction, but I find it strange that it's okay if all the superclasses are loaded through the URLClassLoader, i.e. if "LocalClass" extends Object or if "AppClass" is on the local disk.
    Is this a by-design restriction of the security apparatus or is there a workaround?

    Found the answer at http://forum.java.sun.com/thread.jsp?forum=38&thread=368027
    Solution is not to use the default parent class loader (the system classloader) but AppClass.class.getClassLoader() (the JNLP class loader)
    in the URLClassLoader constructor.

  • ATV freezes or can't find library when streaming from ITunes 8

    I'm running a relatively new Apple TV box, which shipped with software version 2.3. It's connected to a 64-bit Windows Vista box running iTunes 8.0.2.22. It's a wired network connection running through a Belkin N1 Vision router.
    The ATV and iTunes see each other. No problem there. But when I try to stream photos or music from the PC to the ATV, either the ATV spins forever "loading" the library, or the library loads but the entire system freezes as soon as I try to actually access anything (it stalls on the shuffle/albums/artists menu).
    I tried to get it to sync instead of stream. In this case, it stalls/freezes on the first song downloaded. I've restarted the ATV, unplugged and restarted the ATV and restored the ATV to factory settings -- each multiple times. No change.
    Oddly, I can access the iTunes store via the ATV to purchase music or video. That part still works. It's only the connection to a computer that's causing the hearburn.
    I removed the firewall, to no effect. So that's not it. Any help is most appreciated. The box is only about a month old, and this non-performance is more than a little frustrating.
    Thx --
    Joel

    Hmm.
    It's possible the networking is fine and there's some other issue such as a corrupted itunes library database/xml fiel - this could cause problems when trying to sync or transfer to AppleTv if either itunes or AppleTV falls over parsing the files.
    Could you create a new Vista user account, add some test files, then set this 'Computer' up for Sharing under AppleTv Settings. I'd log out of the normal user in Vista not just switch users as iTunes on my mac does not like 2 itunes user running concurrently when it comes to streaming - only 1 is accessible. If you can stream successfully, might point to an iTunes problem with the current user account.
    I would not set the new user up as the (single) sync library as it'll delete any synced stuff already on AppleTv which could leave you with an empty box.
    Other things you could try as a last resort might include uninstalling and resinstalling iTunes (you may need to deauthorise first, I would just in case) or performing a Sytem Restore of the AppleTV (Hold menu and down to enter diagnostics menu and select it from Diagnostics menu). Last resort things these though.
    Also, if you've only rebooted AppleTV in software pull the power cord and leave for a few mins, then restart. If some internal component is having a 'bad hair day' then it might be stuck in that state as the power isn't cut by a software reboot.
    Good luck.

  • Can't find PC when using apple tv 2nd gen?

    I am trying to access our IBM thinkpad thru apple tv to view photos, etc.  Home sharing is turned on, i-tunes 11 installed.  When we turn on Apple TV and select computers, we only get our i-Mac showing up, and not the PC?  Any suggestions?  thank you

    Welcome to the Apple Community.
    The following article(s) may help you.
    Setting Up Home Sharing On A Computer
    Troubleshooting Home Sharing
    You may also find some help on this page, where I’ve collected some of the more unusual solutions to network issues.

  • Can't find ejbc when using ant

    When I am doing the ejb-jar task with iplanet extension I get the error:
    [ejbjar] java.io.IOException: CreateProcess: D:\apps\AppServer7\appserv\lib\bin\ejbc -sl -gs -classpath <snipped classpath> com.randomwalk.sun.pop.server.MarketDataServiceBean error=3
    I am running on Windows 2000

    <ejbjar srcdir="${build}"
    descriptordir="${config.dir}"
    classpath="${client}"
    basejarname="../../${dist}/portfolio-ejbs">
    <iplanet destdir="${ejb}"
    iashome="${ias_home}"
    debug="no"
    keepgenerated="yes" >
    <classpath>
    <pathelement path="." />
    <pathelement path="${build}" />
    <fileset dir="${ias_lib}">
    <include name="**/*.jar"/>
    </fileset>
    </classpath>
    </iplanet>
    <include name="**/ejb-jar.xml"/>
    <exclude name="**/weblogic*.xml"/>
    <support dir="${client}">
    <include name="**/*.class"/>
    </support>
    </ejbjar>

  • Can't find backed up iphone data on macbook pro mountain lion

    i went to library/application but could not find itunes or mobilesync like everyone has said in threads. my iphone is backed up but i have no idea where it is stored, can you please help? thanks

    ok i found it, but why are all the backed up files in non-understandable documents? theyre not saved as actual pictures, etc?

  • Open PDF's in new window in document library when using "Find a file" search

    I need to be able to open PDF's in a new window from a document library when using the "Find a file" search built into the document library "All documents" view. I currently have the following javascript on the page:
    _spBodyOnLoadFunctionNames.push("setTargetBlank()");
    function setTargetBlank()
    { $("a[href$='.pdf']").removeAttr('onclick').attr("target", "_blank");
    This works great when going to the document library and navigating through the folders then clicking on a link.
    The problem is when someone goes to the document library then uses the "Find a file" search and then they click on a link. The "Find a file" search does not do a postback (reload) of the page, therefore my javascript to find the PDF links
    and make them open in a new window does not run for the links on the page.
    I have read the following article but this does not seem to offer a solution that will work in this situation for SharePoint 2013 (Office 365): http://social.technet.microsoft.com/Forums/sharepoint/en-US/7ad3224c-3165-47ae-95bc-4f3928e2f9a8/opening-document-library-pdf-in-a-new-window-sharepoint-2013?forum=sharepointgeneral
    I suppose the idea solution would be to somehow tap into the event that is fired when using "Find a file" search to run my javascript and update the links for the search results.
    Can anyone offer any solutions to this issue?

    Hi,
    According to your description, my understanding is that you want to open PDF files in a new window from a document library when using the "Find a file" search.
    As you said, the "Find a file" search does not do a postback (reload) of the page, therefore JavaScript to find the PDF links and make them open in a new window does not run for the links on the page.
    I recommend to use JS link to achieve the goal. Create a JavaScript override file and upload the JavaScript file to the Master Page Gallery, and then set the JS Link property of the document library web part to point to the JavaScript file.
    Here are some links about the JS link in SharePoint 2013 for you to take a look:
    http://www.idubbs.com/blog/2012/js-link-for-sharepoint-2013-web-partsa-quick-functional-primer/
    http://www.learningsharepoint.com/2013/04/13/sharepoint-2013-js-link-tutorial/
    http://zimmergren.net/technical/sp-2013-using-the-spfield-jslink-property-to-change-the-way-your-field-is-rendered-in-sharepoint-2013
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • TS4002 I'm trying to create a new apple-id but when typing the email adress I want to use I'm told that the particular email adress is not allowed but when searching I can't find same being used. How do I find out where that particular email adress is use

    I'm trying to create a new apple-id but when typing the email adress I want to use I'm told that the particular email adress is not allowed When searching I can't find same being used anywhere. How do I find out where that particular email adress is used so I can delete it there and use it for my new apple-id?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    Also
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.

  • I've lost my iPhone 4... How can I find it when the device is offline when using "find my iPhone app"????? Any way of getting a location from it????

    I've lost my iPhone 4... How can I find it when the device is off linesmen using "find my iPhone app"????? Any way of getting a location from it?????

    No. It must be online in order to locate it.
    What To Do If Your iDevice Is Lost Or Stolen
    iPhone, iPod Touch, and iPad
    If you activated Find My Phone before it was lost or stolen, you can track it only if it is connected to the Internet by Wi-Fi or cellular. What you cannot do is track your device using a serial number or other identifying number. You cannot expect Apple or anyone else to find your device for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty.
    If your iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should have done in advance - before you lost it or it was stolen - and some things to do after the fact. Here are some suggestions:
    This link, Re: Help! I misplaced / lost my iPhone 5 today morning in delta Chelsea hotel downtown an I am not able to track it. Please help!, has some good advice regarding your options when your iDevice is lost or stolen.
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T. Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. iCloud- Use Lost Mode
      6. What to do if your iOS device is lost or stolen
      7. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      8. Find My iPhone
      9. Report Stolen iPad | Stolen Lost Found Online
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on iCloud
      3. OS X Lion/Mountain Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)

  • I was using raw & my hard disk nearly full. When I downloaded pix, I got message that said hard disk nearly full. My pix downloaded into 2 folders. When I merged them about 50 disappeared. Where can I find them? Using MacBookPro, IPhoto 9.5.1

    I was using raw & my hard disk nearly full. When I downloaded pix, I got message that said hard disk nearly full. My pix downloaded into 2 folders. When I merged them about 50 disappeared. Where can I find them? Using MacBookPro, IPhoto 9.5.1

    Where were you downloading the to,   iPhoto, a folder on the Desktop, where? Are they still on the camera's memory card?  If you deleted them from the card and haven't used the card since they can be recovered with recovery software like  MediaRECOVER. You can download the demo version to verify they can be recovered before purchasing it.  Other similar apps can be found at MacUpdate.com by searching for "photo recovery" or similar terms.

Maybe you are looking for