GUI components only appear when mouse passes over them???

I have a frame that contains componentes but they only appear when my mouse passes over them or clicks on them. can any one help with this. i do only set vibible after i have added them but the problem seems the same as if i haddent.

Sorry i couldn't make a SSCCE because it doesnt happen with small programs. my code is pretty long but here it is if any one can help.
   import java.io.*;
   import javax.swing.*;
   import java.awt.*;
   import java.awt.event.*;
   import java.awt.image.*;
   import jmfdemo.*;
   import java.util.*;
    public class LaserControll extends Frame implements ActionListener
      //Setings
      int vk[]=new int[9];
      int samplePlus=100;
      boolean vis=true;
      int rePaint=1000;
      int time=250;
      int numP=5;
        //End of Settings
      private BufferedImage image1;
      private FrameGrabber vision1;
      private int threshold = 200;
      private Color on = Color.white;
      private Color off = Color.black;
      int x,y;
      Rectangle r1,r2,r3,r4,r5,r6,r7,r8,r9;
      boolean found=false;
       public void paint(Graphics g) {
         if (image1 != null)
            g.drawImage(image1, 10, 30, this);
       public void load()
         try{
            File f=new File("Data");
            Scanner sk=new Scanner(f);
            for (int y=0;y<9;y++)
            {sk.nextInt();
               sk.nextInt();
               sk.nextInt();               
               sk.nextInt();
               vk[y]=sk.nextInt();
            vis=sk.nextBoolean();
            samplePlus=sk.nextInt();
            rePaint=sk.nextInt();
            time=sk.nextInt();
            numP=sk.nextInt();}
             catch(Exception q)
            {System.out.println(q+"");
               JOptionPane.showMessageDialog(null,"Error: Data File Cannot be Found","Error",JOptionPane.ERROR_MESSAGE);
               System.exit(0);
       public void update(Graphics g) {
         paint(g);
       public void getRects()throws IOException
      {File f=new File("Data");
         Scanner sc=new Scanner(f);
         int x,y,w,h;
         x=sc.nextInt();
         y=sc.nextInt();
         w=sc.nextInt();
         h=sc.nextInt();
         sc.nextInt();
         r1=new Rectangle(x,y,w,h);
         x=sc.nextInt();
         y=sc.nextInt();
         w=sc.nextInt();
         h=sc.nextInt();
         sc.nextInt();
         r2=new Rectangle(x,y,w,h);
         x=sc.nextInt();
         y=sc.nextInt();
         w=sc.nextInt();
         h=sc.nextInt();
         sc.nextInt();
         r3=new Rectangle(x,y,w,h);
         x=sc.nextInt();
         y=sc.nextInt();
         w=sc.nextInt();
         h=sc.nextInt();
         sc.nextInt();
         r4=new Rectangle(x,y,w,h);
         x=sc.nextInt();
         y=sc.nextInt();
         w=sc.nextInt();
         h=sc.nextInt();
         sc.nextInt();
         r5=new Rectangle(x,y,w,h);
         x=sc.nextInt();
         y=sc.nextInt();
         w=sc.nextInt();
         h=sc.nextInt();
         sc.nextInt();
         r6=new Rectangle(x,y,w,h);
         x=sc.nextInt();
         y=sc.nextInt();
         w=sc.nextInt();
         h=sc.nextInt();
         sc.nextInt();
         r7=new Rectangle(x,y,w,h);
         x=sc.nextInt();
         y=sc.nextInt();
         w=sc.nextInt();
         h=sc.nextInt();
         sc.nextInt();
         r8=new Rectangle(x,y,w,h);
         x=sc.nextInt();
         y=sc.nextInt();
         w=sc.nextInt();
         h=sc.nextInt();
         sc.nextInt();
         r9=new Rectangle(x,y,w,h);
       public int sample()
      {int sample=image1.getRGB(x/2,y/2);
         int sr,sg,sb;
         Color sc=new Color(sample);
         sr=sc.getRed();
         sb=sc.getBlue();
         sg=sc.getGreen();
         sample=((299 * sr + 587 * sg + 114 * sb) / 1000);
         return sample;
       class WindowListener extends WindowAdapter {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
       public LaserControll()throws Exception {
         Robot r =new Robot();
         load();
         addWindowListener(new WindowListener());
         setTitle("Laser Control");
         try {
            vision1 = new FrameGrabber();
            vision1.start();
             catch(FrameGrabberException fge) {
               System.out.println(fge.getMessage());
         image1 = vision1.getBufferedImage();
         setResizable(false);
         Color col = new Color(229,229,229);
         setBackground(col);
         x=image1.getWidth()-1;
         y=image1.getHeight()-1;
         for (int i=0;i<5000;i++)
            image1 = vision1.getBufferedImage();
            repaint();
         int sample=sample();       
         try{
            getRects();}
             catch(Exception z)
         JButton hide=new JButton("Hide");
         hide.setBounds(35,183,100,20);
         hide.addActionListener(
                new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                     setAlwaysOnTop(true);
         JButton rc=new JButton("Recalibrate");
         rc.setBounds(35,160,100,20);
         rc.addActionListener(
                new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                  {int sam=sample();
                     JOptionPane.showMessageDialog(null,"New Threshold set to: "+sam+samplePlus,"Recalibrated",JOptionPane.INFORMATION_MESSAGE);
         JTextField status= new JTextField("");
         status.setBounds(146,184,20,19);
         status.setEditable(false);
         setLayout(null);
         add(status);
         add(hide);
         add(rc);
         setSize(image1.getWidth(this) + 20, image1.getHeight(this) + 95);
         setVisible(vis);     
      repaint();
         while(true) {
            image1 = vision1.getBufferedImage();
            repaint();
            try {
               Thread.sleep(1);
                catch(Exception e) {
                  System.out.println("Error");
            for (int i=0;i<x;i=i+numP)
               for (int j=0;j<y;j=j+numP)
                  int v=image1.getRGB(i,j);
                  Color c =new Color(v);
                  int red=c.getRed();
                  int green=c.getGreen();
                  int blue=c.getBlue();
                  int b=(299 * red + 587 * green + 114 * blue) / 1000;
                  if (b>sample+samplePlus)
                     if (r1.contains(i,j))
                        r.keyPress(vk[0]);
                        r.keyRelease(vk[0]);
                        status.setText("1");
                        found=true;}
                     if (r2.contains(i,j))
                        r.keyPress(vk[1]);
                        r.keyRelease(vk[1]);
                        status.setText("2");
                        found=true;}
                     if (r3.contains(i,j))
                     { r.keyPress(vk[2]);
                        r.keyRelease(vk[2]);
                        status.setText("3");
                        found=true;}
                     if (r4.contains(i,j))
                     { r.keyPress(vk[3]);
                        r.keyRelease(vk[3]);
                        status.setText("4");
                        found=true;}
                     if (r5.contains(i,j))
                     { r.keyPress(vk[4]);
                        r.keyRelease(vk[4]);
                        status.setText("5");
                        found=true;}
                     if (r6.contains(i,j))
                     { r.keyPress(vk[5]);
                        r.keyRelease(vk[5]);
                        status.setText("6");
                        found=true;}
                     if (r7.contains(i,j))
                     { r.keyPress(vk[6]);
                        r.keyRelease(vk[6]);
                        status.setText("7");
                        found=true;}
                     if (r8.contains(i,j))
                     { r.keyPress(vk[7]);
                        r.keyRelease(vk[7]);
                        status.setText("8");
                        found=true;}
                     if (r9.contains(i,j))
                     { r.keyPress(vk[8]);
                        r.keyRelease(vk[8]);
                        status.setText("9");
                        found=true;}
                     if (found==true)
                        try
                           Thread.sleep(time);
                            catch(Exception e)
                              System.out.println("Error!");
                        sample=sample();
                        for (int z=0;z<rePaint;z++)
                           image1 = vision1.getBufferedImage();
                           repaint();
                        found=false;
           setVisible(vis);
       public void actionPerformed (ActionEvent e)
       public static void main(String[] args)throws Exception {
         LaserControll a=new LaserControll();
   }

Similar Messages

  • What are the boxes that appear when I scroll over them at the top and bottom of a Pages document, and how do I get rid of them?

         While types a blank document on pages, there are "invisible" boxes at the top and bottom of each page, and they only appear when I scroll over them. Does anyone know what these boxes are, and how i can get rid of them from my paper?

    Those are the Header and Footer spaces. You remove them using the Document Inspector. Uncheck the "Headers" and "Footers" checkboxes shown checked here:
    Regards,
    Barry

  • Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps.

    Hi. Whenever I go through one of the menus in firefox, the links remain highlighted after my mouse passes over them. Is there a bug fix for this or is there something wrong with my computer? I am running windows 7 if that helps. This problem started ever since I upgraded to version 5.

    I have downloaded and used the iPod Reset Utility, alot that did. My current state is iTunes on my XP Home with SP3 sees the iPod. When I drag a song to the iPod, the Sync message appears for about 5 minutes, then the Apple symbol appears. But no song has been transferred to the iPod.
    I tried to tap into the XP iTunes database from my iBook, but although it acted like it would add the XP library to the iBook library, it did not. I've got 19 Gs of songs on the XP. If I have to load each song from its original CD to get it on my iBook I'm going to start looking for some other app or device so that I can listen to my music.
    It is a shame, in the old days, Apple techs use to look at what was going on, now it appears they don't, so they never know they have problems until Apple's profits fall.

  • How do I keep the name tags in Picasa Web Albums from appearing on the images by default? With Explorer, name tags only appear when mousing over the image, but with Firefox, all the tags appear on the picture as soon as it is loaded, which looks messy.

    I use Picasa to create web albums, and I tag people who appear in the pictures. With Explorer, the name tags do not appear on the pictures until I mouse over a specific person, at which point the tag appears. With Firefox, the name tags appear as soon as the picture is loaded, and only disappear when you mouse over the people in the picture. This makes the picture look messy; by default, one would want to see a picture without tags all over people's faces.
    The only way to "fix" this is to disable the name tags completely (or tell people to use Explorer!), but this is not an ideal solution, since I would like to be able to share albums with people's names in them.

    I use Picasa to create web albums, and I tag people who appear in the pictures. With Explorer, the name tags do not appear on the pictures until I mouse over a specific person, at which point the tag appears. With Firefox, the name tags appear as soon as the picture is loaded, and only disappear when you mouse over the people in the picture. This makes the picture look messy; by default, one would want to see a picture without tags all over people's faces.
    The only way to "fix" this is to disable the name tags completely (or tell people to use Explorer!), but this is not an ideal solution, since I would like to be able to share albums with people's names in them.

  • How do I stop a notify icon appearing multiple times... then disappear when mouse hovers over them

    Hi,
    [Re-posted
    from Outlook Dev Forum]
    I have an Outlook addin which makes use of a System.Windows.Forms.NotifyIcon to display update message without requiring the user to click Okay to dismiss them...etc.
    I declare and create it in the addin class (so not in start up or any other event) as:
    Public WithEvents notifyIcon As New System.Windows.Forms.NotifyIcon
    Then throughout in my code if I need to display a message I use notifyIcon.ShowBalloonTip.  This works great, and I run it off the main thread as well as a syncing background worker thread.  The problem is that when I go down and expand the
    system tray, there are often many clones of the icon I use, which then disappear when I hover my mouse over them.
    I understand this isn't an uncommon problem, and it happens also with new email icons in the system tray.  However, is there any way I can prevent this from happening, or best practices I need to abide by?
    In the Shutdown event I use:
    If notifyIcon IsNot Nothing Then
    notifyIcon.Visible = False
    notifyIcon.Dispose()
    End If
    Any help would be much appreciated, since I can't seem to find any definitive info elsewhere online.
    Thanks!
    Tom
    Note: I don't actually use a windows form with the notifyIcon, I just declare it as above... not sure if that affects anything?

    Would this be the same as using the Application_Quit event for the Outlook addin?  Since I've
    seen that in Outlook 2010 onwards it doesn't call the Shutdown event now anymore, so you need to use the Quit event of the application to do any tidy up.  Maybe that is why the icons are remaining.
    Thanks,
    Tom
    Hello,
    Wyck has shared a nice example with a form event, and for outlook 2010, we could deal with that notifyIcon inside application quit event.
    Based on the document below you shared, it seems that you have found the reason, if that issue still exists, please feel free to let us know.
    https://msdn.microsoft.com/en-us/library/office/ee720183(v=office.14).aspx
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Safari status bar disappears.  I have tried clicking on show status bar and it will only appear when I move the cursor to the top of the screen.  I can not minimize the open page only full screen or close the browser.  Any idea how the rectify this

    Safari status bar disappears. I have tried clicking on show status bar, under the View tab and it will only appear when I move the cursor to the top of the screen. I can not minimize the open page, only full screen or close the browser. Any idea how the rectify this issue?

    One enters and exits full-screen with control+command+F keys. This is on the View menu in Safari. Optionally, the green traffic light in your browser title bar, if you roll over it, has the full-screen control it it. While in full-screen mode with Safari, moving your mouse pointer virtually up, and off-screen reveals the Safari title bar again, and you can click the green traffic light to exit full-screen mode.
    You can hide/show the status bar by simply typing command+/. This too, is on the Safari View menu. and in 10.10.1 — it works reliably for me.

  • How to display item when mouse moves over Column value??

    Hi there
    It would be helpful if you could resolve the following :
    i) I need to display the column 'A' values of my report in a Text field when mouse moves over column B of my report.
    ii) I can able to display the same column value when mouse moves over or onclick happens. but my requirement is something like i have to display the other column value when mouse moves over.
    iii) Also i noticed that, i can able to display the item only on "Display only Item" and not on Text field.
    Any pointers to display my column value in Text field when onclick happens on my report column?
    iv) One more thing that i noticed, i can able to perform onclick or mouse over only on Editable column and not on
    non editable columns.
    Any pointers on how to achieve the same when mouse moves over Non editable column of report?
    Reference: I have created a dummy application (refer the following link), where i can able to display column value Salary on display only item using mouse move Event.
    My requirement: when i click column Ename , the text field should show salary.
    http://apex.oracle.com/pls/otn/f?p=56045:1
    User:guest
    Pswd: apex_demo
    Any pointers on this would be appreciated.
    Thanks
    Vijay

    Vijay,
    If you use Jquery then this should do the trick.
    $(document).ready(function() {
       $(".t20Report t20Standard tr").hover(function() {
         $("#P2_SALARY").attr("innerHTML",$(this).find("td:last input").attr("value"));
    {code}
    after looking at the source of your page it seems that your class for your report region is *class="t20Report t20Standard"* I am not 100% sure but you might have to correct that in the template. I am not sure how the selector will handle the space in the class name.
    Hope this helps,
    Tyson                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Search Bar : "Go button only appears when text in the bar"

    With the new update they have made it so that the "Search" button in the "Search bar" only appears when there is text on it.
    While probably a minor (in)convinence for most, it had become a browsing habit for me, to middle mouse click the search in an empty search to take me to "google.com" in a new tab (or whatever search engine was set).
    I would like to know if its possible to tweak something in order to bring back the search button so it stays there.
    I know there is easy workarounds for this (bookmark comes to mind), but having browsed like this for many years I would like to continue doing so if possible.
    Thanks

    Hmm, it takes a little doing, but I think so.
    When the bar is empty, the code that generates the little image of the arrow has a new attribute set, which is hidden="true". There is a corresponding style rule to suppress the arrow when hidden="true". You can use a custom style rule to override the built-in rules, and apply it to the interface using either:
    * Stylish extension ([https://addons.mozilla.org/firefox/addon/stylish/])
    * userChrome.css file ([http://kb.mozillazine.org/userChrome.css])
    This is a rule you could use:
    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    searchbar .search-go-button[hidden="true"] {
    display: -moz-box !important;
    I have attached an image of how this looks when you create a new blank rule in Stylish, paste that in, and click the Preview button.

  • Network traffic only happens when mouse cursor moving

    Network traffic only happens when mouse cursor is moving over Firefox window. It's even stopping me sending this message! Doesn't affect 32-bit XP machine.

    -> [[Troubleshooting extensions and themes]]
    -> Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    -> [[How to clear the cache#w_clear-the-cache|Clear the Network Cache]]
    -> Also try the suggestions mentioned in the following articles:
    * [[Firefox cannot load websites but other programs can]]
    * [[Firefox never finishes loading certainwebsites#w_lower-the-max-number-of-http-connections|Lower the max number of HTTP connections]]
    Check and tell if its working.

  • How do I delete my old Apple ID that only appears when I try to update my apps...my new I'd works fine with everything else

    How do i delete an delete delete an old Apple ID that only appears when I try to update my apps..a

    All of the purchase you made on the old AppleID are permanently connected to that AppleID. The only way you can get rid of it is to repurchase everything again with the new AppleID.

  • Calculated Value in Infopath List Form only appears when editing.

    I have a InfoPath 2010 List Form running against SharePoint 2010 Enterprise. I've created a calculated value that returns data from a secondary list.  The returned value is correct but isn't being displayed in the display form.  It only appears
    when I click Edit.  Help!?!

    Hi dshupe,
    According to your description, my understanding is that you were using a Calculated Value control in InfoPath, and the contorl could not display in the list display form.
    I reproduced this issue, and it seem to be impossible to display the control in display form.
    For implementing your requirement, you can add a textbox control, and set default value using calculated  value(formula) for the textbox control, then set the control read-only. After that, the textbox control can not only work as well as a Calculated
    Value control, but also display in display form.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Is it possible to hide the yellow box that appears when you scroll over any object in the form?

    Is it possible to hide the yellow box that appears when you scroll over any object in the form? This box contains the item name or caption.

    Hi,
    Under Tools ... Options ... Workspace, there is an option "Display Object Name Tool Tips While Pointing".
    Try clearing that.
    Bruce

  • How control can be customized so that it changes its picture when mouse moves over it

    How control can be customized so that it changes its picture when mouse moves over it. As it happens in other develpment enviroments that one can customized the look 'n feel of any thing during the mouse movement over that very thing. Moreover can any body plz tell me that how one can modify the funtionality of a control by him self (not selecting the available functionalities of controls and indicators)

    The attached LV 7.1 code uses an event configured to trigger on two controls when a "Mouse Enter" or a Mouse Leave" event occurs. Depending on the type key focus is either assigned or removed.
    Please elaborate on the Q re: customizing a control.
    Ben
    PS Do NOT change the boolean to an indicator, save, run, change to control, save run again. That is bad.
    Forgot to attachMessage Edited by Ben on 05-05-2005 09:30 PM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    MouseOver.vi ‏28 KB

  • How do I remove the white rectangle that appears when you hover over a nav button or email link?

    In properties I have link color white, visited blank, rollover blank and active blank. When viewed in chrome, IE or firefox a white rectangle appears when you hover over each link.  What is the procedure for removing this?

    This is my CSS
    .gridContainer {
              width: 89.0217%;
              max-width: 1232px;
              padding-left: 0.4891%;
              padding-right: 0.4891%;
              margin: auto;
              clear: none;
              float: none;
              margin-left: auto;
              color: #FFFFFF;
              background-color: #0033FF;
              border-radius: 15px;
              padding-top: 2%;
              padding-bottom: 2%;
    #div1 {
              width: 100%;
              padding-top: 2%;
              background-color: #FFFFFF;
    #Navdiv {
    width: 24.1758%;
    #Intro1 {
    width: 74.7252%;
    margin-left: 1.0989%;
    clear: none;
    #Intro2 {
              width: 74.7252%;
              margin-left: 1.0989%;
              clear: none;
              text-align: center;
    #Intro3 {
    width: 49.4505%;
    #Intro4 {
    width: 49.4505%;
    margin-left: 1.0989%;
    clear: none;
    #Intro5 {
    width: 100%;
    #Footer1 {
              width: 100%;
              text-align: center;
              padding-top: 2%;
              padding-bottom: 2%;
    #Footer2 {
              width: 100%;
              text-align: center;
              padding-top: 2%;
              padding-bottom: 2%;
    #Footer3 {
              width: 100%;
              text-align: center;
              padding-top: 2%;
              padding-bottom: 2%;
    #Footer4 {
              text-align: center;
              padding-bottom: 2%;
    #Navheader {
              margin-left: 0;
              clear: both;
              width: 100%;
              text-align: center;
              background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(0,51,255,1.00) 100%);
              background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(0,51,255,1.00) 100%);
              background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(0,51,255,1.00) 100%);
              background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(0,51,255,1.00) 100%);
    .Ulnav {
    width: 100%;
    margin-left: 0;
    .Listnav {
              width: 100%;
              margin-left: 0;
              text-align: center;
              background-color: #0033FF;
              padding-top: 1%;
              padding-bottom: 1%;
              color: #0033FF;
    #spacer1 {
    width: 100%;
    margin-left: 0;
    clear: none;
    #spacer2 {
    .zeroMargin_desktop {
    margin-left: 0;
    .hide_desktop {
    display: none;

  • Docky on LXDE/OpenBox crashes when mouse hovers over dock

    Hi all!
    On an (almost) fresh install of LXDE on Arch Docky crashes whenever the mouse hovers over it.
    - up-to-date Arch/LXDE (executed pacman -Syu today)
    - xcommgr is running (but it also happens w/o it)
    - Docky starts up, shows default icons etc., everything seems fine
    - when mouse hovers over area occupied by Docky it crashes instantaneously:
    error 3: BadWindow (invalid Window parameter) request 15 minor 0 serial 2079
    mono: cairo-scaled-font.c:459: _cairo_scaled_glyph_page_destroy: Assertion `!scaled_font->cache_frozen' failed.
    Stacktrace:
    at <unknown> <0xffffffff>
    at (wrapper managed-to-native) Pango.CairoHelper.pango_cairo_layout_path (intptr,intptr) <0xffffffff>
    at Pango.CairoHelper.LayoutPath (Cairo.Context,Pango.Layout) <0x00053>
    at Docky.Items.AbstractDockItem.HoverTextSurface (Docky.CairoHelper.DockySurface,Gtk.Style,bool) <0x003bf>
    at Docky.Interface.DockWindow.UpdateHoverText () <0x003bf>
    at Docky.Interface.DockWindow.set_HoveredItem (Docky.Items.AbstractDockItem) <0x00087>
    at Docky.Interface.DockWindow.OnExposeEvent (Gdk.EventExpose) <0x00513>
    at Gtk.Widget.exposeevent_cb (intptr,intptr) <0x0006e>
    at (wrapper native-to-managed) Gtk.Widget.exposeevent_cb (intptr,intptr) <0xffffffff>
    at <unknown> <0xffffffff>
    at (wrapper managed-to-native) Gtk.Application.gtk_main () <0xffffffff>
    at Gtk.Application.Run () <0x0000b>
    at Docky.Docky.Main (string[]) <0x005cb>
    at (wrapper runtime-invoke) <Module>.runtime_invoke_void_object (object,intptr,intptr,intptr) <0xffffffff>
    Native stacktrace:
    mono() [0x4b5bc1]
    /usr/lib/libpthread.so.0(+0xf870) [0x7f4a6fae3870]
    /usr/lib/libc.so.6(gsignal+0x39) [0x7f4a6f75f369]
    /usr/lib/libc.so.6(abort+0x148) [0x7f4a6f760768]
    /usr/lib/libc.so.6(+0x2e456) [0x7f4a6f758456]
    /usr/lib/libc.so.6(+0x2e502) [0x7f4a6f758502]
    /usr/lib/libcairo.so.2(+0x66d93) [0x7f4a66fc3d93]
    /usr/lib/libcairo.so.2(+0x140d9) [0x7f4a66f710d9]
    /usr/lib/libcairo.so.2(+0x68db0) [0x7f4a66fc5db0]
    /usr/lib/libcairo.so.2(+0x6a06f) [0x7f4a66fc706f]
    /usr/lib/libcairo.so.2(+0x331ca) [0x7f4a66f901ca]
    /usr/lib/libcairo.so.2(cairo_glyph_path+0x22) [0x7f4a66f827a2]
    /usr/lib/libpangocairo-1.0.so.0(+0x7e21) [0x7f4a6d374e21]
    /usr/lib/libpangocairo-1.0.so.0(+0x81b4) [0x7f4a6d3751b4]
    /usr/lib/libpango-1.0.so.0(pango_renderer_draw_glyphs+0x3f) [0x7f4a6d14979f]
    /usr/lib/libpango-1.0.so.0(pango_renderer_draw_layout_line+0x4a8) [0x7f4a6d14a128]
    /usr/lib/libpango-1.0.so.0(pango_renderer_draw_layout+0x115) [0x7f4a6d14a485]
    /usr/lib/libpangocairo-1.0.so.0(+0x835a) [0x7f4a6d37535a]
    [0x416f74b1]
    Debug info from gdb:
    =================================================================
    Got a SIGABRT while executing native code. This usually indicates
    a fatal error in the mono runtime or one of the native libraries
    used by your application.
    =================================================================
    Did anybody else run into this? Any ideas how to fix it?
    (just in case it matters: Arch is running on VBox 4.3.6. So far, I didn't run into any other crashes or problems with DE or WM)
    Thanks & Cheers
      Ax

    Greetings!
    If you are still on this issue, I suggest you check out your fonts.  Had you been fooling with them?
    I once rebuilt my entire OS due to this problem a couple of years ago.  It popped up again yesterday and I determined to find the issue.
    It was my fonts.  I use Funtoo (I used to use ArchLinuxArm so I'm registered here) and just prior to the problem I was fooling with the infinality/lcdfilter settings.  After chasing my tail all day today I went and changed some font settings and that was it!  For me the same issue occurred whenever I tried to add the weather icon, the best thing about Docky.
    I had been fooling with the fonts 2 years ago too...
    An ominous and unhelpful error message to be sure.
    Good luck.
    Last edited by yuyu (2014-04-03 03:31:33)

Maybe you are looking for

  • JAVA ERROR MESSAGE WHEN POSTING CHANGES TO OC4J

    We are using Oracle9iAS v1.0.2.2.2a. From the Client we succed in posting and commiting changes to our BC4J on the Middletier. The next time we postchanges we get the following exeption on the OC4J AS: oracle.jbo.DMLException: JBO-26080: Error while

  • Why can't I open forms in reader on my ipad?

    WHy won't reader open interactive PDF forms. I get the please wait message... Your PDF viewer may not be able to display this type of document. im using an ipad with version 11.3.2

  • HT4623 I can't use my phone after it updated

    After I updatedand backed up my phone.  It said there was a problem.  Should I restore to original settings?

  • Missing Tint Slider in Illustrator CS5 Colour Palette

    Hello Despite following all the intructions on numerous tutorials/help sections etc I can't get the tint slider to appear in the colour palette. I'm thinking I might have a bug with my programme. Any ideas? (it's beyond frustrating!!!!) Jenny

  • DPM 2010 agent install on W2k8 Domain Controller issue

    Hey guys, so I'm having a problem getting DPM 2010 agents on my Windows 2008 domain controllers. For some reason the agent will not communicate with the dpm server after running the attach process. The process I go through to install (which is workin