Where is list of keys and what they do?

Where can I find a list of keys and what they do. I'm a command line kind of guy.
Using Mac mini / Panther
larryalk

364/2810
Hi larryalk,
welcome to Discussions!
In addition to Kurt's excellent link,
Here are the ones you can print "just in case":
- Shortcuts for freezes
This one has all useful links:
- Mac OS X keyboard shortcuts
This one is very handy:
- Mac OS: Apple Pro Keyboard Shortcuts for Shut Down and Restart
Also:
Many keyboard shortcuts are not documented. Just try holding the Option key in combination with the usual ones, see what it does. Same with the Control key and the Shift key.
In popping dialog boxes:
Usually command+dot = Cancel, and
hitting the initial letter often equals a mouse-click.
In the menubar and the menus:
Also simply hitting a letter.
Or two letters if needed, like HI = History when H(E) = Help.
⇧ Shift
⌥ Option
⌘ Command
⌃ Control
Have fun!
Axl
Happy New Year Kurt!

Similar Messages

  • Where is there a comprehensive list of Icons and what they stand for, represent, and/or mean

    Where is there a comprehensive list of icons that shows what each stands for, represents, or means?
    Specifically the small box near the pointing mouse or hand.

    That small box is probably the tooltips box discussed in the following thread. See if '''cor-el''''s solution works for you as it did for the original poster in that thread.
    https://support.mozilla.com/en-US/forum/1/544389?

  • Please Help::How to display a Map with LIsts as Keys and Values using JSTL

    Hi,
    I need some assistance on how to display a Map in JSP using struts or core JSTL. I have a HashMap which has a List of keys and each key maps to a value of an ArrayList.i.e I have an ArrayList of taxCodes and each taxCode maps to a value of taxDetails which is an ArrayList of details for for that particular taxCode. I have some trouble to display each taxCode then display taxDetails for each taxCode. Here is my code below:
    OrderDetails.java
    package orderitems;
    import java.sql.*;
    import java.util.*;
    public class OrderDetails {
        private LineOder lineOrder;
        private Map lineItems;
        //returns an item number, key_item, from its unique keys
        public int getItemNumber(int key_item, String key_year,
                String key_office,String key_client,String key_company){
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            int itmNum = 0;
             * key_item a unique number for an item.
             * key_year,key_office,key_client,key_company unique keys
             * for each order where this key_item is taken
             * from.
            String select = "SELECT key_item FROM "+
                    Constants.WEB_TABLE +" WHERE key_item = " + key_item +
                    " AND key_year = '" + key_year + "'" +
                    " AND key_office = '" + key_office + "'" +
                    " AND key_client = '" + key_client + "'" +
                    " AND key_company = '" + key_company +"'";
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                rst = stat.executeQuery(select);
                if(rst.next()){
                    itmNum = Integer.parseInt(rst.getString("key_item"));
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return itmNum;
        //get a list of item number(item codes)
        public List getAllItemNumbers(String key_year,
                String key_office,String key_client,String key_company){
            List itemNumbers = new ArrayList();
            LineItem itemNumber = null;
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            String select = "SELECT key_item FROM "+ Constants.WEB_TABLE +
                    " WHERE key_year = '" + key_year + "'" +
                    " AND key_office = '" + key_office + "'" +
                    " AND key_client = '" + key_client + "'" +
                    " AND key_company = '" + key_company + "'";
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                rst = stat.executeQuery(select);
                while(rst.next()){
                    itemNumber = new LineItem();
                    itemNumber.setKey_item(Integer.parseInt(rst.getString("key_item")));
                    itemNumbers.add(itemNumber);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return itemNumbers;
        //get a list of tax codes
        public List getAllTaxCodes(int key_item, String key_year,
                String key_office,String key_client,String key_company){
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            ItemTax taxCode;
            List taxCodes = new ArrayList();
            int itemNum = getItemNumber(key_item, key_year,
                    key_office,key_client,key_company);
            String select = "SELECT key_tax_code FROM "+
                    Constants.WEB_TABLE +" WHERE key_item = " + itemNum +
                    " AND key_year = '" + key_year + "'" +
                    " AND key_office = '" + key_office + "'" +
                    " AND key_client = '" + key_client + "'" +
                    " AND key_company = '" + key_company +"'";
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                rst = stat.executeQuery(select);
                while(rst.next()){
                    taxCode = new ItemTax();
                    taxCode.setKey_tax_code(rst.getString("key_tax_code"));
                    taxCodes.add(taxCode);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return taxCodes;
        /////This methode returns a Map which am trying to display in JSP
        //use tax code to get tax details
        public Map getItemTaxDetails(String key_year,String key_office,
                String key_client,String key_company,int key_item){
            ItemTax taxDetail = null;
            List taxDetails = new ArrayList();
            List itemTaxCodes = new ArrayList();
            Map itemTaxDetails = new HashMap();
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            //get a list of all tax codes of an item with a
            //given item number
            itemTaxCodes = getAllTaxCodes(key_item,key_year,
                    key_office,key_client,key_company);
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                for(Iterator taxCodeIter= itemTaxCodes.iterator(); taxCodeIter.hasNext();){
                    ItemTax itemTaxCode = (ItemTax)taxCodeIter.next();
                    String taxCode = itemTaxCode.getKey_tax_code();
                    String select = "SELECT tax_type,tax_value," +
                            "tax_limit_val FROM "+ Constants.WEB_TABLE +
                            " WHERE key_item = "+ key_item +
                            " AND key_year = '" + key_year + "'" +
                            " AND key_office = '" + key_office + "'" +
                            " AND key_client = '" + key_client + "'" +
                            " AND key_company = '" + key_company +"'" +
                            " AND key_tax_code = '" + taxCode + "'";
                    rst = stat.executeQuery(select);
                    while(rst.next()){
                        taxDetail = new ItemTax();
                        //records to be displayed only
                        taxDetail.setKey_item(Integer.parseInt(rst.getString("key_item")));
                        taxDetail.setTax_value(rst.getString("tax_value"));
                        taxDetail.setTax_limit_val(Float.parseFloat(rst.getString("tax_limit_val")));
                        //////other details records ommited//////////////////////////
                        taxDetails.add(taxDetail);////An ArrayList of taxDetails for each taxCode
                     * A HashMap which has all taxCodes of an item as its keys
                     * and an ArrayList of taxdetails as its values.
                     * I return this for display in a JSP.
                    itemTaxDetails.put(taxCode,taxDetails);
                System.out.println();
                System.out.println("*********CONSOLE OUTPUT*************");//display on console
                Set set = itemTaxDetails.keySet();
                Iterator iter = set.iterator();
                System.out.println("Key\t\tValue\r\n");
                while (iter.hasNext()) {
                    Object taxCode=iter.next();
                    Object details=itemTaxDetails.get(taxCode);
                    System.out.println(taxCode +"\t" + details);
                System.out.println("************************************");
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return itemTaxDetails;
        //details of an item with all its taxes
        public List getAllItemDetails(String key_year,
                String key_office,String key_client,String key_company){
            List lineItems = new ArrayList();
            List itemNumbers = new ArrayList();
            Map taxDetails = new HashMap();
            LineItem item = null;
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            //A list of all item numbers in the declaration
            itemNumbers = getAllItemNumbers(key_year,
                    key_office,key_client,key_company);
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                for(Iterator itemIter= itemNumbers.iterator(); itemIter.hasNext();){
                    LineItem itemNum = (LineItem)itemIter.next();
                    int itemNumber = itemNum.getKey_item();
                    String select = "SELECT item_description,item_mass," +
                            "item_cost" +
                            " FROM " + Constants.WEB_TABLE +
                            " WHERE key_year = '"+key_year+"'" +
                            " AND key_office = '"+key_office+ "'"+
                            " AND key_client = '"+key_client+ "'"+
                            " AND key_company = '"+key_company+ "'"+
                            " AND key_item = " + itemNumber;
                    rst = stat.executeQuery(select);
                    while(rst.next()){
                        item = new LineItem();
                        item.setItem_description(rst.getString("item_description"));
                        item.setItem_mass(Float.parseFloat(rst.getString("item_mass")));
                        item.setKey_item(Integer.parseInt(rst.getString("item_cost")));
                        //////other details records ommited//////////////////////////
                        /* A HashMap of all itemTaxeCodes as its keys and an
                         * ArrayList of itemTaxedetails as its values
                        taxDetails = getItemTaxDetails(item.getKey_year(),item.getKey_office(),
                                item.getKey_client(),item.getKey_company(),item.getKey_item());
                        //item tax details
                        item.setItmTaxes(taxDetails);
                        //list of items with tax details
                        lineItems.add(item);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return lineItems;
        public Set getOrders(String key_year,String key_office,
                String key_client,String key_company){
            List lineItems = new ArrayList();
            Set lineOrders = new HashSet();
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            LineOder lineOrder = null;
            String select = "SELECT * FROM " + Constants.WEB_TABLE +
                    " WHERE key_year = '" + key_year + "'" +
                    " AND key_office = '" + key_office + "'" +
                    " AND key_client = '" + key_client + "'" +
                    " AND key_company = '" + key_company + "'";
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                rst = stat.executeQuery(select);
                while(rst.next()){
                    lineOrder = new LineOder();
                    lineOrder.setKey_year(rst.getString("key_year"));
                    lineOrder.setKey_office(rst.getString("key_office"));
                    lineOrder.setKey_client(rst.getString("key_client"));
                    lineOrder.setKey_company(rst.getString("key_company"));
                    ////list of items with all their details
                    lineItems = getAllItemDetails(lineOrder.getKey_year(),lineOrder.getKey_office(),
                            lineOrder.getKey_client(),lineOrder.getKey_company());
                    //setting item details
                    lineOrder.setItems(lineItems);
                    //a list of order with all details
                    lineOrders.add(lineOrder);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            return lineOrders;
    Controller.java
    package orderitems;
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Controller extends HttpServlet {
        private Map taxDetails = new HashMap();
        private OrderDetails orderDetails = null;
        protected void processRequest(HttpServletRequest request,
                HttpServletResponse response)throws
                ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            String key_year = "2007";
            String key_office = "VZX00";
            String key_company = "DG20";
            String key_client =  "ZI001";
            int key_item = 1;
            String nextView = "/taxdetails_list.jsp";
            orderDetails = new OrderDetails();
            taxDetails = orderDetails.getItemTaxDetails(key_year,key_office,
                    key_company,key_client,key_item);
            //Store the collection objects into HTTP Request
            request.setAttribute("taxDetails", taxDetails);
            RequestDispatcher reqstDisp =
                    getServletContext().getRequestDispatcher(nextView);
            reqstDisp.forward(request,response);
        protected void doGet(HttpServletRequest request,
                HttpServletResponse response)throws
                ServletException, IOException {
            processRequest(request, response);
        protected void doPost(HttpServletRequest request,
                HttpServletResponse response)throws
                ServletException, IOException {
            processRequest(request, response);
    taxdetails_list.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <title>Simple Tax Detail Diaplay ::</title>
            <link rel="stylesheet" type="text/css" href="imgs/orders.css"/>
        </head>
        <body>
            <jsp:useBean id="taxDetails" class="java.util.HashMap" scope="request"/>
            <table>
                <c:forEach items="${taxDetails}" var="hMap">
                    <tr>
                        <td><c:out value="${hMap.key}" /></td>
                        <!--td><%--c:out value="${hMap.value}" /--%></td-->
                    </tr>
                </c:forEach>
            </table>
        </body>
    </html>am displaying taxCodes(in this case i have VAT and ICD) fine but cant figure out how to display a list of value for each taxCode.Here is the output am getting
    both in my JSP and on the console:
    *******************************CONSOLE OUTPUT****************************
    Key          Value
    ICD     [orderItems.ItemTax@13e6226, orderItems.ItemTax@9dca26]
    VAT [orderItems.ItemTax@13e6226, orderItems.ItemTax@9dca26]
    Edited by: aiEx on Oct 8, 2007 6:54 AM

    hi evnafets,
    yes i need a nested for loop.I have tried your advice but my bean properties are not found.Am getting this error:
    javax.servlet.ServletException: Unable to find a value for "key_item" in object of class "java.lang.String" using operator "."
    I have tried this as stated earlier in the post:I have tried to make the method getItemTaxDetails return a List and get the returned list value as taxDetails. I then tested to display this list on JSP and its displaying fine.
    public List getItemTaxDetails(String key_year,String key_office,
                String key_client,String key_company,int key_item){
            ItemTax taxDetail = null;
            List taxDetails = new ArrayList();
            List itemTaxCodes = new ArrayList();
            Map itemTaxDetails = new HashMap();
            Connection conn = null;
            Statement stat = null;
            ResultSet rst = null;
            //get a list of all tax codes of an item with a
            //given item number
            itemTaxCodes = getAllTaxCodes(key_item,key_year,
                    key_office,key_client,key_company);
            DbConnection dbConn = new DbConnection();
            try {
                conn = dbConn.getDbConnection(Constants.WEB_JNDI);
                stat = conn.createStatement();
                for(Iterator taxCodeIter= itemTaxCodes.iterator(); taxCodeIter.hasNext();){
                    ItemTax itemTaxCode = (ItemTax)taxCodeIter.next();
                    String taxCode = itemTaxCode.getKey_tax_code();
                    String select = "SELECT tax_type,tax_value," +
                            "tax_limit_val FROM "+ Constants.WEB_TABLE +
                            " WHERE key_item = "+ key_item +
                            " AND key_year = '" + key_year + "'" +
                            " AND key_office = '" + key_office + "'" +
                            " AND key_client = '" + key_client + "'" +
                            " AND key_company = '" + key_company +"'" +
                            " AND key_tax_code = '" + taxCode + "'";
                    rst = stat.executeQuery(select);
                    while(rst.next()){
                        taxDetail = new ItemTax();
                        //records to be displayed only
                        taxDetail.setKey_item(Integer.parseInt(rst.getString("key_item")));
                        taxDetail.setTax_value(rst.getString("tax_value"));
                        taxDetail.setTax_limit_val(Float.parseFloat(rst.getString("tax_limit_val")));
                        //////other details records ommited//////////////////////////
                        taxDetails.add(taxDetail);////An ArrayList of taxDetails for each taxCode
                     * A HashMap which has all taxCodes of an item as its keys
                     * and an ArrayList of taxdetails as its values.
                     * I return this for display in a JSP.
                    itemTaxDetails.put(taxCode,taxDetails);
            } catch (SQLException ex) {
                ex.printStackTrace();
            } finally{
                SQLHelper.cleanUp(rst, stat, conn);
            //return itemTaxDetails;
            return taxDetails;
        }And my JSP
    taxdetails_list.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <link rel="stylesheet" type="text/css" href="imgs/orders.css"/>
        </head>
        <body>
            <table>
                <c:forEach var="curRecord" items="${taxDetails}" varStatus="rowCounter">
                        <c:choose>
                            <c:when test="${rowCounter.count % 2 == 0}">
                                <c:set var="rowStyle" scope="page" value="odd" />
                            </c:when>
                            <c:otherwise>
                                <c:set var="rowStyle" scope="page" value="even" />
                            </c:otherwise>
                        </c:choose>
                        <tr class="${rowStyle}">
                            <td>${curRecord.key_item}</td>
                            <td>${curRecord.tax_value}</td>
                            <td>${curRecord.tax_limit_val}</td>
                        </tr>
                    </c:forEach>
            </table>
        </body>
    </html>I can't see where am going wrong even with your advice.Please help.
    Thnx.

  • I want open a hotspot I have three iMac and 2 iPad 2 but I want control all the devices in my iPad like time and what they are watching?

    I want open a small hotspot I have three iMac and two iPad 2 but I would like to control everything from one iPad like time and what they are watching o copies too. What can I do? Please help me guys

    Home Sharing is designed to work on your local network not across the internet/cloud.
    Stuff is accessed under the Computers column where your local iTunes library on a local computer would appear.
    Home Sharing would share your iTunes content (i.e. stuff stored in itunes on the computer, not in the cloud) with AppleTV or an iPad etc on the SAME network.
    AppleTV2 will not be able to see itunes content on the work computer over the internet.  It's not designed to.  if the work computer was on the home network it would.
    iCloud is in it's infancy and is not a mature product - iTunes TV Show purchases appear on AppleTV, but currently music does not unless you are subscribed to iTunes Match. I find this rather odd to be honest, along with the inability to buy music on AppleTV2.  Movies purchased in iTunes are not authorised for iCloud viewing currently either.
    Maybe it has something to do with iTunes Match 'getting in the way' - i think they assume you'll use that whereas you really want to be able to access Purchased music from the cloud without subscribing to itunes Match which is overkill for some.
    AC

  • I am trying to connect Garritan Personal Symphony to Logic Express and Garageband. A dialog box pops up and asks for plugin Garritan-P. Where do I find it and what do I do with it. I can't locate this plugin doing searches on any of the porgrams.

    I am trying to connect Garritan Personal Symphony to Logic Express and Garageband. A dialog box pops up and asks for plugin Garritan-P. Where do I find it and what do I do with it. I can't locate this plugin doing searches on any of the porgrams.

    I'm not sure which version of Garritan Personal Orchestra you have or when you are getting a window pop-up, but check this link for starters:
    http://afjohnston.blogspot.com/2009/11/using-garritan-personal-orchestra-gpo.htm l

  • Why is Apple so bad at providing customers with information on what the problem with email is and what they are doing to fix it?

    Why is apple not providing information on what the problem withe email is and what they are doing to fix, along with a time frame for fixing the problem.

    It was because the problem was major.  If you do not know tech, you should know that a two day outage usually indicates some type of virus, hack, or a bad software load that they had to unravel.  The common way to solve that is to rebuild servers and put back into service.  That takes time.
    Apple did not want to admit this problem.  My guess at this stange was that they loaded new software that might be associated with the new IOS and it crashed.  To reveal this would be to cast into doubt their future revenue.
    Either way.  Run do not walk away from Icloud products and services.  Apple has demonstrated they can not be a business partner.

  • Just installed mountain Lion. Viewing a pdf sent to me using preview and some colors are appearing BLACK, however when I view the same PDF in Acrobat they are perfect and what they are suppose to be. WHY would PREVIEW showing a different color?

    Just installed mountain Lion. Viewing a pdf sent to me using preview and some colors are appearing BLACK, however when I view the same PDF in Acrobat they are perfect and what they are suppose to be. WHY would PREVIEW showing a different color?

    Here's what I've found on the issue:
    Pantone color definitions have changed (coinciding with CS6) — they are now "Pantone+" (I think that's what they're called). The "+" apparently means they're now LAB colors. Lab colors are not properly displayed in Preview (or in Finder previews) — they display as black (as far as I can tell, in all circumstances). I'm sure it's a tad more complicated than that, but that's the gist.
    Now the bad news — nobody seems to know anything about a fix or workaround (unless you convert your PDFs to process — this might be a fix for sending to clients). It causes issues for me in AI files — being able to view them in the finder (with previews) is a HUGE time saver for my workflow... when they're all black, not so much.
    In my chat with a director of product dev at Adobe, they placed the responsibility to fix on Apple (assuming Apple wants to support Pantone color definitions in their OS).

  • Where is my down load and what happened to my older version?????

    where is my download icon and what happened to my older version of photo shop???????? i want it back I live in the country and and have dial up at my house I am at a vacation home it has wivi. I am so upset I want my older version back....... this is bull shitl

    Taking back to store[<br/><br/>Sent from Yahoo Mail for iPad | https://overview.mail.yahoo.com?.src=iOS]

  • Hi guru's what is forign key , and what is foriegn key table

    hi guru's what is forign key , and what is foriegn key table

    hi...
    Foreign key is nothing but simply we can say,
    A field in one table related to field in another table..see the below example...
    consider, there are two tables like emp_personal and emp_official .
    In emp_personal table , the fields are  empid,empname, dob for example. In this table, empid is the primary key field.
    In emp_official table , the fields are empid,dept,designat ion for example. In this also, empid is the Primary key or may not be a Primary key field.
    now we relate these two tables using the foreign key relationship. Foreign key relationship is used to avoid the redundancy mainly...
    now, emp_personal is the Check table( Bcos it holds the empid field, which has the primary key...)
    emp_official table is the Foreign key table (Bcos it holds the empid field, which may or may not be a Primary key).
    now, we foreign key relationship is given. (click the KEY Like  icon in ABAP Dict - Database Table : Emp Official )
    Tables are ready to enter the records...for example create some 5 records in the emp_personal table .
    Table : emp_personal :   Primary Key - empid
    empid     empname    empdob             Status
       1            AAA          1.1.1990          Record saved successfully
       2            BBB          2.2.1990          Record saved successfully
       3            CCC          3.3.1990          Record saved successfully
       4            DDD          4.4.1990          Record saved successfully
       5            EEE          5.5.1990          Record saved successfully
    records are saved in the table : emp_personal.
    now, we are tryiing to create records in emp_official table.
    Table : emp_official :   Primary Key or not a Primary Key - empid
    empid          dept        designation             Status
       1            Dept1        S.E                 Record saved successfully
       2            Dept2       S.SE               Record saved successfully
    now, if u try to create the record which is not in the table emp_personal , which has the empid = 6. but it'll not allow us to create the record 6, bcos of the foreign key relationship between these two tables....
       6            Dept6       P.M                Record doesn't exist......
    now, the foreign key relationship helps us to avoid the duplicate entry......
    Foreign key relationship is possbile between the tables having atleast one same type of field. Also the Technical characteristics of the fields should be same . this is done in the value table.....
    this is the concept of Foreign key...I think this explantion is enough to describe the Foreign key....

  • Has anyone received an update on apple tv issue with HD movies and what they are doing about it

    Has anyone received an update on apple tv issue with HD movies and what they are doing about it

    Whatever the rep told you, it is complete nonsense. There is clearly a problem at your end, the Apple TV 3 is capable of more than the Apple TV 2, and you clearly have the Apple TV 2 working perfectly. Since the Apple TV 2 is able to download from the Internet properly, then my suspicion would be your problem lies on your local network. Interference is a common problem on local networks.
    Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • I have added more songs to my library. Half of the library has selected ticks but when I click on any of the others to select them the whole song disappears from the list. Why and what can I do to fix?

    I have added more songs to my library. Half of the library has selected ticks but when I click on any of the others to select them, the whole song disappears from the list. Why and what can I do to fix?

    Hey Paul,
    If I understand correctly, it sounds like iTunes is not grouping the songs from a particular CD together. The cause could be something as minor as a misspelling or slight variations. For more information, see the following resource:
    Why aren't songs with the same album art grouped together?
    http://support.apple.com/kb/TS1468
    Thanks,
    Matt M.

  • Can I get a list of all binary files and what they do?

    I'm a newbie to Oracle. Needless to say I'm blindly muddling my way through the experiance of installations/setup and managing my first database. I realize that there is a three tier system and for my system all three of the tiers are on the same pc! In short I need help with what executables do what. I've tried going through Linux howto's, online docs, and even bought a book on the subject but the book seems to stroke the benifits of using Oracle instead of actually telling me how to use Oracle. I'm using Oracle8i 8.1.7 EE (enterprise edition) on Linux RH 7.0. I would like a link to a list or the actuall list of all the binary files in $OracleHOME/bin/ and what each of them do. Also important log files I should consult regularly would be most helpfull. Thanks.

    While you're at it, see if you can get a complete description of all the X$ tables.

  • Descritpti​on of property nodes and what they mean

    Does anybody know where I can get a good description of property nodes and what the specific properties mean?  The help files are a start, but in many areas they are kind of lame..

    My company is sending a representative to NI Week to meet with some head honchos from NI on possible improvements and suggestions.  I have added what you are asking for to the list of what will be discussed.  In addition to property nodes, I am asking for documentation of all methods.  I've seen a large TestStand poster that lists API calls, properties and methods, and such.  I think the same ought to be done with Labview.  Of course that poster would be humongous.  Any kind of document would suffice.  I am anxiously awaiting the outcome of this meeting.
    Many other items are on the list, including some issues that were brought up in this forum.  I have asked for a way to "comment out" sections of code without having to use a case structure set to false with all the wiring changes.  Another item I asked for was a wizard to automatically generate the basic code for some architectures, like producer-consumer, state machine (simpler that using the state machine toolkit), and such.  Many others here have joined in to make suggestions, too numerous to list them all here.
    - tbob
    Inventor of the WORM Global

  • What I want from BT, and what they've done wrong (...

    I've recently come back to BT from different phone and broadband providers because I wanted BT Infinity. My experience so far has been pretty bad. I'll explain later, but firstly here's what I want from BT.
    Most importantly I want a 24 hour helpdesk, based in the UK staffed by technically trained people who can actually do something about my problem or at least give the correct details if it is a general outage.
    I want control over my internet connection. I want to be able to see the line stats and status of my modem (you can't with BT Infinity) and I want to be able alter my speed profile and the parameters of my line to suit my own tolerance for speed vs. reliability.
    Ideally I want to ring up and talk to a real person in the UK about anything unless it's really trivial and easily automated (balance inquiry, paying a bill etc.).
    When I have reported a fault or am having problems with the ordering process I want to be able to get through to the team dealing with my problem easily rather than via the torturous calling menu and a different department each time.
    I want communications from BT to make sense and be consistent. This includes emails, the call menu and any recorded messages.
    I want the recorded status message updated more frequently.
    Here are my experiences since ordering my BT service in November:
    I tried to order Infinity (and phone line transfer)) four times. I had to do this over the phone as the website wouldn't work. Each time I was told I could have infinity and each time I got a very impersonal email telling me I couldn't. I think because I had Broadband and phone from different suppliers and the system couldn't handle taking over the line and ordering Infinity at the same time. Eventually I successfully ordered it but only because BT insisted I have a new line put in (presumably to get around the problem in their ordering process.
    I got Infinity installed OK and all was working fine but now no longer had my phone number. Then I had a farce where my previous provider, TalkTalk, kept failing to cancel my old line so I couldn't get the number back. I was never sure why BT couldn't just take the line back as I thought there was a process for this.
    During this process I spoke with BT India a couple of times to explain they could go ahead (thinking that TalkTalk had released the line). They were very polite and everything seemed to be proceeding until I got an email telling me I was indeed getting a new number, but not my old one just some random one and I was going to be charged £25 for the pleasure.
    Cutting a long story short I got my old number back on January 2nd having been without it since November 15th. Thanks to Margret @ BT who was genuinely helpful.
    My BT infinity speed is a vast improvement over my own line, however at 23Mb it's nowhere near the max (I'm quite close to the box) and it drops much lower during peak hours (it varies but it's been mostly around 6-14Mb).
    Just recently the service has failed twice. The first time I called the "help" desk and was put through to an Indian call centrel. It was about 1am on a weekday (I'm a night owl) and the chap told me that the Infinity helpdesk was closed (WTF, are we only allowed to have faults during the day?). He then went away and told me that there was a problem in my area. I checked online via my phone and none was mentioned, some time later a problem did appear online in the Londond area but still nothing about my area (Chelmsford, Essex). I still have no idea what the problem was.
    Then it went down again last night (Sunday) again late in the evening (12.30am), this time I got put throught to a recorded message that told me the helpdesk was closed, not even an Indian call centre to talk to and then it promptly hung up on me.
    The first time it went down my wife was without broadband (which I'm paying for) all day. I got home and reset the router and it came to life. I'm not sure if the broadband was down or the router just needed resetting. This was particularly annoying as there seems to be no way of knowing when it is back without resetting the router every 10 minutes until it works. Especially outside of hours as there is NO HELP AVAILABLE.
    Yesterday I called the status line and was given the hilarious message, which was roughly "There are currently no problems with the BT network. There are problems with the BT network in the Birmingham area. If you want further information please go to www.bt.com/...". Firstly is there or isn't there a problem, and how the **bleep** can I go to "www.bt.com/..." when my internet is down.
    Basically if it's outside BT's convenience then I can't get any problem addressed. Totally useless, totally unacceptable, the Internet does not shut in the evening BT!!!
    Another amusing one was trying to get caller ID back on my line. Again the website didn't work so I ended up calling. I eventually got throught to a message that said "Press 1 to order a free service, Press 2 to order a premium service, Press 3 to order a special service" (or something like that). How the **bleep** do I know which category caller ID fits into?
    The whole experience has been frustrating which is a shame because I  want BT to succeed, I want them to supply me with a great service and I'd be happy to pay (even more) for that. As the saying goes, you measure how good a company is by what they do when things go wrong...
    It's obvious that BT have some good staff, everyone has been polite and on the surface seemed helpful and when you finally do get to someone is a position to help things eventually get sorted (thanks Margret).
    Why is it that communication companies are the absolute worst at communicating?
    Anyone agree, have similar experiences?
    Rant Over!
    LJ

    The outage you refer to was a major network fault last night nothing to do with maintenance it affected a large part of the Midlands and south England also a planned outage took place as well
    these dialling codes were affected for the planned outage
    01277, 01296, 01438, 01442, 01491, 01494, 01582, 01707, 01708, 01727, 01737, 01753, 01767, 01895, 01923, 0203010, 0203073, 0203080, 0203113, 0203114, 0203118, 0203132, 0203205, 0203209, 0203210, 0203219, 0203226, 0203261, 0203264, 0203266, 0207034, 0207121, 0207168, 0207209, 0207221, 0207224, 0207229, 0207243, 0207255, 0207258, 0207266, 0207286, 0207289, 0207313, 0207323, 0207348, 0207355, 0207361, 0207368, 0207371, 0207376, 0207381, 0207384, 0207385, 0207386, 0207402, 0207408, 0207409, 0207436, 0207460, 0207467, 0207471, 0207491, 0207493, 0207495, 0207499, 0207535, 0207565, 0207580, 0207586, 0207598, 0207602, 0207603, 0207610, 0207616, 0207629, 0207631, 0207636, 0207637, 0207706, 0207722, 0207723, 0207724, 0207725, 0207727, 0207751, 0207792, 0207795, 0207813, 0207835, 0207907, 0207908, 0207912, 0207937, 0207938, 0207985, 0208177, 0208200, 0208201, 0208205, 0208207, 0208222, 0208230, 0208248, 0208292, 0208327, 0208342, 0208351, 0208354, 0208357, 0208358, 0208362, 0208363, 0208364, 0208366, 0208367, 0208381, 0208385, 0208400, 0208416, 0208420, 0208421, 0208422, 0208423, 0208424, 0208426, 0208427, 0208428, 0208429, 0208453, 0208482, 0208515, 0208537, 0208550, 0208551, 0208561, 0208563, 0208566, 0208567, 0208569, 0208571, 0208573, 0208574, 0208576, 0208579, 0208581, 0208589, 0208606, 0208621, 0208723, 0208732, 0208735, 0208740, 0208741, 0208742, 0208743, 0208744, 0208746, 0208748, 0208749, 0208752, 0208756, 0208762, 0208797, 0208810, 0208811, 0208813, 0208834, 0208838, 0208840, 0208843, 0208846, 0208848, 0208861, 0208863, 0208864, 0208866, 0208867, 0208868, 0208869, 0208893, 0208896, 0208905, 0208907, 0208909, 0208917, 0208924, 0208930, 0208931, 0208932, 0208933, 0208951, 0208952, 0208953, 0208954, 0208959, 0208961, 0208963, 0208965, 0208966, 0208991, 0208992, 0208993, 0208997, 0208998, 20326, 20734, 20737, 20760, 20761, 20775,
    and these by the network outage
    01132, 01142, 01158, 01159, 01162, 01163, 01179, 01189, 01204, 01205, 01206, 01208, 01209, 012120, 012121, 012123, 012124, 012125, 012131, 012132, 012133, 012134, 012135, 012136, 012137, 012141, 012142, 012143, 012144, 012145, 012146, 012147, 012148, 012150, 012151, 012152, 012153, 012155, 012156, 012158, 012160, 012161, 012162, 012163, 012164, 012166, 012168, 012169, 012170, 012171, 012173, 012174, 012178, 01223, 01224, 01225, 01226, 01229, 01236, 01237, 01239, 01242, 01244, 01246, 01249, 01252, 01253, 01254, 01255, 01257, 01260, 01267, 01269, 01270, 01274, 01275, 01276, 01278, 01279, 01280, 01283, 01285, 01286, 01291, 01292, 01294, 01295, 01296, 01297, 01299, 01302, 01304, 01320, 01323, 01326, 01327, 01329, 01332, 01344, 01349, 01352, 01353, 01364, 01366, 01367, 01373, 01376, 01384, 01386, 01389, 01392, 01394, 01395, 01405, 01406, 01407, 014144, 014155, 014163, 014164, 014176, 014177, 014181, 014188, 01422, 01423, 01427, 01432, 01434, 01436, 01437, 01442, 01443, 01446, 01451, 01452, 01453, 01454, 01455, 01458, 01460, 01472, 01475, 01476, 01480, 01484, 01488, 01492, 01494, 01495, 01497, 01505, 01507, 01509, 015125, 015132, 015134, 015135, 015142, 015143, 015149, 015164, 015165, 01522, 01526, 01527, 01530, 01531, 01535, 01536, 01538, 01543, 01544, 01545, 01546, 01547, 01554, 01555, 01558, 01559, 01562, 01564, 01565, 01568, 01570, 01572, 01582, 01588, 01594, 01597, 01600, 01603, 01604, 01606, 01608, 016132, 016133, 016149, 016162, 016164, 016165, 016173, 016176, 016179, 016181, 016183, 016194, 016197, 01623, 01625, 01626, 01629, 01630, 01631, 01633, 01635, 01636, 01639, 01646, 01647, 01652, 01654, 01656, 01666, 01670, 01672, 01673, 01675, 01676, 01684, 01685, 01686, 01691, 01692, 01694, 01695, 01698, 01704, 01706, 01709, 01724, 01733, 01736, 01743, 01744, 01745, 01746, 01749, 01752, 01753, 01754, 01756, 01758, 01761, 01763, 01765, 01772, 01773, 01777, 01780, 01782, 01785, 01788, 01789, 01792, 01793, 01795, 01805, 01823, 01824, 01827, 01829, 01840, 01842, 01854, 01858, 01865, 01872, 01873, 01874, 01883, 01884, 01886, 01888, 01889, 01895, 01900, 01902, 01905, 01908, 01909, 019126, 019138, 01920, 01922, 01924, 01925, 01926, 01928, 01933, 01934, 01938, 01939, 01942, 01945, 01947, 01948, 01949, 01952, 01954, 01963, 01969, 01970, 01971, 01974, 01978, 01982, 01984, 01989, 01993, 01994, 0207275, 0207380, 0207383, 0207387, 0207791, 0208427, 0208554, 0208591, 0208692, 0208759, 0208861, 0208863, 0239225, 0239234, 0239236, 0239242, 0239243, 0239245, 0239247, 0239248, 0239249, 0239261, 0239264, 0239271, 0239275, 0247622, 0247623, 0247625, 0247626, 0247627, 0247632, 0247633, 0247634, 0247635, 0247636, 0247637, 0247638, 0247639, 0247641, 0247643, 0247644, 0247645, 0247649, 0247652, 0247655, 0247659, 0247660, 0247661, 0247662, 0247663, 0247664, 0247665, 0247667, 0247669, 0247671, 0247672, 0247673, 0247674, 0247676, 0247683, 0247684, 0284372, 0288774, 0289181, 0289182, 0289447, 0292016, 0292019, 0292020, 0292021, 0292022, 0292023, 0292025, 0292030, 0292031, 0292033, 0292034, 0292037, 0292038, 0292039, 0292040, 0292041, 0292045, 0292046, 0292047, 0292048, 0292049, 0292051, 0292052, 0292054, 0292059, 0292061, 0292062, 0292063, 0292064, 0292065, 0292066, 0292068, 0292069, 0292070, 0292071, 0292072, 0292073, 0292074, 0292075, 0292076, 0292077, 0292079, 0292080, 0292083, 0292084, 0292085, 0292086, 0292088,
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Where is the DELETE key -- and I don't mean "backspace"

    Every PC of any stripe that I have ever owned -- and we're talking a lot of machines in nearly 30 years of this -- has had two 'delete' keys.
    One is a backspace key -- it erases characters in before the cursor. It's usually found above the enter/return key, where the backspace key used to be on those old-fangled typewriter machines.
    The other key was a "delete" key -- which would erase characters that apper AFTER the cursor. There the backspace key would erase backwards, the delete key would erase forwards.
    So, where is the DELETE key on a Mac keyboard? Is there some combination of keys that will serve that purpose? Or does somebody really think I'm going to move the cursor to the end of some place and delete backwards ALL the time?
    I read in yesterday's Wall Street Journal that Steve Jobs doesn't like buttons, but this is ridiculous. It could, in fact be a fatal error... I've still got 10 days to take this thing back...
    --PS

    I don't suppose there is any kind of utility program that would let me re-map they keyboard, so that I could make, say, the "enter" key at the bottom into a "forward-delete" key (I never use that enter key, my hands are trained to use the "enter/return" key where it's always been on a typewriter -- yeah, I'm that old...)
    Either buried on the Mac somewhere or a third party program that would let me do that? Would sure make the MacBook more liveable... I delete a LOT!
    Thanks,
    --PS

Maybe you are looking for