More ClassCastException troubles....

Hey-hey.
I have two JTables with a DataModel which extends AbstractDataModel. I have two buttons which move highlighted rows from one JTable to the other. However, when testing this I get a ClassCastException. As far as I can tell, all is correct....but I'm probably wrong. Can I have a second pair of eyes, please?
A little background info......each row in the JTable data model is actually a Vector element which in turn is an ArrayList containing three elements. So I want to return each ArrayList object and add it to the other JTable. I'm using the List interface to cover all my bases in regards to parameters and returns, but when I click my "move" button, I get a ClassCastException which is here: -
Exception occurred during event dispatching:
java.lang.ClassCastException
at ExcludeListFrame.actionPerformed(ExcludeListFrame.java:153)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
<snipped here - I'm pretty sure stuff below this isn't important to us mere mortals>
Anyway, here is my DataModel code...
import javax.swing.table.AbstractTableModel;
import java.util.Collection;
import java.util.ArrayList;
import java.util.Vector;
import java.util.Map;
import java.util.List;
import java.util.Iterator;
import java.util.Set;
import commonfiles.Utility;
public class ListDataModel extends AbstractTableModel implements Cloneable {
    private final int NUM_COLUMNS = 3;
    private Vector theRowData;
    private String[] columnNames = {"USER_REFNO", "CODE", "USER_NAME"};
    // Constructor : Create empty data model.
    public ListDataModel() {
        theRowData = new Vector();
    // Constructor : Create data model from another collection.
    public ListDataModel(Collection someCollection) {
        theRowData = new Vector();
        theRowData.addAll(someCollection);
    public ListDataModel(ArrayList arrayCollection) {
        ArrayList theColumnArray;
        Map rowMap;
        theRowData = new Vector();
        for (int i = 0; i < arrayCollection.size(); i++) {
            rowMap = (Map)arrayCollection.get(i);
            theColumnArray = new ArrayList();
            theColumnArray.add((Object)rowMap.get(columnNames[0]));
            theColumnArray.add((Object)rowMap.get(columnNames[1]));
            theColumnArray.add((Object)rowMap.get(columnNames[2]));
            theRowData.add(theColumnArray);
    public Object clone() {
        try {
            return super.clone();
        } catch (CloneNotSupportedException cnse) {
            throw new RuntimeException(cnse.toString());
    public Object getValueAt(int rowIndex, int columnIndex) {
        ArrayList theColumnArray;
        theColumnArray = (ArrayList)theRowData.get(rowIndex);
        return(Object)theColumnArray.get(columnIndex);
    public List getRowAt(int rowIndex) {
        return (List)theRowData.get(rowIndex);
    public void removeRowAt(int rowIndex) {
        theRowData.removeElementAt(rowIndex);
    public void addRow(List rowObject) {
        theRowData.addElement((ArrayList)rowObject);
    // Check to see if a particular Table cell is editable.
    // In this model, none of the cells are directly editable.
    public boolean isCellEditable(int rowIndex, int columnIndex) {
        return false;
    public int getColumnCount() {
        return columnNames.length;
    // Return the column headers.
    public String[] returnColumnNames() {
        return columnNames;
    // Return the name of a specific column.
    public String getColumnName(int col) {
        return columnNames[col].toString();
    public int getRowCount() {
        return theRowData.size();
    public Vector returnAllData() {
        return theRowData;
}...and here is the code that fails.....
        int[] selectedRows;
        List listItem;
        // Event that happens when the List Add (>>) button is pressed.
        if (e.getSource() == btnListAdd) {
            // Get the number of selected (hightlighted) rows.
            selectedRows = this.tableUserList.getSelectedRows();
            if (selectedRows.length > 0) {
                for (int row = 0; row < selectedRows.length; row++) {
                    listItem = (List)((ListDataModel)tableUserList.getModel()).getRowAt(row);
                    ((ListDataModel)tableExcludeList.getModel()).addRow((List)listItem);    //    <----- ClassCastException thrown here.   
                tableExcludeList.repaint();
        }I'm sure this is obvious, but I'm starting to go cross-eyed over this. Thanks for any help. I'm pretty sure I'm casting things where I should and that List interfaces are a blanket type for certain Collections as parameters, so I don't really know what I'm doing wrong.

I've done a little further research. I first thought to check that the item I returned was something that implemented the List interface, as if it didn;t this could cause it to fail. So I put in the line.
System.out.println(listItem.getClass().toString());To which I get back: - class java.util.ArrayList
So, its not that. I just don't see why adding this object to the Vector would fail. This method is almost too simple to fall over and the Exception happens within the actionPerformed method.

Similar Messages

  • New ipod more frustration trouble with downloading itunes setup

    I have had this ipod 3 days now and before I pitch it, give it away or post on ebay, I need help. I am getting more and more frustrated.
    For some reason I cannot get the itunes software to download to my laptop, the one I am using to type this message. I'm using Windows XP pro. AOL internet connection through broadband with AT & T. Everytime I go to the download site, I click on the proper one and click the down load button. Not matter if it set it to run or to save, the setup does not download to my computer. I have tried as I said both run and saving to a folder and then opening the folder and tring to click on it to set up and nothing happens. I have checked my control pannel and then gone to add or remove software and in the entire listing there is no itunes showing. When I do a computer search for itunes it only finds the itunes in the ipod folder I set up on the desk top to download it into and save. I just won't download and install. I have tried to click on the setup in the folder I created on the desk top but it just does not install. Can anyone tell me what the problem might be??? Is there a CD that I can download the set up needed to use this ipod???
    I have done everything I can think of, I have done a disk cleanup to get rid of temp internet files, junk and run my spyware program. My computer has no viruses. After doing these, I still can't download the setup itunes software.
    I do have have another laptop available, and I can try that one, but before I try downloading the itunes setup on my other computer, can someone tell me why I can't download the setup to this computer????
    I am frustrated, can someone help !!!
    Karen
    Michigan

    I solved the problem, it seems that Quicktime was not properly installed on my computer. Even thought it showed when I looked in the control panel under add and remove software, it was there, but it was not working. I went to the quicktime tab at www.apple.com and downloaded quicktime again. This time I got a blue Q in my lower righ hand corner of my screen, so when I click on it the quicktime screen comes up and is working. I then downloaded the itunes 7.0.2 and it downloaded and set up fine, now I am just waiting for all my music on my computer to conver to itunes.

  • More burning trouble

    Ok, so I redid my project in SD instead of HD but I'm still having trouble burning my DVD project. It says that the Video_TS folder was not included in the final disc. Any ideas? thanks

    Alright, I got the DVD lens cleaner and ran it through the process a couple time. Then, for the first time, I was successfuly able to burn two Verbatim DVD+R DLs. However, I got the same old error message while trying to burn the third one. I tried cleaning it again, but no luck. Now what?

  • More VMware trouble - can't build modules

    After getting VMWare tools to reach the module-installation part, I've hit a snag. None of the modules will install, all failing for more or less the same error:
    Building from scratch, can't use the AUR package. Anyone encountered this before?
    Some funky symbols and spacing were added when I logged the session...strange things like a space in /usr/src/linux-2-6.35-ARCH/include for example...not sure why. Sorry about that.
    Stopping VMware Tools services in the virtual machine:
       Guest operating system daemon:[71G done
       Unmounting HGFS shares:[71G done
       Guest filesystem driver:[71G done
    None of the pre-built vmmemctl modules for VMware Tools is suitable for your
    running kernel.  Do you want this program to try to build the vmmemctl module
    for your system (you need to have a C compiler installed on your system)?
    [yes]
    Using compiler "/usr/bin/gcc". Use environment variable CC to override.
    What is the location of the directory of C header files that match your running
    kernel? [/lib/modules/2.6.35-ARCH/build/include] /usr/src/linux-2.6.35-ARCh/  H/include
    Extracting the sources of the vmmemctl module.
    Building the vmmemctl module.
    Using 2.6.x kernel build system.
    make: Entering directory `/tmp/vmware-config11/vmmemctl-only'
    make -C /usr/src/linux-2.6.35-ARCH/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
          MODULEBUILDDIR= modules
    make[1]: Entering directory `/usr/src/linux-2.6.35-ARCH'
      CC [M]  /tmp/vmware-config11/vmmemctl-only/backdoorGcc32.o
      CC [M]  /tmp/vmware-config11/vmmemctl-only/os.o
    In file included from /tmp/vmware-config11/vmmemctl-only/driver-config.h:36:0,
                     from /tmp/vmware-config11/vmmemctl-only/os.c:38:
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:53:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:57:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:61:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:65:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:70:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:75:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:80:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:85:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:90:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:95:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:100:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:105:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:110:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_version.h:115:5: warning: "LINUX_VERSION_CODE" is not defined
    In file included from /tmp/vmware-config11/vmmemctl-only/os.c:38:0:
    /tmp/vmware-config11/vmmemctl-only/driver-config.h:66:5: warning: "LINUX_VERSION_CODE" is not defined
    In file included from /tmp/vmware-config11/vmmemctl-only/os.c:42:0:
    /tmp/vmware-config11/vmmemctl-only/compat_kernel.h:37:5: warning: "LINUX_VERSION_CODE" is not defined
    In file included from /tmp/vmware-config11/vmmemctl-only/compat_kernel.h:43:0,
                     from /tmp/vmware-config11/vmmemctl-only/os.c:42:
    /tmp/vmware-config11/vmmemctl-only/compat_completion.h:37:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_completion.h:71:7: warning: "LINUX_VERSION_CODE" is not defined
    In file included from /tmp/vmware-config11/vmmemctl-only/compat_completion.h:160:0,
                     from /tmp/vmware-config11/vmmemctl-only/compat_kernel.h:43,
                     from /tmp/vmware-config11/vmmemctl-only/os.c:42:
    /tmp/vmware-config11/vmmemctl-only/compat_semaphore.h:24:5: warning: "LINUX_VERSION_CODE" is not defined
    /tmp/vmware-config11/vmmemctl-only/compat_semaphore.h:25:30: fatal error: asm/semaphore.h: No such file or directory
    compilation terminated.
    make[2]: *** [/tmp/vmware-config11/vmmemctl-only/os.o] Error 1
    make[1]: *** [_module_/tmp/vmware-config11/vmmemctl-only] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.35-ARCH'
    make: *** [vmmemctl.ko] Error 2
    make: Leaving directory `/tmp/vmware-config11/vmmemctl-only'
    Unable to build the vmmemctl module.
    The memory manager driver (vmmemctl module) is used by VMware host software to
    efficiently reclaim memory from a virtual machine.
    If the driver is not available, VMware host software may instead need to swap
    guest memory to disk, which may reduce performance.
    Last edited by Intrepidus (2010-10-25 23:05:17)

    have you installed vmware player, workstation, server...?
    There's no vmware tools in AUR, not sure what are you installing.
    try open-vm-tools from comunity.

  • More import troubles for a Lightroom amateur..

    Hello one and all.
    I've been searching for a solution to my problem for a few days now and as of yet no luck. I'm quite inexperienced with all the ins and outs and dialogs of Lightroom; I'm a very basic user, import photos, organise into sets etc and collections and then just edit.
    As of the other evening, after inserting my SD card into my Mac's built in reader, Lightroom would open the import catalog and show all of the images on the card, greying out those that were previously imported and those that are due to be copied.
    My lightroom is set to copy the photos over from my SD card to my pictures folder on my Macbook but for some reason, whenever I try to import any photos, it won't let me. It will bring up the import bar (top left) along with the import in progress screen. Then Lightroom decides to 'lock-up' (i think that's the term?) and won't import any photos. It doesn't freeze exactly, rather it just refuses to import them to the pictures folder. I have tried deleting my preferences and such to no avail. I also just reinstalled it and still the same problem.
    BUT when I tell Lightroom to send my pictures to another folder, it works fine? I'm at a loss as this is kind of inconvinent.
    I'm running Mac OS X V10.6.8 with a 2.3GHz Intel Core i7, 8GB of 1333 MHz DDR3 RAM so the computer shouldn't even break a sweat doing it's task
    I use a Canon 550D that I havent updated in a while. I just updated my EFI firmware on the Mac in vain it would help. As far as I can tell it appears to be a probelm with location? I have googled and tried a nuber of things and I'm 100% sure it's the tiniest thing but I would really appreciate some help as to what's going on. It's just one of those things that will end up confusing me until I sort it.
    Any help will be muchly appreciated,
    Many thanks to all in advance (even if you call me a internet n00b who doesn't know how to google)
    Ash.
    oh and for the record I've been trying to google the solution for a couple of days now

    What happens when you try to copy images directly from the SD card reader to a new subfolder in 'Pictures' on your HDD using the OS X Finder and NOT LR?
    I know I will be flamed for what I am about to say, but so be it! I suggest never copying images from any camera or card reader directly into LR using the 'Import' module. There have been many reports (too many to count!) of users losing images, corrupting images, or simply not copying a single file, even though everything appeared to be working just fine. Yes it should work without a hitch since it is a simple operation, but it doesn't in too many cases!
    I have never used LR's 'Import' module to download image files direct from a camera or with a card reader. I also have NEVER lost or corrupted a single image file, or have an image file that didn't get transferred to the exact folder location I selected. Here is my simple procedure, which takes very little additional time:
    1) Copy the image files direct from camera or a card reader to one (1) destination folder on your hard drive using Windows Explorer or Mac Finder. I use the simplest folder naming hierarchy: Camera Model (Canon 5D MKII) > Shoot Date (YYYMMDD). If the images on the card were shot over multiple days, I use the last day of the shoot. REASON: LR provides plenty of organizational tools for cataloging and adding metatdata to your image files.
    Keep Image Storage Simple = KISS
    2) Open Lightroom's Import module and 'Add' the new files.
    3) Confirm the picture count for the new image files imported into Lightroom. This will be easy if you used one (1) folder with the shoot date, located under your 'Camera Model' main folder.
    4) Sort images by 'Capture Time' and check the first image file (oldest) for full functionality by verifying 1:1 preview has proper imaging in LR’s ‘Develop’ module.
    5) Repeat #4 above for the very last file (newest).
    This isn't an exhaustive test, but a good "common sense" check that the image files transferred properly to your hard drive and are fully functional in LR (i.e. not corrupted).

  • More flash trouble

    :confused
    I have navigation flash buttons on my webpage and at one
    point they previewed fine but now they no longer preview and when
    uploaded to site they are gone. I uploaded the Ac Scripts and .swf
    files and per dreamweaver don't have any broken links but it does
    state that i have several external links, links to pages outside of
    site. These are all AC Scripts and
    download/macromedia/pub/shockwave links. Now my confusion is
    dreamweaver shows my AC Scripts within my site, but the external
    link under results shows file:///C|/Documents and
    Settings/Attila/Desktop/Scripts/AC_RunActiveContent.js
    Text
    Thanks for any help

    If you want to use Flash for navigation, consider this -
    1. Some people don't have Flash installed - what do they do?
    2. Search engines don't parse Flash links - your site will
    not be spidered
    if you do not also have redundant HTML navigation.
    3. Screen assistive devices don't parse Flash links - what
    will those users
    do?
    4. DW cannot maintain links within a Flash movie, so if you
    move or rename
    a linked file, your navigation will break - what will you do?
    You will have
    to remake those buttons.
    It's usually a very bad idea for these reasons - and for
    these reasons,
    Adobe has removed Flash buttons and Flash text from the next
    version of
    Dreamweaver.
    > the external link under results shows
    > file:///C|/Documents and
    > Settings/Attila/Desktop/Scripts/AC_RunActiveContent.js
    DW thinks that this path leads to a file outside your local
    root folder. Is
    it?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "affliction7" <[email protected]> wrote in
    message
    news:ghghgb$d11$[email protected]..
    > :confused
    > I have navigation flash buttons on my webpage and at one
    point they
    > previewed
    > fine but now they no longer preview and when uploaded to
    site they are
    > gone. I
    > uploaded the Ac Scripts and .swf files and per
    dreamweaver don't have any
    > broken links but it does state that i have several
    external links, links
    > to
    > pages outside of site. These are all AC Scripts and
    > download/macromedia/pub/shockwave links. Now my
    confusion is dreamweaver
    > shows
    > my AC Scripts within my site, but the external link
    under results shows
    > file:///C|/Documents and
    > Settings/Attila/Desktop/Scripts/AC_RunActiveContent.js
    http://bouncybouncyss.com
    > Thanks for any help
    >
    >

  • ClassCastException using PJC in Forms 9.0.4.1.0

    I'm trying to setup a simple PJC in a Forms using Oracle Forms 9.0.4.1.0 but I get a FRM-92100 with a java.lang.ClassCastException: nl.eurotransplant.pjc
    I've create a Form with a simple Java bean and set the implementation class to "nl.eurotransplant.pjc"
    I've also created the class nl.eurotransplant.pjc implementing the IView interface. I've implemented all the abstract methods from IView but none of them are doing anything (yet) other the system.out.println to the console.
    Packaged the nl.eurotransplant.pjc in a JAR file and included that in the archive parameter for Forms.
    From the console I can see the constructor of the PJC is being called and the init method is being called and completes. No more messages after that.
    Does anyone of you have a suggestion as to what I'm doing wrong?

    I searched some more on the Forum and eventually found a whitepaper on PJC's in Forms 6i. That gave me the tip not to implement the IView interface, but just extend the VBean class.
    That's what I just tried and no more classCastException. That seems to fix my issue. No to develop the bean itself...

  • Is there a terminal emulator with up- down output?

    The idea just hit me but it's very hard to find something in search or on google (up and down are popular keywords...).
    Here's my idea: the terminal I use (urxvt) and every other I heard of always outputs text sort of 'upwards'. Meaning: the prompt line is mostly on the bottom (and if you use a tiling wm like me it's mostly on the bottom of the screen), well except for new terminal windows of course.
    I thought it would be cool if it could be on the top of the screen and the lines would be output towards the bottom of the window. Get it? If you would take a normal terminal window and reverse the lines order, this would be exactly what I need.
    Quick example:
    A normal terminal
    [user@desktop]: ls -l
    drwxr-xr-x 5 user user 4096 Jan 17 12:53 dir1
    lrwxrwxrwx 1 user user 30 Dec 23 17:14 a-link
    drwxr-xr-x 2 user user 4096 Feb 10 13:26 dir2
    [user@desktop]: _
    What I would like
    [user@desktop]: _
    drwxr-xr-x 5 user user 4096 Jan 17 12:53 dir1
    lrwxrwxrwx 1 user user 30 Dec 23 17:14 a-link
    drwxr-xr-x 2 user user 4096 Feb 10 13:26 dir2
    [user@desktop]: ls -l
    Get it? Top -> down! So the prompt always gravitates toward the top of the window (provided enough output of course)
    So anyway, back to the question: is there a terminal emulator that can do it?
    Last edited by kosmiciatakuja (2011-03-14 10:47:55)

    lives2evil wrote:Interesting idea!
    But no, as far as I know there's no such things.
    Any if you think it a little further, it's a trouble some idea. You may not notice with a simple "ls" command but with something more complex trouble will pop up every where.
    How about you try and think how exactly will you implemented this idea.
    Could be fun (Tried it).
    Heh yea, i just did the same and came to the same conclusions.

  • Macbook Pro 13 inch (2011) freezes all the time

    Hi all ,
    About a week ago, I started to experience difficulties working on my MacBook Pro - the whole system started to "freeze" and glitch all over the place, e.g. finder not responding like it should be, opening folders takes ages (in some cases up to 1 minute), and even as I type this text now. In my case, rebooting did not do the trick, my Mac was still glitching like ****.
    So I went on, freed 150GB of data on hard drive, deleted all Autostart Applications, even wiped PVRAM, however, the results were negative - nothing changed, whilst Disc Utility reported, that no mistakes with drive were found. I then continued to struggle, and this time wiped the hard drive, and reinstalled the system completely from disc. However, after the system had been installed (after about 3 hours of wait), I noticed that yet again my Mac is freezing up, just like before.
    So here lays my question - is there anything else I can do, before taking it to local Apple Store ?

    I've been having the same issues. However, I've replaced the hard drive and memory sticks and clean installed Snow Leopard twice now, but I'm still having issues with freezing. Typically it will freeze one application, followed by inability to use expose, spaces, and the other applications I have open in succession as I try to access them. So far I've reset RVRAM, run disk utility, hardware tests, and just about everything else there is with no luck.
    I have a mid-2009 13" so I'm wondering if it's the processor beginning to go but I'll keep trying.
    I've been in to the Genius Bar twice in the last week.  Apple will try to run their tests on every part of your system. However, nothing came back wrong the first time and they sent me home. It crashed at least half a dozen times that night. After a week more of trouble shooting, I took it back in and still nothing. I've also gotten the '?' folder upon bootup many times and the 'prohibitory' sign upon bootup as well. I'm guessing its the CPU for me but if yours is new, it should still be under warranty and Apple will fix it (if they can find a problem). I'll keep looking and working on this until I can get mine working again and if I figure it out, I'll let you know.
    Best of luck

  • Kernel Panic Error after waking from sleep mode

    My MacBook Air (5.2) was purchased in February and has been back to the Genius Bar twice to try to identify the issue causing the kernel panic error that occurs after the computer is placed in sleep mode (running on battery or AC).  GB was unable to reproduce the errors when the laptop was left overnight during it's most recent visit (4/18/13).  This leads me to believe it's related to my wireless router/printer drivers.  Very frustrating and I'm just about ready to turn this back into Apple since I'm wasting more time trouble-shooting than enjoying the computer!
    Hardware>USB Device Tree>
    Listed are 3 USB devices: 
    (null)  - this one lists the Host Controller Driver:  com_silex_driver_sxuptp
    USB 3.0 Hi-Speed Bus
    USB 3.0 SuperSpeed Bus
    Questions: 
    - Is this a reasonable suspect causing my daily (or more) kernel panics?
    - How do I remove it?
    Here is one (of many) kernel panic reports:
    Interval Since Last Panic Report:  1899 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    C76ECE66-868B-D4B5-B919-34DED4370F8A
    Tue Apr 23 20:19:55 2013
    panic(cpu 0 caller 0xffffff80260b7e95): Kernel trap at 0xffffff7fa65b9786, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000000, CR3: 0x0000000028336000, CR4: 0x00000000001606e0
    RAX: 0xffffff8032875800, RBX: 0xffffff8090a48000, RCX: 0x0000000000000002, RDX: 0x0000000000000004
    RSP: 0xffffff80a559bdc0, RBP: 0xffffff80a559bde0, RSI: 0x0000000000000002, RDI: 0x0000000000000000
    R8:  0xffffff803288a000, R9:  0x00000000000003ff, R10: 0xffffffffffffffff, R11: 0x00000000ffffffff
    R12: 0xffffff8032850000, R13: 0x0000000000000002, R14: 0x0000000000000004, R15: 0x0000000000000002
    RFL: 0x0000000000010246, RIP: 0xffffff7fa65b9786, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x0000000000000000, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80a559ba60 : 0xffffff802601d626
    0xffffff80a559bad0 : 0xffffff80260b7e95
    0xffffff80a559bca0 : 0xffffff80260cd4dd
    0xffffff80a559bcc0 : 0xffffff7fa65b9786
    0xffffff80a559bde0 : 0xffffff802643898c
    0xffffff80a559be30 : 0xffffff80264353a1
    0xffffff80a559be80 : 0xffffff802643f8c4
    0xffffff80a559bec0 : 0xffffff8026434c4b
    0xffffff80a559bef0 : 0xffffff802643f5bd
    0xffffff80a559bf30 : 0xffffff80264452aa
    0xffffff80a559bf80 : 0xffffff80264453d9
    0xffffff80a559bfb0 : 0xffffff80260b2977
          Kernel Extensions in backtrace:
             com.apple.iokit.IOUSBFamily(5.5.5)[A276B40E-978D-3623-93D3-8621B3CEECFC]@0xffff ff7fa6599000->0xffffff7fa65f4fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7fa6570000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12D78
    Kernel version:
    Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Kernel UUID: 3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6
    Kernel slide:     0x0000000025e00000
    Kernel text base: 0xffffff8026000000
    System model name: MacBookAir5,2 (Mac-2E6FAB96566FE58C)
    System uptime in nanoseconds: 1911705120785
    last loaded kext at 247433964235: com.apple.filesystems.msdosfs          1.8 (addr 0xffffff7fa7c43000, size 65536)
    last unloaded kext at 307629547375: com.apple.filesystems.msdosfs          1.8 (addr 0xffffff7fa7c43000, size 57344)
    loaded kexts:
    com.silex.driver.sxuptp          1.10.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOBluetoothSerialManager          4.1.3f3
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AGPM          100.12.87
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.ApplePlatformEnabler          2.0.6d1
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.7fc4
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.1.3f3
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.3.0
    com.apple.driver.AppleMikeyDriver          2.3.7fc4
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleBacklight          170.2.5
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleIntelHD4000Graphics          8.1.0
    com.apple.driver.AppleIntelFramebufferCapri          8.1.0
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleUSBCardReader          3.1.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.1
    com.apple.driver.AppleUSBHub          5.5.5
    com.apple.driver.AirPort.Brcm4331          614.20.16
    com.apple.driver.AppleAHCIPort          2.5.1
    com.apple.driver.AppleUSBEHCI          5.5.0
    com.apple.driver.AppleUSBXHCI          5.5.5
    com.apple.driver.AppleEFINVRAM          1.7
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.7
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.7
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOAudioFamily          1.8.9fc11
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.1.3f3
    com.apple.driver.AppleHDAController          2.3.7fc4
    com.apple.iokit.IOHDAFamily          2.3.7fc4
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.3f3
    com.apple.driver.AppleSMBusPCI          1.0.11d0
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.AppleGraphicsControl          3.3.0
    com.apple.driver.IOPlatformPluginFamily          5.3.0d51
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d0
    com.apple.iokit.IOAcceleratorFamily          30.14
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.5
    com.apple.iokit.IOUSBMassStorageClass          3.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.5
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.6
    com.apple.driver.AppleUSBMergeNub          5.5.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.driver.AppleThunderboltNHI          1.6.3
    com.apple.iokit.IOThunderboltFamily          2.2.6
    com.apple.iokit.IOUSBUserClient          5.5.5
    com.apple.iokit.IO80211Family          522.4
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IOUSBFamily          5.5.5
    com.apple.driver.AppleEFIRuntime          1.7
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.2
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.7
    com.apple.iokit.IOPCIFamily          2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    System Profile:
    Model: MacBookAir5,2, BootROM MBA51.00EF.B02, 2 processors, Intel Core i5, 1.8 GHz, 4 GB, SMC 2.5f7
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463235363634485A2D3147364D3120
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384B54463235363634485A2D3147364D3120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.16)
    Bluetooth: Version 4.1.3f3 11349, 2 service, 11 devices, 1 incoming serial ports
    Serial ATA Device: APPLE SSD SM128E, 121.33 GB
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8404, 0x1d183000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x024c, 0x1d182000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821f, 0x1d181300 / 9
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3

    The third-party system modification "SX-Virtual Link" may be contributing to your problem. I suggest you back up all data, then uninstall it according to the developer's instructions. Reboot and see whether there's any improvement.
    Back up all data before making any changes.

  • IBooks display differences between iOS7 and iOS8

    I work for a music publisher where we build reflowable ePubs that mostly contain music and embedded audio/video files. It is critical that we deliver an eBook that keeps a/v controllers with the title, credits, music etc. and maintains proper spacing throughout. It's critical not only for the overall look but for the readability and usability of the musician. Clearly a user can increase the font size and destroy any well designed layout for ePub, but if the ePub is designed properly, targeting median font settings, our layouts are consistent from tablet to tablet.
    The recent release of iOS 8 has brought changes to iBooks once again and how it displays content. I've noticed differences with A/V controllers displaying more margin, troubles controlling the alignment and overall width of player. I've also noticed additional margin at the top of each "page" in iBooks which wasn't there in iOS 7.
    These changes may seem minor but they completely break our layouts. I have been trying to correct these issues using CSS, but haven't had any luck. What's even more frustrating is that iBooks for Mac on Mavericks doesn't have these issues. In fact, the audio controller has a completely different look and responds to CSS as it should. These small issues are causing major problems for us because we have thousands of ePubs with audio at Apple.
    We've seen changes in the past with our ePubs when iOS 6 went to 7, so we were expecting things like this to happen. But because our CSS modifications don't seem to work on the iOS side, I'm beginning to think that this is a bug or that there are new issues to contend with when developing ePubs for iBooks. If there have been changes, it would be great to have specs from Apple that would help identify what is happening within iBooks. It would also be great to have development tools for iBooks like there are for all modern browsers today.
    If anyone knows anything about these issues or has information as to where I can find the answers, I would be most grateful.

    This has been my headache since day one and a complete swing and a miss by Apple.  I haven't been able to get ANYTHING I have not explicitely purchased from iTunes to sync in iBooks across device.
    For example:  If I load an ePub or PDF into iTunes and "manually" add to a device, this works just fine.
    However, if I open a PDF file on my iPhone into iBooks, it doesn't show up in any of my other devices, including the new iBooks on my iMac with Maverick.  it doesn't matter which device it's added, nothing syncs if it's not purchased from iTunes.
    Please, someone make me a liar and tell me I've completely missed something.
    Apple:  Why or why can't I add PDF files to iBooks on my iMac and have them automagically show up in the collection I created on all my devices?  Because I didn't purchase them from you, you say?  Stupid, stupid, stupid.
    Then don't let me add it in the first place and stop advertising "my content anywhere on any device" because this has been broken from day one.

  • JW Player or Vimeo

    I'm sorry if this question is misplaced, but I'm not sure where else to ask.
    I'm looking for advice from people that have embedded video with JW Player and with Vimeo (separately, not Vimeo within JW Player).  I currently have h.264/mp4 videos hosted on my server, embedded on my site using the JW Player.  I originally encoded them at 5 Mb/s, but some of the people i asked to test the download could not download smoothly.  I then tried 2.5 Mb/s and the "testers" on a wireless b/g connection couldn't keep up.  Of course I want the best possbile quality that each person's connection can handle.  So I'm wondering if would be best to either:
    A. Upload lower bitrate versions and install the JW Player "bitrate switching" code to adjust to their connections.
    B. Get a Vimeo Plus account and embed links from Vimeo.
    (YouTube is not an option because I want the videos to be viewable only in the password-protected area of my site.  And I personally have more technical trouble watching YouTube videos than Vimeo videos).
    For some reason I kinda don't trust the JW Player to handle more complicated coding (adding the bitrate switching parameters).  But that's mostly because I'm not a programmer by trade and may have trouble fixing any problems that pop up.  But if it worked, I could at least encode and upload any bitrates that I wanted.  I trust the Vimeo embedding to go more smoothly, but from what I can tell, Vimeo will only server the video at two rates--"HD" and "SD".  I can't find exactly what bitrates Vimeo is serving for each setting, but their "SD" quality seems like a big drop from their "HD" quality.
    Any insight can help.  Thanks.

    Even more beautiful Flash players :
    http://www.wyodor.net/_Flash/FlexiPlayer/
    http://www.wyodor.net/_Flash/flowplayer/
    Some explantion : [How to add a movie to your blog|http://www.wyodor.net/iWebBlogTest/Wyodor1/archives/2009/05/entry35.html]
    To keep up-to-date : [HTML5 Video|http://www.wyodor.net/_Demo/html5/HTML5Video.html]

  • IMac desktop with ATT Uverse wifi conundrum

    Just switched from ATT DSL to Uverse.
    Original DSL setup: Ethernet from SpeedStream router to AirportX. Wifi to iMac desktop, Apple TV, and 2 iphones.
    Used this same setup with the Uverse 2Wire Gateway. Everything worked fine.
    Wanted to try the ATT Gateway wifi to see if it had farther reach and for future travel with the AirportX.
    All devices connected fine via wifi to the 2Wire except the iMac.
    The iMac showed it was on the 2Wire wifi network but pages wouldn't load.
    ATT support was no help. They said desktops can't connect via wifi, only laptops. Obviously not true but since all other devices could connect to their equip they couldn't help further. They offered to send someone out but if it turned out to not be their equip I'd have to pay a fee.
    Can iMacs only connect via wifi signals from AXs and AEs? Is there some setting I need to change?
    Currently it's academic since our iMac is right beside the 2Wire so it can be connected by Ethernet. However, due to the old wiring in this house, if we decide to change the iMac's location we'll either have to run long Ethernet cables around the house or pay to have the other hard wiring updated.

    Hi niwashikun,
    Thanks for using Apple Support Communities.  If the issue is with the iMac connecting to your new gateway router, this article may be able to help:
    Wi-Fi: How to troubleshoot Wi-Fi connectivity
    http://support.apple.com/kb/HT4628
    Also, while it pertains more to trouble with an iPhone than an iMac, this user posted some good information that seems well received that may help you:
    How I fixed my iPhone 2wire WiFi problems
    https://discussions.apple.com/thread/1297451
    Cheers,
    - Ari

  • Cannot print photos in IPhoto 09

    Snow Leopard. Followed Toad's instructions to reinstall IPhoto, Sorta' messed up now. Cannot print photo from IPhoto Libraray Photos pg. Exported photo from there to "Pictures"; msg shows " Unable to create/User/MMM/:Picture/DSC,,,,.pg". Didn't get an IPhoto icon on dock but found a way. Have an icon on desktop "IPhoto Library" that opens IPhoto but it is also opened when I open IPhoto icon on dock, have done Software Update for latest on HP printer. Am losing much sleep trying to get this figured out. Should I delete all IPhoto again and start over on reinstall from disk "c"?

    No answer yet so still messing up not knowing what I'm doing, but do know I have IPhoto so messed up. Have an iPhoto icon on the Dock and iPhoto Library on desktop.
    Found 2 iPhoto apps in Trash. Dragged out to desktop (iPhoto 07-27-19 (is this a date?) .app and iPhoto.app.  Don't know what is in them...so what to do now. Do I delete current iPhoto icon from Dock and open one of the ones I just mentioned? If so, how do I do this? Should I clear all iPhoto info and reinstall from Mac Installation disk?
    Have Dictionary on Dock which opens dictionary; also have Dictionary.app on desktop which, if I draag into Trash, then Dictionary on Dock no longer opens.
    Hoping to hear real soon, cause I am getting so impatiet after several days now of getting more into trouble, to clean this mess up and get on with other things.

  • Ipod touch screen flicker

    it looks like the 4th Gen iPod touch is starting to all have similar issue. Some call it white screen of death and for some it is not completely white but partial white or random static images or half negative colored screen of death.
    My Daughter's iPod starting to do this starting couple of month ago with out any physical damage. I have viewed several Youtube video but no one seems to know exactly what is causing this issue. For example, my Daughter's iPod will wake up with perfectly normal screen half of the time and the other half of the time it flickers. And interesting enough it is getting worst. Does anyone has clear answer for this? Apple, can you get all of your loyal customers some break and get us the fix for this, maybe?

    Ok, First of all I am not trying to offend you in any way stevejobsfan0123. And I understand that this is user forum.
    But there are plenty of people here whose affiliated with Apple or some do work for Apple.
    And draining battery fixes nothing. My 9 years old Daughter drains the ipod battery constantly at least twice a day.
    Just like the other people, holding down sleep/wake button and home button for 10 second to reset the phone will get the screen back to normal. but that is one time solution. The symptom comes back over and over again.
    Until couple of years ago, I was Certified Apple desktop and portable technician, and I have been using Apple product since the introduction of Apple II. So these kind of kink is not new to me. It has been, at least most of the time, the user groups that come up with the bug fix or at least identified the cause of the problem before Apple ever did.
    But more I trouble-shoot this problem, this cannot be a mechanical problem on parts but rather it is software glitch.
    I am very happy to hear that your ipod is working great. But there are plenty of people else where having this issue and more cases are being reported. So please don't try to judge the world by what surrounds you.

Maybe you are looking for