Can't find files using Finder

MBP running OS X 10.8.4
2.5 GHz Intel Core i5
Starting about two weeks ago, Finder stopped finding files on my MBP.  Previously, if I were to look for a photo named "IMG_1234", I would simply search on "1234" and any and all files containing 1234 in the name would appear.  Now, I get no return to my Finder search. 
Spotlight still does return a full list of all files though.
I believe that whatever this problem is, it is also impacting other search-related functions (e.g., when looking to attach a file in Hotmail or to upload a photo to Facebook). I'm now unable to find a specific file on my HD using the browse function of those webpages.
This problem seemed to originate on a day when I was uploading photos to Facebook.  I was able to find and upload several files without issue, then the ability to find specific photos just stopped working.  It was at that point that the Finder search started returning no responses.
Any suggestions regarding causes/solutions to this issue?  The files for which I am searching are definitely still on my HD.  I'm wondering if I inadvertantly turned off a setting somewhere that impacts where Finder is searching.
Thanks for any help.

Please post a screenshot that shows what you mean. Be careful not to include any private information.
Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

Similar Messages

  • Does anyone know how i can view PDF files using Galaxy Note 2?

    Does anyone know how i can view PDF files using Galaxy Note 2?
    This is what i have been doing;
    I click on the file i wish to view (via a portal)
    this file goes to notification widget (i drag down screen)
    notification/message says download complete
    i click on notification/message
    nows it says complete action using (here i only have 2 icon options 1= DB Text Editor 2 = HTML Viewer)
    I have installed Adobe Reader.

    Can you confirm if the downloaded file is a pdf file, that is it ends with .pdf?

  • How can i upload file using ajax post request and jsp

    Hi
    this is my code files
    addPhoto.jsp
    <html>
    <head>
    <title>Add Photo</title>
    <script>
    var optionNo = 0;
    var i=1;
    var val=0;
    var file = 0;
    var exten = new Array(".jpg",".jpeg",".gif");
    function addValues()
         for(var i=0;i<5;i++)
              optionNo += 1;
              oNewOption = new Option();
              oNewOption.text = optionNo;
              oNewOption.value = optionNo;
              addSelect.add(oNewOption);
    function addBoxes()
         var str = "";
         var j=0;
         val = document.getElementById('addSelect').value;
         for(j=1; j<= val; j++)
              str = str + '<font size=3>file:' + j + '</font>';
              str = str + '<input type="file" id=filepath'+ j +' name=file'+ j + ' onchange="uploadFile(hidden'+ j + '.value)"><div id="result'+ j +'"></div>
              str = str + '<input type="hidden" name="hidden' + j + '" value=' + j +'>';
         document.getElementById('addPhoto').innerHTML = str;
    function uploadFile(value)
    var str = "filepath" + value;
    file = value;
    var param = document.getElementById(str).value;
    var parameter = "filepath=" + param;
    alert(parameter.length);
    if(checkValidity(param))
    var url = "uploadFile.jsp";
    if (window.XMLHttpRequest) {
    req = new XMLHttpRequest();
    } else if (window.ActiveXObject) {
    req = new ActiveXObject("Microsoft.XMLHTTP");
    req.open("POST", url, true);
    req.setRequestHeader("Content-type", "multipart/form-data");
    //req.setRequestHeader("Content-length", parameter.length);
    req.setRequestHeader("Connection", "close");
    req.onreadystatechange = callback;
    req.send(null);
         else
              document.getElementById("result" + file).innerHTML = "upload .jpeg,.jpg,.gif Files Only";
    function callback() {
    if (req.readyState == 4) {
    updatepage(req.responseText);
    function updatepage(str){
         document.getElementById("result" + file).innerHTML = str;
    function checkValidity(str)
         var i=0;
         var j=0;
         var str1 = str.substring(str.lastIndexOf("."),str.length);
         alert(str1);
         for(i=0;i<exten.length;i++)
         if(str1.search(exten) != -1)
              j++;
              break;
         if(j>0)
              return true;
         else
              return false;
    </script>
    </head>
    <body onload="addValues()">
    <h5>Add Photo(s)</h5>
    <select id="addSelect" name="addSelect" onchange="addBoxes()">
    <option id="select" selected>Select</option>
    </select>
    <div id="addPhoto"></div>
    </body>
    </html>
    uploadFile.jsp
    <%@page import="java.io.*"%>
    <%
    /*try
    String contentType = request.getContentType();
         System.out.println(request.getMethod());
         System.out.println("Content type is :: " +contentType); 
         if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0))
              DataInputStream in = new DataInputStream(request.getInputStream());
              DataInputStream in1 = in;
              int formDataLength = request.getContentLength();
    System.out.println(formDataLength);
              byte dataBytes[] = new byte[formDataLength];
              int byteRead = 0;
              int totalBytesRead = 0;
              while (totalBytesRead < formDataLength)
                   byteRead = in1.read(dataBytes, totalBytesRead, formDataLength);
                   totalBytesRead += byteRead;
              out.println("<br>totalBytesRead : " + totalBytesRead + " : formDataLength = " + formDataLength);
         } catch(Exception e) {
              e.printStackTrace();
         try
         String filePath = request.getParameter("filepath");
         System.out.println(filePath);
         File f= new File(filePath);
         String path = f.getName();
         String contentType = request.getContentType();
         System.out.println(contentType);
         //InputStream in = new FileInputStream(filePath);
         DataInputStream in = new DataInputStream(request.getInputStream());
         int formDataLength = request.getContentLength();
         System.out.println(formDataLength);
    byte[] buf = new byte[1024];
    OutputStream out1 = new FileOutputStream("c:/docs/" + path);
    int len;
    while ((len = in.read(buf)) > 0) {
    out1.write(buf, 0, len);
    in.close();
    out1.close();
         out.write("File Uploaded SucssesFully");
    catch(Exception e)
         e.printStackTrace();
         out.write("error while Writing File");
    %>
    the above code in request.getContentType() i am getting 0. I am not passing the content length. for the same application with out using Ajax i am
    getting the size of file... it is very very urgent for me.. pls help me out on this...
    Any one having the code on this pls mail me the code...
    my mail id ... [email protected]
    Regards
    Ashok Kumar

    Sure, you can upload a file, using a form input element of type file. You pick this up with a servlet, though you need a special request wrapper to sort out the multi-part request you get back that way (there's a suitable package on jakarta.apache.org/commons)
    The servlet decrypts the file and can pass the results to a JSP for display.
    Don't try to do the complicated stuff in a JSP, it all gets incredibly messy, and that's not what JSPs are for.

  • HT4864 I have been using AOL for many years as my ISP but now I want to close my account and use iCloud.  My challenge is I don't want to lose five years worth of emails and attachments saved in AOL personal folders.  Can I can transfer the files using iC

    I have been using AOL for many years as my ISP but now I want to close my account and use iCloud.  My challenge is I don't want to lose five years worth of emails and attachments saved in AOL personal folders.  Can I can transfer the files using iCloud?

    Do you receive AOL mail in the Mail app or on the website?

  • I can't transfer files using bluetooth, i can't transfer files using bluetooth

    i can't transfer files using bluetooth

    Bluetooth on iPads is mainly for use with keyboards and headphones, not for copying content
    Supported Bluetooth profiles : http://support.apple.com/kb/HT3647

  • Why can I access files using ubuntu live cd but not my mac?

    Hello,
    Every since I have upgraded to Lion then to Mountain Lion I have had nothing but trouble with my mac crashing and not being able to repair the harddrive. I use time machine with an external hard drive to back up everything (also using online server to back up things as well).
    My issue is that disk utility never works ( ever ) and when I have trouble the hard drive and my external hard drive always show up grayed out and disk utility says the disk is broken and cannot be repaired. Which the disk are fine because I can access them using a ubuntu live cd no problem.
    My main question is how is this not being addressed by apple? This is clearly a bug - there is nothing wrong with my external harddrive or my macs hardrive - yet when I restart my mac I fear it will never start again(in its current state) and the disk utility just doesn't work the only answers I ever get is the hard drive is bad (which is not the case being I can access it with the ubuntu - or even reinstall everything and it works fine etc...)
    There is some major bugs and I can say I never had these problems losing my data with a windows machine (though I am not a big windows fan). Apple why doesn't the disk utility work?
    Also why when I update my mac and the mac restarts itself does it not eject my external hardrive - also why if you don't eject the harddrive it ruins the data on the hard drive or at least makes it grayed out or corrupt in my mac - but I can copy the files in ubuntu and put them back then it works just fine? These are serious issues and I am really shocked that the mac community would stand for this kind of thing - I am not the only one with these issues I see thousands of others with the same issues so when are they going to be fixed?
    If what I am saying is unclear - just google mac hardrive cannot be repaired - and set the time for the last month you will see. Also to those who have these troubles simply use a ubuntu live cd - copy all your files to the home folder then place them back to where the reside and mac will reconize them again - worked every time for me so far no thanks to disk utility.

    Your booting off a Ubuntu disk which has it's own operating system on it and on another medium that is free of issues, unlike your current hard drive running OS X 10.8.
    I really don't advise you directly installing Linux on a Mac as it's much more complicated that it appears. Also I don't advise you using Linux anything to tinker with a Mac unless you really really know what your doing.
    Since your Mac's software is broken you don't know currently and shouldn't be using Linux as a band-aid solution to your problem.
    My suggestion is you FIX your primary boot drive.
    disk utility says the disk is broken and cannot be repaired
    This calls for a complete zero erase and install of the affected area, if it's just the Macintosh HD partition then fine, it's a hold command r boot into Recovery HD and use Disk Utiltiy there to Erase with the middle secure erase feature (important) and then a reinstall of OS X 10.8 from Apple's servers over a fast Ethernet connection.
    If your GUID partition table or Recovery HD is affected, then you need to command option r boot into Internet Recovery and select the entire hard drive for the same zero/middle erase proceedure, unless you have a older MacBook Pro then you need to use option key boot off the 10.6 disks and use the Secure Erase/ Zero on the entire drive, install 10.6, then update to 10.6.8, then AppStore upgrade to 10.8 again.
    You need to only restore user files into same named accounts from a Storage Drive backup, do not use Migration or Setup assistant as your TimeMachine drive data is likely corrupted. This means all new softwre installs from original sources as well.
    Read through my many User Tips, you'll be fixing your own machine in no time.
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents#/?p er_page=50
    also why if you don't eject the harddrive it ruins the data on the hard drive or at least makes it grayed out or corrupt in my mac
    Windows and Linux also has to "safely remove hardware" or "unmount" before ejecting a drive as well or it corrupts the data.
    I guess this feature came about so one can disconnect a drive without having to physically remove it and wear out the ports doing so.

  • HP Pavilion dv3 notebook PC can't burn files using the primary dvd drive.... always hangs in 5%

    my  HP Pavilion dv3 -4103TX notebook PC have a problem in burning any files.. until now it doesn't work. I update the software and still can't burn any files using the built in dvd rom. please help me how to fix it... 

     Try reseating (Remove and reinsert) the DVD drive. You can instructions on page#50 over here
    After this is done,Run Microsoft fixit from below link
    http://go.microsoft.com/?linkid=9740811
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Can't upload files using webDAV

    hi guys. i have a bit of a frustrating problem. im trying to upload zip file (~50MB) to a file hosting site (in.solit.us specifically) and i'm using webDAV to do so. i have no problem connecting to and mounting the server, but whenever i try and add anything to the dav disk it give me the error:
    "you cannot copy some of the items to the destination because their names are too long or contain invalid characters for the destination."
    i freaking hate this error message, whenever i get it it is so unwarranted. my zip file is titled "one.zip"... so no the name isn't too long or any such thing. the compressed files inside this zip file are also of similar length and composition. when i try and upload anything, even a smaller (regularly named) doc file, finder gives me the same error. what's more, when i try and create a new folder within the dav drive the "new folder" icon pops up for a few seconds then immediately disappears. which is kind of funny because when i then try and create another new folder it names it "new folder 2" -- which then subsequently disappeared as well. last time something like this happened to me it was a problem with the disk automatically ejecting itself after a couple of seconds. this does not seem to be the case here, console reads:
    "Feb 11 18:55:45 localhost webdavd[1641]: /Volumes/dav mounted"
    and then, when i manually eject it:
    "Feb 11 19:15:17 localhost webdavd[1641]: /Volumes/dav unmounted"
    console does not lie.
    any help would be much appreciated

    Hi Bilinbaja,
    I am not sure if you are using FTP to upload the files, however this error can sometimes refer to a hardware issue. Please try to toggle the hardware acceleration by right clicking on a item using the flash plug in and selecting settings.
    Please let us know if this improves the performance as well as if this also happens on other computers, or if it still happens after you delete cache and cookies. Each browser has its own cache, Firefox's cache may also be longer. [[How to clear the Firefox cache]]
    Did this help? We look forward to your reply.

  • Can't attach file using webform

    Installed Lion and am having some difficulties.  Before whenever I made a file I could use a webform, which would open my finder and I'd do a quick search (usually something as simple as just selecting the "Today" option, which no longer exists under Lion, but that's another digression) and select the file.
    Now with lion the finder does not find the file.  I can see the problem is that its "hidden" in the contents of an application (in this case the iPhoto library), but there is no way for me to access those contents.  On my desktop I can get to them through the finder by selecting that app and then hitting "show contents", but when trying to upload it or make it an attachment on some webform or even my imac's own e-mail client I can't do that, and those files just stay "hidden" under the inaccessible iPhoto app.  Those files have always been accessible under previous OSs, its also where any of the photos from my iPhone are imported to when I do that so I can't imagine they'd be intentionally locked from me, so I assume there's just a step I'm missing?

    Greetings,
    In part it depends on the website you are using and how they access media.  If the website uses the Mac OS built in Media browser (like this forum does) you will see the media browser when you hit "attach" or whatever the add button is for the website you are using:
    Clicking on "Photos" in the Media column will give you access to the contents of the iPhoto Library.
    If the website you are using does not tap into the Mac OS media browser then you will have to launch iPhoto and drag the image(s) you wish to use to an accessible location like the desktop and then attach from there.  Once the image has been attached you can then discard the copy that you dragged to the desktop.
    If the website you are using is a public one you can tell us what it is and I'll take a look at it.
    In the case of "my imac's own e-mail client" I assume you mean "Mail"?  Mail has it's own built in photo browser button which also gives you access to your iPhoto Library when you make a new message:
    Hope that helps.

  • Can't Stream File using Video object

    I'm trying to get my video files to stream from my local version of flash media server to my instance of a flex application. I'm able to connect to the server and I'm receiving the NetConnection.Connect.Success code from the server. When I debug the application, I'm finding that I'm getting NetStatusEvent objects with the codes: NetStream.Play.Reset and NetStream.Play.Start. And the info object's details property is "sample.flv" which is the video file that I have sitting in my "FMSTesting" applicaiton folder. So my video is in my application folder at: "rtmp://localhost/FMSTesting/sample.flv", and my Flex application outputs to the webroot of the flash media server "http://localhost/FMSTesting/bin-debug/FMSTesting.html"
    So I'm not sure if my setup is wrong or not, but I think it's ok because I can connect to the server just fine. I just can't get my stream to play on the Video object. Here's my code, please help if you can. I also attached the code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init();">
    <mx:Script>
    <![CDATA[
    import mx.core.UIComponent;
    import mx.rpc.events.ResultEvent;
    import flash.net.NetConnection;
    import flash.net.navigateToURL;
    import flash.events.NetStatusEvent;
    import flash.events.StatusEvent;
    import flash.text.TextField;
    import flash.net.NetStream;
    import flash.media.Video;
    public var wrap:UIComponent;
    public var nc:NetConnection;
    public var ns:NetStream;
    public var myVid:Video;
    public function init():void{
    nc = new NetConnection();
    nc.addEventListener(NetStatusEvent.NET_STATUS,onConnect);
    nc.connect("rtmp://localhost/FMSTesting","bonnetbe");
    wrap = new UIComponent();
    wrap.x = 10;
    wrap.y = 10;
    wrap.width =210;
    wrap.height = 200;
    //public function onSayHello(
    public function onConnect(event:NetStatusEvent):void{
    myText.text = "The connection is "+nc.connected + event.info.code;
    switch (event.info.code)
    case "NetConnection.Connect.Success":
    myText.text += ("Congratulations! you're connected" + "\n");
    makeVideos();
    break;
    case "NetConnection.Connect.Rejected":
    myText.text += ("Oops! the connection was rejected" + "\n");
    break;
    case "NetConnection.Connect.Closed":
    myText.text += ("Thanks! the connection has been closed" + "\n");
    break;
    public function makeVideos():void{
    ns = new NetStream(nc);
    ns.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
    ns.client = this;
    ns.play("sample.flv");
    myVid = new Video(200,180);
    myVid.attachNetStream(ns);
    myVid.opaqueBackground = true;
    myVid.smoothing = true;
    myVid.width = 200;
    myVid.height = 180;
    wrap.addChild(myVid);
    myCanvas.addChild(wrap);
    public function callClient(event:Event):void{
    nc.call("magic",new Responder(myResponder,statusResponder), "World");
    nc.call("moreFunc",new Responder(myResponder2,statusResponder2),"benjamin");
    //myText.text+= "still connected: "+nc.connected;
    public function netStatusHandler(event:NetStatusEvent):void{
    trace(event);
    trace(myVid.videoHeight+" : "+myVid.videoWidth);
    public function myResponder(result:Object):void{
    myText.text += "the result: "+result;
    public function statusResponder(status:Object):void{
    myText.text += "some status: "+status.code;
    public function myResponder2(result:Object):void{
    myText.text += "result2: "+result;
    public function statusResponder2(status:Object):void{
    myText.text += "status 2: "+status.code;
    public function updateFunc(event:Event):void{
    changeText.text = "testing: "+nc.connected;
    nc.close();
    ]]>
    </mx:Script>
    <mx:TextArea id="myText" text="Hello Ben" width="271" height="155" x="311" y="138"/>
    <mx:Text x="10" y="192" text="Text" width="144" height="67" id="changeText"/>
    <mx:Button x="27" y="378" label="Button" id="funcCall" click="updateFunc(event);"/>
    <mx:Button x="135" y="378" label="callFunc" id="callFunc" click="callClient(event);"/>
    <mx:Canvas x="311" y="10" width="200" height="120" id="myCanvas"/>
    <mx:VideoDisplay x="759" y="62" width="300" height="250" id="vidObj"/>
    </mx:Application>

    Hi,
    Your code is perfectly fine except for one statement.
    ns.play(
    "sample.flv");
    Since you want to play vod, give the stream name without extension like - ns.play("sample");
    But why you got NetStream.Play.Reset and NetStream.Play.Start events? It is because you have not mentioned the 'start' and 'length' values in your ns.play() method. Which takes the default for 'start' as -2, which means that Flash Player first tries to play the live stream specified in stream_name. If a live stream of that name is not found, Flash Player plays the recorded stream specified in stream_name. If neither a live nor a recorded stream is found, Flash Player opens a live stream named stream_name, even though no one is publishing on it. When someone does begin publishing on that stream, Flash Player begins playing it.  Since you have mentioned the stream name with extension, FMS considers it as a stream which is not found in the server and started waiting for a live stream with the name 'sample.flv'.
    Best practice is always give the 'start' and 'length' of the stream when calling NetStream.play() method.
    Regards,
    Janaki L

  • Can you transfer files using Time Machine back-up to a new computer?

    I have an early 2006 iMac and would like to get a new one. Would I be able to copy the files that I want moved to the new computer by using my Time Machine back-up? I would only want to transfer a handful of items including my iTunes and iPhoto libraries as well as my iWork files.

    You most certainly can. What you want to do is to go to System Preferences>Time Machine>Advanced> and exclude everything except the files you want to bring over. Then, plug the Time Machine Backup into the new machine and use Setup Assistant; It'll walk you through the rest.
    Move your content to a new Mac - Apple Support

  • Can't create file using FM File_Get_Name

    Hi guru,
    I have a program that creates a file to the system using fm fiel_get_name. Someone changed the OS in the SY-OPSYS from AIX(Application) to NT(file server). But the file seems is not there.
    Is there something wrong from changing the SY-OPSYS?
    Points will be rewarded...Thank you

    Hi gurus,
    what else should I look at..i dont think there's nothin wrong about the code of my program.. It's about how it is deifne in the logical path and other settings... Would you know in what tcode can I see it? I only new in this kind of issue.
    Points will be given ..thanks!

  • Problem in accessing CAN daabase (.dbc) file using GetChannelNamesByID.vi

    Hello,
    I am using PCI  CAN/2 series2 card to read data from sensor. In my labview code i m using FrameToChannel conversion API to convert the frame data into actual values using a .dbc file. My software includes data logger and visualization of sensor data. I have to run this software contineously for 30 days and monitor and log the sensor data.
    My problem is the GetChannelNamesByID.vi is not working properly. My data logger works fine(i.e. rading and logging sensor data) but the visualization of actual sensor data using FrameToChannel conversion library stops sometimes. My software can not read the channels from the database file. it happens randomly e.g. after 12 hours.  I have to stop the software and run it again so that it works fine.
    Can anyone give me the reason and solution for this?
    Thanks in advance.
    Solved!
    Go to Solution.

    My 2 cents.  Don't use the Frame to Channel Conversion Library.  It hasn't been updated in 5 years and likely won't be updated again.  I had problems with it where it wasn't converting correctly, and where it had issues with having the same signal names in different frames.  I is supposed to support it with a dot notation but it some times just doesn't work.  
    I contacted NI about it and they agreed there was a problem, especially with the frame to channel conversion.  I provided a frame, the DBC, and showed the signal it converted it to was wrong.  Their suggestion was to use the XNet conversion.  After switching to using the XNet conversion (which doesn't need XNet hardware) I would never want to go back.  There is so much more flexibility in the API and it is activly being supported.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Can't open files using relative paths

    That seems straightforward but i can't figure out how I can have access to
    image files stored in the same directory with the compiled classes.
    Here's my what I want to do
    windowsButton = new JButton("Windows", new ImageIcon("icon_cool.gif"));
    but it doesn't work :(
    however if i specify the absolute path to images everything works fine.
    I tried also copying images into the source directory it didn't work.
    I thought about a workaround like If i could get the absolute path of the
    class that loads images that would be great but i have no clue how to get
    that absolute path.
    i code in netbeans so src and classes are separated.
    Thanks in advance for your replies. If u feel like u need more details i'll
    try to provide them :)

    In addition to jverd's answer, here is a tutorial
    dealing with images and icons
    "How to Use Icons":
    http://java.sun.com/docs/books/tutorial/uiswing/misc/i
    con.html
    It gices some examples of how to use the
    getResource() method to load your images.As the tutorial points out, simple path is more general than using class loader and resources for it.
    If OP's problem is on the line of this simplicity, he has to learn relevant details of a particular IDE or,
    if he hates the kind of learning, he'd be better off throwing away and foget it forever.
    It reminds me of a long-time belief that IDE is too big an /unnecessary/ obstacle for beginners.
    Does anyone know, does Eclipse have similar awkwardness for resource path issue?

  • Can't send files using bluetooth.

    When I go to my bluetooth menu and click on "send files" or "browse device" the computer does nothing, I send files to my phone this way before why is not working now?
    I checked the help topics and suggest to delete pairing and do it again and I did it but still nothing happening, and both the computer and the phone are discoverable and turned on. I'm able to send files to the computer from the phone but after the file is transfered the connection would end and I don't have the option to say I wanna send files to the phone, also on the phone I don't find the computer as active, but if I try to send a file will go without problem.
    I'm guessing is the computer's bluetooth that is messed up, What do I do?
    Any idea?
    Thanks!

    For some other reason had to re-install MAC OS 10.4.6 then did an update and when checked the bluetooth was working correctly, so that was the fix for my problem.

  • Can I transfer files using Bluetooth with an iPod Touch?

    I have just updated my iPod Touch to 3.0 and I heard that there is a stereo bluetooth feature. Can I somehow transfer files and media using it? (No jailbroken !!) If not, how can I use it?

    There is no file transfer via bluetooth, only music streaming to a compatible bluetooth headset.
    http://support.apple.com/kb/HT3647
    The instructions are on page 31-32 of the User Guide:
    http://manuals.info.apple.com/enUS/iPod_touch_3.0_UserGuide.pdf

Maybe you are looking for