IllegalStateException when changing display mode of JFrame

My application has an information console inside a JFrame. The console is continually updating and repainting.
I let the user drag this window wherever they want, resize it how they want, etc. I also give them the ability to select one of three display modes:
- "Decorated Window"
- "Undecorated Maximized Window"
- "Undecorated Fullscreen Exclusive Window"
The toggling between modes normally works well, but occasionally an "IllegalStateException: Buffers have not yet been created" is thrown by (from what I can tell), a component on the console that's trying to be repainted.
Seems obvious to me that something doesn't like the fact that the JFrame has been disposed for an instant and can't deal with it appropriately. Question is, what the hell can I do about it?
I believe everything continues fine despite the exception (although I have a hard time reproducing on my system), but still, it's a wart and I'd like to chop it off.
Here's my code for changing the window mode.
public void setDisplayMode(Component parent,
         ConsoleDisplayMode newDisplayMode) {
     GraphicsDevice device = this.getGraphicsConfiguration().getDevice();
     int state;
     switch (newDisplayMode) {
     case DisplayAsDecoratedWindow:
         // Add the decorations
         this.dispose();
         this.setUndecorated(false);
         this.setVisible(true);
         device.setFullScreenWindow(null);
         // De-iconify
         state = this.getExtendedState();
         state &= ~JFrame.ICONIFIED;
         this.setExtendedState(state);
         // Minimize
         state = this.getExtendedState();
         state &= ~JFrame.MAXIMIZED_BOTH;
         this.setExtendedState(state);
         break;
     case DisplayAsUndecoratedWindow:
         // Remove the decorations
         this.dispose();
         this.setUndecorated(true);
         this.setVisible(true);
         device.setFullScreenWindow(null);
         // Make sure it is de-iconified
         state = this.getExtendedState();
         state &= ~JFrame.ICONIFIED;
         this.setExtendedState(state);
         // Maximize
         state = this.getExtendedState();
         state |= JFrame.MAXIMIZED_BOTH;
         this.setExtendedState(state);
         break;
     case DisplayFullScreenExclusive:
         if (device.isFullScreenSupported()) {
          int choice = JOptionPane
               .showConfirmDialog(
                    parent,
                    "Warning:\n\n"
                         + "This mode is meant for users with a multiple-monitor configuration.\n"
                         + "In this mode, the console controls the graphics device exclusively\n"
                         + "and other windows (such as the other TM windows and dialogs) cannot\n"
                         + "be displayed over the console.\n\n"
                         + "If you have a single monitor, use the mode called\n"
                         + "\""
                         + ConsoleDisplayMode.DisplayAsUndecoratedWindow
                              .toString() + "\".\n\n"
                         + "Continue with this mode?",
                    "Confirm full-screen mode",
                    JOptionPane.YES_NO_OPTION,
                    JOptionPane.WARNING_MESSAGE, ChipIconFactory
                         .getWarningChipIcon());
          if (choice == JOptionPane.YES_OPTION) {
              this.dispose();
              this.setUndecorated(true);
              this.setVisible(true);
              state = this.getExtendedState();
              state &= ~JFrame.ICONIFIED;
              this.setExtendedState(state);
              device.setFullScreenWindow(this);
         } else {
          JOptionPane
               .showMessageDialog(
                    null,
                    "Your graphics device does not support full-screen mode",
                    "Unable to display in full-screen mode",
                    JOptionPane.ERROR_MESSAGE, ChipIconFactory
                         .getErrorChipIcon());
         break;
    }

jneau wrote:
My application has an information console inside a JFrame. The console is continually updating and repainting.
The toggling between modes normally works well, but occasionally an "IllegalStateException: Buffers have not yet been created" is thrown by (from what I can tell), a component on the console that's trying to be repainted.Are you certain all your interaction with the GUI happens on the EDT?

Similar Messages

  • Collective Entry of Mesurement Documents - Change / Display Mode

    Hi All,
    Is there any T code or table view or program to view / display the Collective entry of measurement documents?
    We use T-code IK34 to make collective entries, but I am not able to find any T codes / menu path for viewing the same in change / display mode.
    Pls. post your suggestions. Thanks in advance.........JK

    Hi Muralidharan
    Sorry, I am afraid not !
    I want to view the data entered in IW34 as it is in display mode.
    This is basically to ensure if all the values have been entered by the person who is entering the data in collective entry sheet.
    Any clues, pls. help.
    Tks and best regards.
    Kannan J

  • BugReport : System Dead when change display rotation with fullscreen mode app

    There is a big bug in fullscreen mode with display rotation.
    I find that if you try dispaly rotation after make some app(safari) fullscreen mode then the system crash.
    1. I have mac book pro 13Inch Mid 2010,
    2. Add one more display (display2)
    3. open safari, make fullscreemode at display 2
    4. open system preferences > displays > change display 2 rotations setting.
    then CRASH and System Dead.

    Amazing, it seems to work ! Thank you for your help stqn.
    I just have a little question if I choosed compiz it s for there plugin they have, called "scale" that whenever yout put your mouse on a corner its shows all the windows that you have on the current screen. A bit like Mac OS X. I am not a fanatic of Alt TAB to switch windows, and I really find convenient this plugin.
    Do you know if it would be possibile such a thing on LXDE openbox with compton ?

  • After Start the Query, change Display Mode. WHERE ??? QD-BI7.0

    Hello Gurus,
    where can I change my Display Mode of the Query. I have 12 rows, but shows me only 4 rows. Then I have to scroll right with a button.
    Where Can I change something like that ?
    Thanks

    Vasanth,
    This is what I'm already doing in the program by setting the edit mode for the column '3_ATWRT'. But I want to switch from edit to display mode and back again. This is not working. Only when I buildup the fieldcatalog this is working?
    Kind regards,
    Richard Meijn

  • Change display mode

    Hello everybody iam having problem when i change a document from display mode to change mode fields are still grey and not maintainable and i have written below code for display mode .please go through this and suggest me necessary modifications for maintaing fields in change mode.
    case : sy-TCODE.
        WHEN 'FPE3'.
          loop at screen.
            if screen-name = 'FKKOP-ZFCACHBACKREF'
            OR SCREEN-NAME = 'FKKOP-ZFCACHBACKRSN'
            OR SCREEN-NAME = 'FKKOP-ZFCALASTPRSTAT'.
              screen-input = 0.
              modify screen.
              endif.
            endloop.
         endCASE.

    here is the sample code to change the fields from display mode to change mode...
    by default those r in display mode and if u uncheck the radio button go to change mode....
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE w_title.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(31) text-t05 MODIF ID bla.
    PARAMETERS: p_abkrs LIKE pa0001-abkrs.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: p_c_per RADIOBUTTON GROUP rad1 DEFAULT 'X' USER-COMMAND
    rad.
    SELECTION-SCREEN COMMENT 3(20) text-005 MODIF ID bla.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: p_o_per RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN COMMENT 3(20) text-006.
    SELECTION-SCREEN POSITION 33 .
    PARAMETERS: p_pabrp(2) TYPE n MODIF ID bla,
    p_pabrj(4) TYPE n MODIF ID bla.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b1.
    INITIALIZATION.
    p_pabrp = '10'.
    p_pabrj = '2007'.
    SELECTION SCREEN EVENTS **
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF p_c_per = 'X'.
    IF screen-group1 = 'BLA'.
    screen-input = 0.
    MODIFY SCREEN .
    ENDIF.
    ELSE.
    IF screen-group1 = 'BLA'.
    screen-input = 1.
    MODIFY SCREEN .
    ENDIF.
    ENDIF.
    ENDLOOP.

  • Odd color shifts when changing displays

    Ever since I upgraded from Snow Leopard to Lion, I've experienced some weird problems with colors appearing not right when I disconnect my MBP in closed-clamshell mode from a 27" LED Cinema Display and simply use it with its built-in display (1600 x 1050), or later connect it to a 1024 x 768 LCD projector. In many cases, it suffices to go into the Displays preference pane and change the color sync profile to something else and then back, but not always. The color shifts look like this:
    or much worse:
    Is this a bug in Lion, or something else? Is there a workaround or fix? The only true fix I've found is a restart.

    OK, more on this oddity: why do I have so many identically-named colorsync profiles?

  • Color Shift when Changing view mode

    Hi,
    I'm using a dual monitor setup and CS5 64bit on Windows 7. I have all my images on one monitor and all my palettes on the other. When I press f to switch the screen mode from tabbed image windows to fullscreen, the colors shift horribly to much darker, redder colors.

    I can only assure you that this doesn't happen on every system.
    Did you try changing OpenGL to Basic mode, as I suggested?
    Is the image in Lab mode (not RGB)?  I recall some reports very early after the release of Photoshop CS5 that Lab mode images were being displayed differently under different circumstances.
    -Noel

  • Debug error when changing blending modes

    Hi there,
    I get a Debug Error every time I use 2 Adjustment Layers one above each other, with the following effects applied:
    Adjustment Layer Above:
    - Tint, not keyframed
    - Opacity Blending Mode: Color Dodge
    Adjustment Layer Below:
    - Venetian Blinds, not keyframed
    - Offset, keyframed
    - Turbulent Displace, keyframed
    - Opacity Blending Mode: Normal
    Media layer below:
    - JPG, Canon 60D - 5184x3456 - no effects applied
    The error I get (option to 'Continue', but the program doesn't respond and needs to be closed):
    Premiere Pro Debug Event
    Premiere Pro has encountered an error.
    [..\..\Src\CutlistRenderer.cpp-717]
    Error in Events panel:
    An input contract violation has occurred!
    I first started to get this error, while working with various media files in 1440x1080/HDV 1080i mode (Sony Z7U native)/29.97fps/1.33 sequence. Trying to understand what it goes wrong, I created a new project and recreated the adjustment layers (AL) with same effects applied - the only thing changed was the JPG added as media under both ALs. Same debug errors every time the blending is changed from normal to any other blending mode. With normal blending on the AL above, everything is fine.
    After further testing, it looks like even with only one AL (no effects) above the JPG, get the same debug error when blending is changed from normal to any other mode.
    Important note: Same layer+effect configuration applied in 1920x1080/ARRI Cinema mode/24fps/1.0 sequence - it works with no debug error. Haven't tried any other editing modes yet.
    Layers, in order from top:
    - AL (Venetian Blinds, Tint, Offset, Turbulent Displace - Color Dodge blending)
    - AL (Venetian Blinds, Tint, Offset, Turbulent Displace - Normal blending)
    - AL (Timecode effect)
    - Title
    - media, MPEG (1440x1080, 29.97 frame rate, 1.3333 pixel aspect ratio)
    - After Effects composition (dynamic link) 1920x1080 - content: media file, MPEG (640x480, 30fps, 1.0 + various titles and effects, including color dodge blending
    I googled for similar error reports, there are none related to Premiere Pro.
    I don't know what else to do, rather than just avoid using this effect configuration.
    Does anyone else had this issue, even in different situations?
    Thank you very much for any feedback.
    Best,
    Mark
    Hardware:
    HP Z820
    Dual Xeon E5-2643 - driver 6.1.7600.16385
    Dual nVidia Quadro 4000 - driver 8.17.12.7628
    64GB RAM
    SSD 250GB for System
    HDD 3TB for Media
    Software (up to date):
    Adobe Premiere Pro CS6 - Version 6.0.3 (001 (MC: 264587))
    Windows 7 x64 - 6.1.7601 Service Pack 1 Build 7601

    I've never seen that error myself.  If you have a way to avoid it, might be best to just do that.

  • Is it possible to run a script when changing Yoga modes?

    I'm currently working with a vendor of Restaurant reservation software and they have a customer that would like to implement the Yoga 13 for a chain of hotels. However, due to the fact that the software requires Silverlight, it's necessary to run a script so that they can use Google Chrome and have the software keyboard pop up automatically when a text field is entered or touched. 
    I can easily run the script at login and manually unload it when done, but since Lenovo already has software (Lenovo Transition) that can trigger things when the Yoga changes modes, is there some sort of developer tool or a system-wide event that can be used to automatically load and unload the script on mode change?
    Please let me know, some Yoga sales could depend on this....and I love the Yoga.

    Well, I'm looking for a means to activate a script through the active corners, I'm not asking any questions about the script itself, so I did not think it should be posted in the AppleScript categoriy, but sure, I'll give it a go.
    (New thread in AppleScript: http://discussions.apple.com/thread.jspa?threadID=2534773&tstart=0)
    Message was edited by: Max Ocklind

  • Game freezes when changing displays

    Hi all
    i am using Nokia 3510i.
    i have a wired problem,sometimes when i change then display object in my game(2 Canvases) and in the same time i press on some keys(i am using a key listener for my game) everything freezes and i have to close my MIDlet .
    now,i solved this by using a boolean flag in the :
    keyPressed(int parm1) {
    if(bRejectKeys) return;
    and i set it before replacing the displays and then nothing freezes.
    but i want to know why everything was freezing before,if this is a known issue and if my solution is not covering a bigger bug that might happen.
    thanks

    It's tough to tell by your description what exactly is going on.
    Are you starting any threads in keyPressed()? Maybe one of those threads needs to be stopped by the canvas that turned inactive. Are there any live references to the old canvas after the switch?
    Maybe with some more code (the rest of the offending keyPressed(), and the code that switches the displays) we can shed some more light on the subject.
    shmoove

  • Pointer disappears when changing displays

    Often when I have been working on my PB at the office, then put it to sleep and take it home and plug it into my 20" display and wake it up, there is no mouse pointer visible on the screen. The windows I was working on will have transferred to the big display, and I can tell the mouse is working, because if I move the mouse all the way to the right where the dock is and move it up and down I can see the different dock icons highlight. Occasionally I can move the mouse by "dead reckoning" to a button I need to click to save a file but usually I cannot, and sometimes the results are disastrous, I end up having to force-reboot and lose a lot of work. The problem happens in the other direction also (PB operating closed w/ 20", unplug display, goes to sleep, pointer lost when waking up.) Today that happened and I decided not to use the PB at the office. When I brought it home and plugged it into the display the pointer came back.
    I have a hunch this happens more often when a Java-based app is running but I'm not sure.
    Any suggestions on how to avoid this? I should be able to do this without problems, right?
    Thanks
    chet

    Welcome to the discussions, Chester
    As far as I remember, this was a bug in later versions of OS X 10.3. I used to suffer from it too until I upgraded to Tiger (10.4), which cleared it up. I don't think it has anything to do with Java, because I rarely use Java apps and It used to happen to me a lot.

  • Kernel Panic When Changing Displays

    I have a brand-new 2014 MacBook Pro, running Mavericks, and am getting a Kernel Panic nearly every time I connect or disconnect any type of external display.
    Attached is a typical entry from the Panic log. Any and all advice gratefully received...
    8 KB (7,717 bytes)
      Last Modified:    12/09/2014 15:19
      Recent Contents:    Anonymous UUID:       D17D84E5-4890-D92C-EB42-29E69B3D3D4C
    Fri Sep 12 15:19:26 2014
    panic(cpu 5 caller 0xffffff80142a52da): "VM_PAGE_QUEUES_REMOVE: unmarked page on Q"@/SourceCache/xnu/xnu-2422.110.17/osfmk/vm/vm_resident.c:2388
    Backtrace (CPU 5), Frame : Return Address
    0xffffff81fed6b4d0 : 0xffffff8014222f79
    0xffffff81fed6b550 : 0xffffff80142a52da
    0xffffff81fed6b580 : 0xffffff80142902e8
    0xffffff81fed6b630 : 0xffffff8014295c33
    0xffffff81fed6b660 : 0xffffff801428f39d
    0xffffff81fed6b690 : 0xffffff801428e5ec
    0xffffff81fed6b6d0 : 0xffffff80142b0175
    0xffffff81fed6b6f0 : 0xffffff8014218df1
    0xffffff81fed6b740 : 0xffffff8014226dc2
    0xffffff81fed6b760 : 0xffffff8014226bde
    0xffffff81fed6b790 : 0xffffff80142139c5
    0xffffff81fed6b800 : 0xffffff8014226ee2
    0xffffff81fed6b830 : 0xffffff801425f0f1
    0xffffff81fed6b870 : 0xffffff80146ba588
    0xffffff81fed6b8a0 : 0xffffff80146b460d
    0xffffff81fed6b900 : 0xffffff7f95d101ea
    0xffffff81fed6b920 : 0xffffff7f95d118d6
    0xffffff81fed6b940 : 0xffffff7f95d0fc29
    0xffffff81fed6b970 : 0xffffff7f95d11e3d
    0xffffff81fed6b9a0 : 0xffffff7f95d299ed
    0xffffff81fed6b9d0 : 0xffffff7f95d153ab
    0xffffff81fed6ba10 : 0xffffff7f95d95576
    0xffffff81fed6ba70 : 0xffffff7f95d1451c
    0xffffff81fed6ba90 : 0xffffff7f95d145a2
    0xffffff81fed6bac0 : 0xffffff80146c9f14
    0xffffff81fed6baf0 : 0xffffff80142b14f8
    0xffffff81fed6bb40 : 0xffffff8014226bde
    0xffffff81fed6bb70 : 0xffffff80142139c5
    0xffffff81fed6bbe0 : 0xffffff8014226ee2
    0xffffff81fed6bc10 : 0xffffff801425f0f1
    0xffffff81fed6bc50 : 0xffffff801421a6e9
    0xffffff81fed6bcc0 : 0xffffff801421c75c
    0xffffff81fed6bd00 : 0xffffff801423d9b0
    0xffffff81fed6bd40 : 0xffffff80145cec5e
    0xffffff81fed6bdb0 : 0xffffff80145e25ed
    0xffffff81fed6be40 : 0xffffff80145e2967
    0xffffff81fed6be80 : 0xffffff8014220b3b
    0xffffff81fed6beb0 : 0xffffff80142dc883
    0xffffff81fed6bed0 : 0xffffff80142f3712
          Kernel Extensions in backtrace:
             com.apple.iokit.IOAcceleratorFamily2(98.22)[0EC64777-94B9-32E3-AC03-A2367895744 B]@0xffffff7f95d0f000->0xffffff7f95d73fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f948be000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f950d7000
             com.apple.driver.AppleIntelHD5000Graphics(8.2.8)[E2455B1B-94F0-3555-AE3A-55B6D2 7F1383]@0xffffff7f95d81000->0xffffff7f95dd1fff
                dependency: com.apple.iokit.IOSurface(91.1)[5E4EA3A2-5AB6-3577-B32D-EF5717A0EF5B]@0xffffff7 f95020000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f948be000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f950d7000
                dependency: com.apple.iokit.IOAcceleratorFamily2(98.22)[0EC64777-94B9-32E3-AC03-A2367895744 B]@0xffffff7f95d0f000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x0000000014000000
    Kernel text base: 0xffffff8014200000
    System model name: MacBookPro11,2 (Mac-3CBD00234E554E41)
    System uptime in nanoseconds: 10433399129115
    last loaded kext at 10430968885757: com.apple.iokit.SCSITaskUserClient    3.6.6 (addr 0xffffff7f9628e000, size 36864)
    last unloaded kext at 5903072325224: com.apple.driver.IOBluetoothHIDDriver    4.2.6f1 (addr 0xffffff7f95263000, size 73728)
    loaded kexts:
    com.techsmith.TACC    1.0.2
    com.apple.iokit.SCSITaskUserClient    3.6.6
    com.apple.driver.AppleUSBCDC    4.2.1b5
    com.apple.driver.AppleIntelMCEReporter    104
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AudioAUUC    1.60
    com.apple.driver.AppleUpstreamUserClient    3.5.13
    com.apple.driver.AppleGraphicsDevicePolicy    3.6.22
    com.apple.driver.AppleHDA    2.6.3f4
    com.apple.iokit.IOBluetoothSerialManager    4.2.6f1
    com.apple.driver.ApplePlatformEnabler    2.0.9d6
    com.apple.driver.AGPM    100.14.28
    com.apple.driver.X86PlatformShim    1.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport    4.2.6f1
    com.apple.driver.AppleIntelHD5000Graphics    8.2.8
    com.apple.driver.AppleBacklight    170.3.5
    com.apple.driver.AppleSMCLMU    2.0.4d1
    com.apple.driver.AppleLPC    1.7.0
    com.apple.driver.AppleMCCSControl    1.2.5
    com.apple.driver.AppleIntelFramebufferAzul    8.2.8
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleHWAccess    1
    com.apple.driver.AppleCameraInterface    4.26.0
    com.apple.driver.AppleThunderboltIP    1.1.2
    com.apple.driver.AppleUSBTCButtons    240.2
    com.apple.driver.AppleUSBTCKeyboard    240.2
    com.apple.driver.AppleUSBCardReader    3.4.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    35
    com.apple.driver.AppleUSBHub    683.4.0
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.6.0
    com.apple.driver.AppleAHCIPort    3.0.5
    com.apple.driver.AirPort.Brcm4360    842.21.65
    com.apple.driver.AppleUSBXHCI    683.4.0
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleACPIButtons    2.0
    com.apple.driver.AppleRTC    2.0
    com.apple.driver.AppleHPET    1.8
    com.apple.driver.AppleSMBIOS    2.1
    com.apple.driver.AppleACPIEC    2.0
    com.apple.driver.AppleAPIC    1.7
    com.apple.nke.applicationfirewall    153
    com.apple.security.quarantine    3
    com.apple.driver.IOBluetoothHIDDriver    4.2.6f1
    com.apple.kext.triggers    1.0
    com.apple.driver.DspFuncLib    2.6.3f4
    com.apple.vecLib.kext    1.0.0
    com.apple.iokit.IOAudioFamily    1.9.7fc2
    com.apple.kext.OSvKernDSPLib    1.14
    com.apple.iokit.IOSerialFamily    10.0.7
    com.apple.iokit.IOBluetoothHostControllerUSBTransport    4.2.6f1
    com.apple.driver.AppleHDAController    2.6.3f4
    com.apple.iokit.IOHDAFamily    2.6.3f4
    com.apple.driver.AppleSMBusController    1.0.12d1
    com.apple.AppleGraphicsDeviceControl    3.6.22
    com.apple.iokit.IOAcceleratorFamily2    98.22
    com.apple.driver.AppleBacklightExpert    1.0.4
    com.apple.iokit.IONDRVSupport    2.4.1
    com.apple.driver.AppleGraphicsControl    3.6.22
    com.apple.iokit.IOSurface    91.1
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOBluetoothFamily    4.2.6f1
    com.apple.driver.X86PlatformPlugin    1.0.0
    com.apple.driver.AppleSMC    3.1.8
    com.apple.driver.IOPlatformPluginFamily    5.7.1d6
    com.apple.driver.AppleUSBMultitouch    240.9
    com.apple.iokit.IOUSBHIDDriver    660.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.6.6
    com.apple.iokit.IOUSBMassStorageClass    3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.6.6
    com.apple.driver.AppleThunderboltDPInAdapter    3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily    3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.4.5
    com.apple.driver.AppleUSBMergeNub    650.4.0
    com.apple.driver.AppleUSBComposite    656.4.1
    com.apple.iokit.IOUSBUserClient    660.4.2
    com.apple.iokit.IOAHCIFamily    2.6.5
    com.apple.driver.AppleThunderboltNHI    2.0.1
    com.apple.iokit.IOThunderboltFamily    3.3.1
    com.apple.iokit.IO80211Family    640.36
    com.apple.driver.mDNSOffloadUserClient    1.0.1b5
    com.apple.iokit.IONetworkingFamily    3.2
    com.apple.iokit.IOUSBFamily    683.4.0
    com.apple.driver.AppleEFINVRAM    2.0
    com.apple.driver.AppleEFIRuntime    2.0
    com.apple.iokit.IOHIDFamily    2.0.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    278.11.1
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.AppleKeyStore    2
    com.apple.driver.DiskImages    371.1
    com.apple.iokit.IOStorageFamily    1.9
    com.apple.iokit.IOReportFamily    23
    com.apple.driver.AppleFDEKeyStore    28.30
    com.apple.driver.AppleACPIPlatform    2.0
    com.apple.iokit.IOPCIFamily    2.9
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    com.apple.kec.pthread    1

    Remove "Snagit" or "Camtasia" and see whether there's an improvement. If not, the unit is defective.
    Any third-party software that doesn't install by drag-and-drop into the Applications folder, and uninstall by drag-and-drop to the Trash, is a system modification.
    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    I never install system modifications myself, and except as stated in this comment, I don't know how to uninstall them. You'll have to do your own research to find that information.
    Here are some general guidelines to get you started. Suppose you want to remove something called “BrickMyMac” (a hypothetical example.) First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickmymac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, contact the developer. While you're waiting for a response, download BrickMyMac.dmg and open it. There may be an application in there such as “Uninstall BrickMyMac.” If not, open “BrickMyMac.pkg” and look for an Uninstall button. The uninstaller might also be accessed by clicking the Customize button, if there is one.
    Back up all data before making any changes.
    You will generally have to restart the computer in order to complete an uninstallation. Until you do that, there may be no effect, or unpredictable effects.
    If you can’t remove software in any other way, you’ll have to erase and install OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" such as "AppCleaner" and the like that purport to remove software.

  • Display mode, Zathura.

    This nice article inspired me to use zathura with mupdf. The first big difference I recognized is, that mupdf displays pages continuous, while poppler always displays exactly one page. To read, mupdf is perfect, but I want to prepare a LaTeX beamer presentation. Hence it is not that joyful.
    Does anybody know, if I can change display mode in zahura? Maybe to "Display two pages" as well.
    Greets
    Btw: zathura is awesome!
    Last edited by manuelschneid3r (2013-04-17 10:17:58)

    For presentations you might want to look into slider, too:
    https://bbs.archlinux.org/viewtopic.php?id=147952&p=1

  • How can I change the Video Display Mode when the Monitor displays UNSUPPORTED MODE?

    While setting up my new monitor, I changed the computer Video Display mode to 120 Hz by accident.  Now I can't see a thing on the monitor other than the words UNSUPPORTED MODE.
    My system is a newer HP Pavilion p7-1423W running Windows 8.1 with Intel i5-2320 3ghz
     I have tried the Startup mode by tapping ESC on powerup but the startup options don't help.  And the F11 option on the menu just makes the Startup screen disapear and returns the monitor to UNSUPPORTED MODE.  Tapping F8 doen't work and tapping F12 just puts me into the bios menus which don't help.
     How can I put the integrated Video Card back to a supported video mode when I can't see the screen?
    This question was solved.
    View Solution.

    Try the shift key + F8. If you can get in- doing a System Restore to a day before you messed up the setting should work without a need for Safe Mode.
    http://www.avira.com/en/support-for-home-knowledgebase-detail/kbid/1672
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Change settings for external displays: no "mirror displays" mode

    Hello,
    I'm using a 13" MBP with Snow Leopard. I'm using different displays and projectors in different locations. When you plug an external display in, the two displays are first in "mirror displays" mode. First thing I do is to switch this off.
    Is there any way of changing the settings, so that an external display doesn't start in the synchronized mode??
    Thanks in advance.
    Message was edited by: robert170

    only if you plug in this projector again. If you plug in a new projector (which I often do) it allways starts in "mirrored" mode.
    I just found an app which - at least - makes the switching easier:
    http://www.fabiancanas.com/Projects/MirrorDisplays/
    Message was edited by: robert170

Maybe you are looking for

  • Can my ATV be set to stream movies and sync music?

    Can I sync my music and photos and at the same time stream my movies? I only have a 40Gb ATV and don't want to fill it with only a few movies. I have my iTunes music and iPhoto folders stored on my TC and my movies stored in a separate folder on my T

  • How to compensate Cyan color with other colors with using profile

    Hi Guys, I am using Adobe Illustrator CS3. Mac OS 10.4.11. I need a help regarding color compensate. let me explain clearly. I am doing a project in that i need to delete Cyan color and need to compensate with MYK colors. Is there any short way to ge

  • Would upgrading to new version 8 from version 7.7.1 erase all my music?

    I want to upgrade to the new version (8), but am afraid that all my files and information (on 7.7.1) would be erased. Would that happen and would I have to create a whole new account or would I be able to stay with my current one? Answering this, wou

  • SAP HP Adapter don't synchronize business requirement and test requirements

    Hello, I need a help. We have a customized project of HPQC here and we need to replicate the business blueprint from Solman to HPQC requeriments module. We perform the step-by-step of the HP SAP Adapter installation guide and the connection was perfo

  • Upgrade from Mac OS X 10.1.6 to Tiger 10.4

    I'm looking to upgrade my iMac's (G4 700Mhz with 1GB SDRAM) old OS X 10.1.6 (first OS X edition) to the Tiger 10.4. Now I've seen an upgrade disc for sale on eBay and wondered if this would do the trick? Or do I need to upgrade to Panther and then Ti