Getting items out of arrayList

Hi everyone
I have the following scenario:
Have two java class files which gets used to extract data from database and a jsp which display data.
I get the data out of the database, but my problem is displaying it correctly using the jsp which uses JSTL.
The ContactsData.class file extracts the data out of the database and puts it in the Contacts.class class which then gets written to an arraylist which stores the Contacts.class and then returns the ArrayList to the requester.
Here is the code, can someone please help me to manipulate the arraylist to display the right info.
Contacts.class which holds the contacts.
package contacts;
import java.io.Serializable;
import java.util.*;
public class Contacts implements Serializable
     //String varialbes to store the details about the contact
     private String contactName,company, workNumber, cellNumber, faxNumber, email,country;
     //contacts constructor
     public Contacts()
     //method to set the company
     public void setCompany(String company)
          this.company = company;
     //method to set the Contact name
     public void setContactName(String contactName)
          this.contactName = contactName;
     //method to set the work teletphone number
     public void setWorkNumber(String workNumber)
          this.workNumber = workNumber;
     //method to set the cellphone number
     public void setCellNumber(String cellNumber)
          this.cellNumber = cellNumber;
     //method to set the fax number
     public void setFaxNumber(String faxNumber)
          this.faxNumber = faxNumber;
     //method to set the email
     public void setEmail(String email)
          this.email = email;
     //method to set the country
     public void setCountry(String country)
          this.country = country;
     //method to get the company
     public String getCompany()
          return company;
     //method to get the contact name
     public String getContactName()
          return contactName;
     //method to get the work telephone number
     public String getWorkNumber()
          return workNumber;
     //method to get the cellphone number
     public String getCellNumber()
          return cellNumber;
     //method to get the fax number
     public String getFaxNumber()
          return faxNumber;
     //method to get the email
     public String getEmail()
          return email;
     //method to get the country
     public String getCountry()
          return country;
}piece of the contactsData.class class which retrieves the data out of the database and stores it in Contacts.class class and then store the Contacts class in the arrayList which gets returned to the requester.
     public ArrayList getContactList()
          //arrayList to hold the contacts
          contactList = new ArrayList<Contacts>();
          try
               ResultSet rs = stmt.executeQuery("SELECT * FROM Contacts");     //selecting from the database
               while(rs.next())
                    //creating contacts object
                    contact = new Contacts();
                    //adding details to the Contacts object
                    contact.setContactName(rs.getString(1));
                    contact.setCompany(rs.getString(2));
                    contact.setWorkNumber(rs.getString(3));
                    contact.setCellNumber(rs.getString(4));
                    contact.setFaxNumber(rs.getString(5));
                    contact.setEmail(rs.getString(6));
                    contact.setCountry(rs.getString(7));
                    //adding Contacts object to the Arraylist
                    contactList.add(contact);
          catch(SQLException se)
               System.out.println("Could not retrieve contacts");
          return contactList;     //returning the arraylist
     }The jsp that need to display the contacts within the arraylist, which I don't get right.
<?xml version="1.0"?>
<%@ page import="contacts.Contacts"%>
<%@ page import="java.util.*"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<jsp:useBean id = "contactsData" scope = "page" class ="contacts.ContactsData"/>
<html>
     <head>
          <title>Contact List</title>
          <meta http-equiv="cache-control" content="max-age=0, must-revalidate, no-cache, no-store, private">
          <meta http-equiv="expires" content="-1">
          <meta http-equiv="pragma" content="no-cache">
          <script language=JavaScript>
          <!--
               function clicked(clickedValue)
                    if(clickedValue == "add")
                         window.location = "AddContact.jsp";
          -->
          </script>
     </head>
          <body>
          <h1>Contacts</h1>
          <form>
               <table cellpadding="5">
               <c:forEach var="contacts" items="${contactsData.contactList}"> //getting the list from the ContactData class
                    <tr>
                    <td><input type="radio" name="deleteContact" value="${contacts.company}"></td> //want to display the company name from the contacts
                    </tr>
               </c:forEach>
               </table>
                    <br>
                    <input type="button" value="Add" onClick="clicked('add')"/>
                    <input type="submit" value="Delete" onClick="clicked('del')"/>
          </form>
     </body>
</html>

HI, we need to specify the scope we used,In my Ex its request
so my forEach tag ..
<c:forEach var="stud" items="${requestScope.studli}">
<c:out value="${stud.SID}"></c:out>
<c:out value="${stud.SNAME}"></c:out>
</c:forEach>

Similar Messages

  • Get objects out of Arraylist

    Hi I have this code, below, The set methods in the class Website work just fine to get the data into the arraylist, but i just can't figure out the get methods to get the objects back out to compare. Could someone please help. i'm almost finished with this thing!!
    Iterator itr1 = Websites1.iterator();
    Iterator itr2 = Websites2.iterator();
    outer: while (itr1.hasNext()) {
    while (itr2.hasNext()) {
    //Object site1 = new Object ();
    //Object site2 = new Object ();
    Object site1 = (Website)itr1.next();
    content1 = site1.getCon();
    date1 = site1.getMod();
    Object site2 = (Website)itr2.next();
    content2 = site2.getCon();
    date2 = site2.getMod();
    if (date1 != date2 ) {
    if (content1 != content2)
    alert.play();
    //do other stuff//
    else;
    else;
    continue outer;
    class Website {
    public String WebsiteName, WebsiteContent, Content;
    public Date LastModified, Modified;
    public Website() {
    WebsiteName = "";
    WebsiteContent = "";
    LastModified = null;
    public Website (String Name, String Content, Date Modified) {
    WebsiteName = Name;
    WebsiteContent = Content;
    LastModified = Modified;
    public void setName(String Name) {
    WebsiteName = Name;
    public void setContent(String Content) {
    WebsiteContent = Content;
    public void setModified(Date Modified) {
    LastModified = Modified;
    public String getCon() {
    Content = WebsiteContent;
    public Date getMod() {
    Modified = LastModified;

    I think that worked (duh i should have noticed it earlier), but now i'm getting a real weird error when i try to compile on my custom get methods
    missing return statement
    public String getCon() {//(points to this)
    and the same thing on the public Date getMod() method
    any ideas?
    I'm lost now i've never seen that before

  • Get item out of list

    help!
    my list has 3 lines
    a name
    a number1
    a number2
    i'm trying to setup where i can have number1 devided by number2
    then print out the results
    however i'm having trouble trying to index so that i can specify to location of number1 and number2
    please help!
    i've been trying for hours!

    here's the code partially
    public static void main(String args[]) throws IOException
            String s1 = null;
            String s2 = null;
            String s3 = null;
              BufferedReader inFile1;
              BufferedReader inFile2;
              BufferedReader inFile3;
              BufferedReader in;
              in = new BufferedReader(new InputStreamReader(System.in));
              inFile1 = new BufferedReader(new FileReader("list1.dat"));
              inFile2 = new BufferedReader(new FileReader("list2.dat"));
              inFile3 = new BufferedReader(new FileReader("list3.dat"));
              s1 = inFile1.readLine();
              s2 = inFile2.readLine();
              s3 = inFile3.readLine();
           System.out.println(s1);
              for(String z1 = inFile1.readLine(); z1 != null; z1 = inFile1.readLine())
                System.out.println(z1);
              System.out.println(s2);
              for(String z2 = inFile2.readLine(); z2 != null; z2 = inFile2.readLine())
                System.out.println(z2);
            System.out.println(s3);
              for(String z3 = inFile3.readLine(); z3 != null; z3 = inFile3.readLine())
                System.out.println(z3);
            String s = s1.substring(s1.indexOf(" ") + 1);
              System.out.println(s);
              //trying to go to line 2 not position 2 after the space
            System.out.println("---------------");
       

  • I get Singed out of eBay when I bid and when I go to a other item.. I can be on "my eBay" and just click on any other item and boom I'm on a page that says I need to sing in.

    I get Singed out of eBay.com when I bid and when I go to a other item.. I can be on "my eBay" and just click on any other item and boom I'm on a page that says I need to sing in..if I click back it brings me back to "my eBay" and I am still singed in but if I was not to click back and I click on sing in I have a page saying I singed out.. sooo I do the obvious and clean out the cache and so on, disable all and then just some addons and try again and just to be sure I opened IE9 for the first time ever on this year old pc and it works fine so I know the problem is with FF4 but I'm out of ideas so what are my options? I dont wanna have to use IE9 but I need basic stability!!
    I give a A- on the rest of FF4 & that makes this even more annoying because I want to use FF4!! I make my butta on eBay.com so I'm on all day buying & selling so I really need a quick fix or I'll have to make a quick move to Opera or IE9..PLEASE DON'T LET THAT HAPPEN...LOL!!
    Please help me on this one & Thank you in advance to anyone who helps me I appreciate it allot!

    The Get Info. fields show up gray if the files is locked and iTunes knows it can't edit the file. Make sure the files are not marked as read only and, if necessary grant both your account and system full access to all files and subfolders of your media folder.
    You can set Part of a Compilation for multiple tracks from the Options tab of Get Info.
    See Grouping tracks into albums for tips on getting iTunes organized.
    tt2

  • Since I upgraded my Ipad2 with IOS6, i keep getting kicked out of Safari after I am in the middle of looking for something and on Ebay it continually kicks me back to the first item if I click to see a picture, say after I am 150 items down.  Even CNN too

    Since I upgraded my Ipad2 to IOS6, I keep getting kicked out of Safari after I am in the middle of searching for something.  Also, Ebay kicks me back to first item if I click on an item, say number 153 or 642!  Very annoying.  Even CNN kicked me out back to Ipad home screen last night!  How do I make it stop???

    My question is this:
    What is the best way of getting the pictures out of the iPhoto Library? I
    Select the photos you want out and export them as JPGEs - kind = current for the current edited version - kind = original for the original
    f I get access to the original folders within the library by right-clicking any photo and then being able to browse inside the library, am I going to have any problems if I copy or move those original pictures directly to a folder outside of the iPhoto Library?
    Copying photos out will not be a problem if you make no errors - for me that is not a good bet - it is best to stay out of yoru iPhoto library
    Would it be better to export the pictures?
    Yes
    Does exporting using "current" under "Kind" give you the original more safely?
    No - it gives you the current version which may be the original if no changes have been made or will be the current edited version if edits ahve been made
    Also, any suggestions on how to best have photos OUTSIDE of an iPhoto library organized so that iPhoto can reference them, but your backup is also organized?
    In the iPhoto preferences un check the advanced preference to "copy imported items to the iPhoto library"
    HOWEVER - this is not recommended - it makes importing more complicated, deleting more complicated and makes replacing a hard drive or going to a new computer much more difficult - and it puts you totally in charge of your original photos - being sure that they are there and do not get moved
    I'd like to have my photos organized by date in the backup as well, so that I don't have to backup all my pictures every time I add new ones, just add the latest to the backup drive.
    Finally, any suggestions on what to do with pictures that you scan so that they appear by the date they were taken as opposed to the date they were scanned? Is there a way to modify the date of the photo info?
    Select the photos in iPhoto and use the batch change command under the photos menu - the tiem and date option
    LN

  • How to get and display only some items out of an xml source

    hi everybody,<br /><br />i have a designer-pdf based on a xsd. from within this pdf i call a second one and pass global variables to it. i want to use these vars to get specifics items out of an xml source. example:<br /><br />say that my xml is build like this:<br /><br /><form(min1-max1)><br /> <subform(min1-max unbounded)/><br /> <subform(min1-max unbounded)/><br /> <subform(min1-max unbounded)/><br /> <subform(min1-max unbounded)/><br /> <subform(min1-max unbounded)/><br /></form><br /><br />and i want just to pic up the subform element with index '2'. is there a way to do that?<br /><br />thanks,<br /><br />valerio

    If you've got a chunk of XML in a string, you can read from it using XPath notation.  Here's an example.  Hope it helps:
    var strXML = "JaredLangdonFredFlintstone";
    var oXML = XMLData.parse(strXML, false);
    var oFirstLName = XMLData.applyXPath(oXML,"//MyRoot/Person[1]/LName");
    var oSecondLName = XMLData.applyXPath(oXML,"//MyRoot/Person[2]/LName");
    xfa.host.messageBox("First LName is: " + oFirstLName.value + "\nSecond LName is: " + oSecondLName.value);
    Jared Langdon
    http://www.jlangdon.ca

  • How to get long out of an ArrayList?

    I have
    long num = 1234;
    ArrayList alist = new ArrayList();
    alist.add("name");
    alist.add(num);
    How do I get num out from the alist?
    I tried long num1 = alist.get(1);
    but it doesn't work.

    798642 wrote:
    Well, I am used to using mixed list from C#.Language doesn't matter. It's bad design when doing OO.
    Anyway, I am just want lump some data in a list.Why? If that data goes together to mean something, like a name and a birthdate, then you should define a class that has those values as member variables. That's half of what objects are for, after all.
    So that groups of data can be retrieved easily. Like maybe info1 of object A is in index 0. info2 of object A is in index 1, info3 of object A is in index 2.Yeah, bad idea. Define a class.
    But there seem to be a problem with converting the object type back to their original types in Java.Since you still haven't told us any details about what that problem is, there's not much we can do. You also don't seem to have followed my suggestion from my previous post, or, if you did, you didn't show that code and didn't state clearly and precisely what "doesn't work" about it.

  • Aperture trash is not displaying items in trash.  I want to get a number items out of trash.  How do I get them displayed or is there another  way  to put them back in the file?

    Aperture trash is not displaying items in trash.  I want to get a number items out of trash.  How do I get them displayed or is there another  way  to put them back in the file?

    See Why can't I see my deleted photos in Trash?

  • What do I do if I get "Running out of Application Memory" when no applications are open except finder and just copying pictures to Seagate?

    I cannot copy pictures to a Seagate as I get the out of memory notice with the only option to restart finder,repeatedly.  I looked at older discussions and did not see a definitive fix, but many posted this, so I will as well:
    Many discussions were too advanced for me.  I have OS X 10.9.3
    EtreCheck version: 1.9.12 (48)
    Report generated July 23, 2014 at 11:57:23 AM EDT
    Hardware Information:
      MacBook Pro (13-inch, Mid 2010) (Verified)
      MacBook Pro - model: MacBookPro7,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      8 GB RAM
    Video Information:
      NVIDIA GeForce 320M - VRAM: 256 MB
      Color LCD 1280 x 800
    System Software:
      OS X 10.9.3 (13D65) - Uptime: 0 days 0:23:21
    Disk Information:
      APPLE SSD TS512B disk0 : (500.28 GB)
      EFI (disk0s1) <not mounted>: 209.7 MB
      Mac (disk0s2) / [Startup]: 399 GB (99.03 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      BOOTCAMP (disk0s4) /Volumes/BOOTCAMP: 100.42 GB (70.82 GB free)
      MATSHITADVD-R   UJ-898
    USB Information:
      Apple Inc. Built-in iSight
      Apple Internal Memory Card Reader
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
    Gatekeeper:
      Mac App Store and identified developers
    Kernel Extensions:
      [not loaded] com.Belcarra.iokit.USBLAN_netpart (2.0.2) Support
      [not loaded] com.Belcarra.iokit.USBLAN_usbpart (2.0.2) Support
      [not loaded] com.RemoteControl.USBLAN.panther (1.6.1) Support
      [not loaded] com.RemoteControl.USBLAN.usbpart (2.0.6) Support
      [not loaded] com.belcarra.iokit.netpart.panther (1.6.1) Support
      [not loaded] com.belcarra.iokit.usbpart.panther (1.6.1) Support
      [loaded] com.logmein.driver.LogMeInSoundDriver (1.0.3 - SDK 10.5) Support
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.6 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.6 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.6 - SDK 10.5) Support
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.6 - SDK 10.4) Support
      [loaded] com.squirrels.airparrot.framebuffer (3 - SDK 10.7) Support
      [loaded] com.squirrels.driver.AirParrotSpeakers (1.7 - SDK 10.7) Support
    Problem System Launch Daemons:
      [running] com.seagate.TBDecorator.plist Support
    Launch Daemons:
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.adobe.SwitchBoard.plist Support
      [running] com.fitbit.galileod.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [not loaded] com.logmein.logmeinblanker.plist Support
      [running] com.logmein.logmeinserver.plist Support
      [loaded] com.logmein.raupdate.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.wyse.PocketCloud.plist Support
    Launch Agents:
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [failed] com.logmein.LMILaunchAgentFixer.plist Support
      [running] com.logmein.logmeingui.plist Support
      [running] com.logmein.logmeinguiagent.plist Support
      [not loaded] com.logmein.logmeinguiagentatlogin.plist Support
      [running] com.wyse.MacCompanion.plist Support
    User Launch Agents:
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.google.Chrome.framework.plist Support
    User Login Items:
      Dropbox
    Internet Plug-ins:
      LogitechHarmony: Version: 1.0.0.1 Support
      LogMeInSafari64: Version: 1.0.660 Support
      Default Browser: Version: 537 - SDK 10.9
      AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 Support
      Flip4Mac WMV Plugin: Version: 2.3.6.5 Support
      AdobePDFViewerNPAPI: Version: 10.1.10 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      LogMeIn: Version: 1.0.660 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      LogMeInSafari32: Version: 1.0.660 Support
      QuickTime Plugin: Version: 7.7.3
      AdobePDFViewer: Version: 10.1.10 Support
      CANONiMAGEGATEWAYDL: Version: 3.1.0.2 Support
      SharePointBrowserPlugin: Version: 14.1.4 - SDK 10.6 Support
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    Audio Plug-ins:
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
      Flash Player  Support
      Flip4Mac WMV  Support
      Paragon NTFS for Mac ® OS X  Support
    Time Machine:
      Skip System Files: NO
      Mobile backups: ON
      Auto backup: YES
      Volumes being backed up:
      Mac: Disk size: 371.60 GB Disk used: 279.37 GB
      Destinations:
      Untitled [Local]
      Total size: 931.19 GB
      Total number of backups: 30
      Oldest backup: 2012-05-18 05:12:38 +0000
      Last backup: 2014-07-14 18:51:50 +0000
      Size of backup disk: Adequate
      Backup size 931.19 GB > (Disk used 279.37 GB X 3)
      Time Machine Backups [Local]
      Total size: 2
      Total number of backups: 26
      Oldest backup: 2010-11-21 17:58:03 +0000
      Last backup: 2014-07-14 19:53:01 +0000
      Size of backup disk: Excellent
      Backup size 2  > (Disk size 371.60 GB X 3)
      Backups.backupdb [Network] (Last used)
      Total size: 930.87 GB
      Total number of backups: 32
      Oldest backup: 2013-11-19 00:45:22 +0000
      Last backup: 2014-07-15 15:36:23 +0000
      Size of backup disk: Adequate
      Backup size 930.87 GB > (Disk used 279.37 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU:
          5% WindowServer
          0% fontd
          0% LogMeIn
          0% configd
          0% aosnotifyd
    Top Processes by Memory:
      115 MB mds_stores
      98 MB Google Chrome
      82 MB Finder
      74 MB Dropbox
      49 MB WindowServer
    Virtual Memory Information:
      4.65 GB Free RAM
      1.43 GB Active RAM
      1.00 GB Inactive RAM
      675 MB Wired RAM
      999 MB Page-ins
      0 B Page-outs

    Your problem is excessive swapping of data between physical memory and virtual memory.
    That can happen for two reasons:
    (1) You have a long-running process with a memory leak (i.e., a bug), or
    (2) You don't have enough memory installed for your usage pattern.
    Tracking down a memory leak can be difficult, and it may come down to a process of elimination. In Activity Monitor, select All Processes from the menu in the toolbar, if not already selected. Click the heading of the Real Mem column in the process table once or twice to sort the table with the highest value at the top. Repeat with the Virtual Mem column. If one process (not including "kernel_task") is using much more memory than all the others, that could be an indication of a leak. A better indication would be a process that continually grabs more and more memory over time without ever releasing it.
    If you don't have an obvious memory leak, your options are to install more memory (if possible) or to run fewer programs simultaneously.

  • Finder got an error: Can't get item 1 of {document file "foo" ...}

    I have a lot of files in Corel Painter 8's RIFF format. I want to write a script that opens a file and somehow forces Corel Painter 8 to save the file as a GIF. GUI scripting may be some help with the latter; now I am concentrating on finding RIFF files and opening them in Corel Painter 8.
    I have a script that does a depth-first search of the folders starting at some root folder, using the Finder application to do the file-system stuff. It creates a list with
    set docs to every document file of pages_folder whose file type = "RIFF"
    as it loops through folders it adds to the list like this:
    set more_documents to every document file of a_folder whose file type = "RIFF"
    set docs to docs & more_documents
    My naîve mental model is that docs is a list of document-file objects. Next I have a loop that attempts to strip out files for which a GIF file already exists (and is no older than the RIFF document). This works by deleting non-matching items like so:
    if not isgifneeded then
    set docs to items 1 thru (i - 1) of docs & items (i + 1) thru (length of docs) of docs
    end if
    Finally it tries to open one of the files in Corel Painter 8 using the Finder:
    open item 1 of docs using "Corel Painter 8"
    This does not work. I get an error message
    Finder got an error: Can't get item 1 of {document file "bar" of folder "foo" of folder "blah" of folder "pdc" of folder "Users" of startup disk, ... }."
    It lists all of the files. (The error message appears in a sheet that extends off the bottom of the screen!) They are identified in the message as document-file objects. The curly braces are, I believe, the AppleScript notation for a list. I expect to be able to obtain the first element of a list with ‘item 1 of xs’. My assumption is that the Finder’s open command would expect a document file object, or at least would be able to cope with being asked to open a document. What am I missing here?
    PowerBook 12" without mini-DVI   Mac OS X (10.4.7)  

    Hi Damian and welcome to Apple Discussions!
    One suggestion: try
    tell application "Finder" to open item 1 of docs
    (without 'using "Corel Painter 8"')
    As far as the Finder is concerned, "Corel Painter 8" is just a string of characters. And telling the Finder to open a file is just the same as double-clicking it: the Finder knows which app to use - as long as these are native Corel Painter 8 docs.
    Hope this helps,
    H

  • Please HELP!!Getting booted out of Livecycle

    I have been using the alt key to help "nudge" items into place.  In the current document I am working on, everytime I try to use the alt key, I get kicked out of livecycle.  I don't get an error message, just a popup box that says "Adobe LiveCycle Designer ES has encountered a problem and needs to close.  We are sorry for the inconvenience."  I tried re-saving an re-naming my form, but it is still doing the same thing.
    I cannot reinstall adobe/adobe livecycle without going through our IT department.  Is there anything that I could try on my own to resolve the problem?
    Any help would be appreciated!!

    It was happening with one file.  I think I may have figured it out.  My snap to grid was on and I think that when I used the Alt key it was conflicting with this. I turned my snap to grid off and I seem to be able to use the Alt key. THANK YOU so much for taking the time to try to help with my question.

  • This u2 album doesnt wanna get deleted out of my phone i hid it from my itunes and switched off the the all music thing out of my music setting but 2 songs still in my playlist how do i permanently deleted out of my life period

    this u2 album doesnt wanna get deleted out of my phone i hid it from my itunes and switched off the the all music thing out of my music setting but 2 songs still in my playlist how do i permanently deleted out of my life period and for some reason it wont let me slide it to the left

    To import music into your iTunes library on the computer go to iTunes>Help>iTunes Help>Add items to iTunes and follow the instructions
    Delete the "songs" that do not play in your iTunes library and reimport them.

  • I tried to resore my ipod 5 and the cable disconected and now its in recovery mode, how do i get it out?

    i tried to resore my ipod 5 and the cable disconected and now its in recovery mode, how do i get it out?

    If not successful try the remaining items of:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • I am getting logged out of ALL of my accounts

    I am getting logged out of ALL of my accounts using my computer
    - Gmail
    - crailgsilst
    - yahoo mail
    - yandex
    I have to loginto google cometimes 10 times in 2 minutes.
    Its a newer retina MBP. HOW DO I STOP THIS?

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*genieo\* \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p);if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" ' BEGIN{FS="= "} /Path/{print $2} ' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test osascript\ -e );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'|tr , \\\n" 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" '/S*/*/Ca*/*xpc* >&- ||echo No' );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors XPC\ cache );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D23 14 1 62 42;D12 34 43 53 44;D12 22 50 32 52;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 37 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Getting Sound Out of Classic

    I just got a new G5 and installed Classic. Now I can't get any audio from any Classic apps or from the OS itself. I noticed I don't even have a "sound" control panel in Classic mode. Is this strange? I seem to remember having one when I used this same setup with my G4. Do I need to download any drivers for my soundcard? What if I just want the sound out of the computer output? Any help is great!

    I just got a new G5 and installed Classic. Now I
    can't get any audio from any Classic apps or from the
    OS itself.
    I think we've identified the source of your problem... assuming that you mean that you can't get sound out of OS X.
    I noticed I don't even have a "sound"
    control panel in Classic mode. Is this strange?
    No. You should have a few sound-related items in the Extensions folder (Sound Manager, SoundSprocket Filter, Speakable Items, Speech Manager, Speech Recognition, perhaps a few others) but there needn't be any sound-related control panels.
    I
    seem to remember having one when I used this same
    setup with my G4. Do I need to download any drivers
    for my soundcard? What if I just want the sound out
    of the computer output? Any help is great!
    I had other sound stuff in my System Folder left over from the days when that System Folder was on a beige G3. The absence of those items doesn't seem to matter to my iMac G5. When I set up the iMac G5 I generated a completely new System Folder instead of just copying over the old one. What's in that folder now is what Apple thinks should be there to run Classic, plus the items MSIE drops into the System Folder because I did a test run of MSIE for Classic just to see if it still worked. (It does)

Maybe you are looking for

  • AirTunes no longer working with iTunes 6.01

    This is a cross-post from the iTunes discussion, but I've gotten no answers over there. Since upgrading to iTunes 6.01, when AAC files are played, they are changed to "MPEG-4 video," which disables AirTunes. AirTunes plays mp3s, but over 90% of my so

  • All the applications crasing

    Hi, All the applications like MS Office 2010, Office Communicator 2007/Adobe reader/Win Zip in 2500 systems are crashing when opening. in all the sytems, Event log message indicates that the Windows Installer reconfigured all installed applications. 

  • Tracing Form and Function modules using SE30

    Hi,   I want to trace only the Forms and function modules that are executed by a program using SE30. I have tried setting the variants in different ways but it still gives lot of junk information which i dont need. How can I set up the variant so tha

  • Delivery note in BAPI_GOODSMVT_CREATE

    I'm trying to do GR with purchase order using BAPI_GOODSMVT_CREATE, I need to fill in delivery note (I can fill in using MB01), however I can't find any field for delivery note in BAPI_GOODSMVT_CREATE, anybody knows which field need to fill in? or an

  • Folders inside iphoto library - how do you get to the photos?

    Hi - I thought I was loading my pictures into iPhoto when I dragged a folder of them and dropped it into the program. Unfortunately, I cannot access these photos through the iPhoto program. I know they are in there somewhere because the finder shows