Javascript keypress/onkeypress in air webkit not working on linux

<input type='text' onKeyPress="filter(event)" />
i have this functionality in one of my web page where using javascript i capture the charCode and make a event.preventdefault() to filter out the typed character from a text input with in HTML.
My Air Browser developed in Adobe AIR when loads this html page with this javascript works only on windows.
When the same page if i run on the Air application on Linux OS the keypress airt triggering.
Does Adobe Air webkit having limitation for this particular event for LINUX.

It's not on the list of webkit CSS properties supported in
AIR:
http://livedocs.adobe.com/air/1/devappshtml/AboutHTMLEnvironment_3.html

Similar Messages

  • Hi, my MacBook Air is not working anymore if it's not connected with the power cable. It's pretty new so I can't imagine that the battery is dead already. Why can't I use my MacBook Air without the power cable even though I charged it for hours?

    Hi, my MacBook Air is not working anymore if it's not connected with the power cable. It's pretty new so I can't imagine that the battery is dead already. Why can't I use my MacBook Air without the power cable even though I charged it for hours?

    Please take the Mac to  Apple store to have it checked out.
    Genius Bar reservation
    http://www.apple.com/retail/geniusbar/
    Best.

  • My iMessage for my Macbook Air is not working. It says no delivered with a red ! next to it. I have tried serval different options on trying to get it to work to include logging out of iCloud and checking my date and time. I have done about everythin

    My iMessage for my Macbook Air is not working. I have updated everything. My system is running on OS X Yosemite Version 10.10. When I go to send a message, it says no delivered with a next to it. I have tried serval different options on trying to get it to work to include logging out of iCloud and checking my date and time and updating FlashPlayer. I have done about everything I can think of. Any help would be greatly appreciate!

    Why start a new and very similar thread to your other one which you have not responded to (have you read the replies?)
    I suggest that no response is made to this duplicate thread. 

  • I spill all my coffee on my new MacBook Air, its not working anymore, what should i do ? I have to buy a new one coz its pricy to fix it.

    I spill all my coffee on my new MacBook Air, its not working anymore, what should i do ? I have to buy a new one coz its pricy to fix it.

    Liquid spills, why your MacBook chassis is a one-way valve for spills
    After a substantial spill many people will turn their notebook upside down and shake it, not only does this not work, but it spreads liquid havoc throughout your machine and makes things often as bad as possible.
    The keyboard itself acts like a one way valve in the case of a substantial liquid spill. While liquid pours into the bottom chassis easy, it does not come out easily at all, and in the case of any spill, most of it will not come out by turning it upside down. Disconnect all power and contact Apple for diagnostics and repair.
    Do not attempt to, after a spill, ‘dry out your MacBook’ and test it
    After a spill most people invariably try to “dry out” their notebook by various methods, including hair dryers and otherwise. This both does not work, and after a substantial spill of any magnitude, even if the liquid was water, residue is left behind.
    There are additionally many very tight places inside your notebook where liquids will linger for a very long time, and cause corrosion or worse.
    Immediately unplug your notebook and contact Apple for in shop diagnostics and parts replacement.
    In the case of very minor spills people will “dry out” their notebook and feel success that their notebook is working ok, however invariably in nearly all instances after 4-14 days an error / fault pops up and is usually followed by more.
    In case of a spill, damage estimates are impossible,.....anything can be fixed, without question.......the question is cost.
    contact Apple for in shop diagnostics and cost estimation ....possible parts replacement.  

  • KeyListener not working in Linux

    Hello guys, I'm having a weird problem I was hoping I could get resolved.
    I finished a Pong applet for my Java class, and it works just fine under Windows and on my Mac.
    But when I run it under Linux, the Applet doesn't work correctly.
    The applet draws, and my timer works, but my KeyListener does not work.
    I believe all of my Java files are updated properly.
    But I do not understand why KeyListener does not work under Linux, but it does in Windows.
    I then made a very basic applet just to test my KeyListener, and it still does not work.
    This is how I was taught to do KeyListeners, but if I'm doing something wrong, please help me out!
    here is the basic program code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test extends JApplet implements KeyListener
    int x = 0;
    int y = 250;
    public void init()
    addKeyListener(this);
    public void paint(Graphics g)
    g.setColor(Color.white);
    g.fillRect(0,0,500,500);
    g.setColor(Color.black);
    g.fillRect(x,y,50,50);
    public void keyPressed(KeyEvent event)
    int keyCode = event.getKeyCode();
    if(keyCode == KeyEvent.VK_RIGHT)
    x += 10;
    public void keyReleased(KeyEvent event)
    public void keyTyped(KeyEvent event)

    What if don't use a KeyListener but instead use key binding? For instance,
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    @SuppressWarnings("serial")
    public class Test2 extends JPanel {
      private static final int DELTA_X = 10;
      private static final int DELTA_Y = DELTA_X;
      private static final Dimension MAIN_SIZE = new Dimension(600, 600);
      enum Arrows {
        LEFT(KeyEvent.VK_LEFT, -DELTA_X, 0),
        RIGHT(KeyEvent.VK_RIGHT, DELTA_X, 0),
        UP(KeyEvent.VK_UP, 0, -DELTA_Y),
        DOWN(KeyEvent.VK_DOWN, 0, DELTA_Y);
        private int keyCode;
        private int deltaX, deltaY;
        private Arrows(int keyCode, int deltaX, int deltaY) {
          this.keyCode = keyCode;
          this.deltaX = deltaX;
          this.deltaY = deltaY;
        public int getDeltaX() {
          return deltaX;
        public int getDeltaY() {
          return deltaY;
        public int getKeyCode() {
          return keyCode;
      int x = 0;
      int y = 250;
      public Test2() {
        setBackground(Color.white);
        setPreferredSize(MAIN_SIZE);
        InputMap inMap = getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
        ActionMap actMap = getActionMap();
        for (Arrows arrow : Arrows.values()) {
          inMap.put(KeyStroke.getKeyStroke(arrow.getKeyCode(), 0), arrow);
          actMap.put(arrow, new MyAction(arrow));
      private class MyAction extends AbstractAction {
        private Arrows arrow;
        public MyAction(Arrows arrow) {
          this.arrow = arrow;
        public void actionPerformed(ActionEvent e) {
          x += arrow.getDeltaX();
          y += arrow.getDeltaY();
          repaint();
      @Override
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(Color.black);
        g.fillRect(x, y, 50, 50);
    import javax.swing.JApplet;
    @SuppressWarnings("serial")
    public class TestApplet extends JApplet {
      public void init() {
        try {
          javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
            public void run() {
              createGUI();
        } catch (Exception e) {
          System.err.println("createGUI didn't successfully complete");
      private void createGUI() {
        getContentPane().add(new Test2());
    }

  • Why my RMI is not Working in Linux???

    Hiii how ru?
    I am Rahul here
    Well I have a problem that my RMI in not working on Linux.. so can u tell me the solution to my problem???
    When i am typing following command i am getting exception as RmiNotBoundException
    java -Djava.security.policy=my.policy ChaClient&
    however my Server is Starting normally but client is not connection to server.
    so please tell me the solution to this problem
    U can contact me at
    [email protected]
    [email protected]
    Thank u Very much...

    i ran into the same issue dealing with RMI and Linux. My issue was the the stub that linux was giving you gave in the host field the ip number of "127.0.0.1" which tried to make the client connect to itself. this is how i got around it:
    java -Djava.rmi.server.hostname=<ip that other clients will connect to>
    so, for instance, if on a client you connect to the server with an IP of 10.5.0.1, then when starting up the java vm, you start it
    java -Djava.rmi.server.hostname=10.5.0.1
    hopefully that helps

  • Wireless not working in linux, but works fine in windows vista

    Hello!
    I have installed Unbreakable Enterprise Linux 4 in a dual boot config. with Window Vista on a Compaq Presario laptop. After install completed I found that my on board Broadcom Wireless Adapter (Dell 1390 Mini PC card) was not recognized. I have tried installing NDISwrapper versions 1.48 and later 1.47 (after uninstalling 1.48) because everytime I got to the "modprobe ndiswrapper" received a fatal error about an unknown symbol or parameter, and on install I also encountered a "CONFIG_4KSTACKS" error as well. The good part is the light on my laptop for the wireless adapter finally came on and the driver (bcmwl5.inf) appears to be installed and the wireless adapter identified as being present, but it still doesn't show up in the network manager gui interface. So I am out of ideas if any one can give me a suggestion for a solution I would appreciate it.

    Hi there,,,,,
    I have Oracle Enterprise Linux 5 installed and Intel wifi 5100 card installed on my laptop. Wireless card does not work in Linux it works fine with Vista, I have dual boot. I have downloaded and installed the microcode for the wireless card for Linux,,,it is now active but it does not take ip address from dhcp and nor does it connect when i supply manual ip. it does not even scan for any wireless network. I have WEP enabled on my wireless network. It just says disconnected.....
    Please help me.....i have been trying to get this thing work for 3 weeks.
    thanks.

  • Webutil not working in linux

    Hi all,
    i have insert image using webutil(oracle forms 10g) to database in windows o.s. it was successful.
    but when i have tried it in solaries o.s. .
    It is not working in linux how to do it in solaries o.s.
    when i am clicking on the browse button it is showing pl/sql error how to solve it.
    please guide me ..

    HI Anderas,
    i am using using a demo form of webutil which is available on internet i.e WEBUTIL_DOCS.fmb
    which is working fine on windows sp2(when i am clicking on the browse button)
    but it is not working on linux when i am clicking on the browse button it is showing pl/sql error.
    code in browse butrton
    Declare
         LC$Fichier Varchar2(128 ) ;
    Begin
    LC$Fichier := PKG_FICHIERS.Selection ;
    If LC$Fichier is not null Then
    :TRANSFERTS.FIC_SOURCE := LC$Fichier ;
    End if ;
    End ;
    and the package is
    package specification
    ==================
    PACKAGE PKG_FICHIERS IS
    -- Sélection d'un fichier --
    FUNCTION Selection ( PC$Filtre IN Varchar2 DEFAULT '|All files|*.*|' ) RETURN VARCHAR2 ;
    END;
    package body
    =============
    PACKAGE BODY PKG_FICHIERS IS
    -- Sélection d'un fichier --
    FUNCTION Selection ( PC$Filtre IN Varchar2 DEFAULT '|All files|*.*|' )RETURN VARCHAR2
    IS
    LC$Path Varchar2(128) ;
    LC$Fichier Varchar2(256) ;
    LC$Filtre          Varchar2(100) := PC$Filtre ;
    Begin
         -- Répertoire temporaire --
         LC$Path := CLIENT_WIN_API_ENVIRONMENT.Get_Temp_Directory ;
    LC$Fichier := WEBUTIL_FILE.FILE_OPEN_DIALOG
         LC$Path,
         LC$Filtre,
         'Select a file to upload'
    Return LC$Fichier ;
    END Selection ;
    END;
    please reply..

  • JCombox does not work under linux (fedora) could you help me???

    Hi All,
    I am implementing a GUI for a linux application. This GUI works fine under windows system. But the JCombobox does not work under Linux system. Would you help me to solve it? Thank you very much!..
    The problem is that I cannot select any other item except the first item in the dropdown box of JCombobox. There is no event generated when I click the combobox, while events are generated for other Buttons.
    This problem exists for the following code when I maximize the window. When the window is minimize to some extend in my problem, it is OK.
    Here is the simplify code:
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.Serializable;
    import java.util.Vector;
    import javax.swing.ComboBoxModel;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.event.ListDataEvent;
    import javax.swing.event.PopupMenuEvent;
    import javax.swing.event.PopupMenuListener;
    import java.awt.event.*;
    import javax.swing.*;
    //carmen
    import javax.swing.filechooser.*;
    import javax.swing.event.*;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.border.*;
    //import AlwaysSelectableComboBoxDemo.AlwaysSelectableComboBox;
    //import AlwaysSelectableComboBoxDemo.AlwaysSelectableComboBox;
    import java.io.*;
    import java.util.*;
    import java.lang.String.*;
    public class Test extends JFrame
         private JComboBox jComboBox1;
         private JComboBox jComboBox2;
         private JPanel contentPane;
         private JTabbedPane jTabbedPane1;
         //Main Tab
         private JPanel Main;
         private JPanel OutputSimSet;
         private JPanel Test;
         private JPanel ScriptGenTab;
         private JPanel ResultTab;
    //Result Tab
    private JPanel SimResult;
         public Test()
              super();
              //initializeComponent();
              contentPane = (JPanel)this.getContentPane();
              jTabbedPane1 = new JTabbedPane();
              Main = new JPanel();
              OutputSimSet = new JPanel();
              Test = new JPanel();
              ScriptGenTab = new JPanel();
              ResultTab = new JPanel();
              SimResult = new JPanel();
         jComboBox1 = new JComboBox(
                        new String[]{"Item 1","Item 2", "Item 3"});
                        jComboBox1.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent ae) {
                        System.out.println("Yeah");
         jComboBox2 = new JComboBox(
                                  new String[]{"Item 1","Item 2", "Item 3"});
                                  jComboBox2.addActionListener(new ActionListener() {
                                  public void actionPerformed(ActionEvent ae) {
                                  System.out.println("Yeah");
              // jTabbedPane1
              jTabbedPane1.addTab("Main", Main);
              jTabbedPane1.addTab("ScriptGenerator", ScriptGenTab);
              jTabbedPane1.addTab("Simulation Result", ResultTab);
              jTabbedPane1.addChangeListener(new ChangeListener() {
                   public void stateChanged(ChangeEvent e)
                        jTabbedPane1_stateChanged(e);
              // contentPane
              contentPane.setLayout(new BorderLayout(0, 0));
              contentPane.add(jTabbedPane1, BorderLayout.CENTER);
              // Main
              //Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              Main.setLayout(new BorderLayout(0, 0));
              Main.add(OutputSimSet,BorderLayout.NORTH);
              OutputSimSet.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              OutputSimSet.add(Test, 0);
              Test.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              Test.add(jComboBox1,0);
              //ResultTab
              ResultTab.setLayout(new BorderLayout(0, 0));
              ResultTab.setBorder(new TitledBorder(""));
              ResultTab.add(SimResult, BorderLayout.NORTH);
              SimResult.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              SimResult.add(jComboBox2,0);
              // Test
              this.setTitle("Test");
              this.setLocation(new Point(0, 0));
              this.setSize(new Dimension(600, 500));
              this.setVisible(true);
         public void initializeComponent()
         /** Add Component Without a Layout Manager (Absolute Positioning) */
         private void addComponent(Container container,Component c,int x,int y,int width,int height)
              c.setBounds(x,y,width,height);
              container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTabbedPane1_stateChanged(ChangeEvent e)
              System.out.println("\njTabbedPane1_stateChanged(ChangeEvent e) called.");
              // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jComboBox1_actionPerformed(ActionEvent e)
              System.out.println("\njComboBox1_actionPerformed(ActionEvent e) called.");
              Object o = jComboBox1.getSelectedItem();
              System.out.println(">>" + ((o==null)? "null" : o.toString()) + " is selected.");
              // TODO: Add any handling code here for the particular object being selected
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Create and set up the window.
    Test frame = new Test();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    package oct03_JCBox;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Point;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ChangeListener;
    public class Test extends JFrame
    private JComboBox jComboBox1;
    private JComboBox jComboBox2;
    private JPanel contentPane;
    private JTabbedPane jTabbedPane1;
    //Main Tab
    private JPanel Main;
    //private JPanel OutputSimSet;
    //private JPanel Test;
    private JPanel ScriptGenTab;
    private JPanel ResultTab;
    //Result Tab
    //private JPanel SimResult;
    public Test()
         super();
         //initializeComponent();
         contentPane = (JPanel)this.getContentPane();
         jTabbedPane1 = new JTabbedPane();
         Main = new JPanel();
         ScriptGenTab = new JPanel();
         ResultTab = new JPanel();
    //     OutputSimSet = new JPanel();
    //     Test = new JPanel();
    //     SimResult = new JPanel();
         jComboBox1 = new JComboBox(
         new String[]{"Item 1","Item 2", "Item 3"});
         jComboBox1.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent ae) {
              System.out.println("Yeah");
         jComboBox2 = new JComboBox(
         new String[]{"Item 1","Item 2", "Item 3"});
         jComboBox2.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent ae) {
                   System.out.println("Yeah");
         // Main
         //Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         Main.add(jComboBox1);
         //ResultTab  -----     
         ResultTab.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         ResultTab.add(jComboBox2);
        //      jTabbedPane1
         jTabbedPane1.addTab("Main", Main);
         jTabbedPane1.addTab("ScriptGenerator", ScriptGenTab);
         jTabbedPane1.addTab("Simulation Result", ResultTab);
         jTabbedPane1.addChangeListener(new ChangeListener() {
              public void stateChanged(ChangeEvent e)
                   jTabbedPane1_stateChanged(e);
         // contentPane
         contentPane.setLayout(new BorderLayout(0, 0));
         contentPane.add(jTabbedPane1, BorderLayout.CENTER);
         // Test
         this.setTitle("Test");
         this.setLocation(new Point(0, 0));
         this.setSize(new Dimension(600, 500));
         this.setVisible(true);
         public void initializeComponent()
    //     /** Add Component Without a Layout Manager (Absolute Positioning) */
    //     private void addComponent(Container container,Component c,int x,int y,int width,int height)
    //     c.setBounds(x,y,width,height);
    //     container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTabbedPane1_stateChanged(ChangeEvent e)
         System.out.println("\njTabbedPane1_stateChanged(ChangeEvent e) called.");
         // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
         // TODO: Add any appropriate code in the following Event Handling Methods
    //     private void jComboBox1_actionPerformed(ActionEvent e)
    //     System.out.println("\njComboBox1_actionPerformed(ActionEvent e) called.");
    //     Object o = jComboBox1.getSelectedItem();
    //     System.out.println(">>" + ((o==null)? "null" : o.toString()) + " is selected.");
    //     // TODO: Add any handling code here for the particular object being selected
         * Create the GUI and show it. For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
         private static void createAndShowGUI() {
         //Create and set up the window.
         Test frame = new Test();
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         frame.pack();
         frame.setVisible(true);
    public static void main(String[] args) {
         //Schedule a job for the event-dispatching thread:
         //creating and showing this application's GUI.
         javax.swing.SwingUtilities.invokeLater(new Runnable() {
         public void run() {
         createAndShowGUI();
    } Try this - you use too many unnecessary JPanels.
    Which way you prefer with actionPerformed should work either way.
    I think your problem was too many unnecessary Panels and set all attributes before it is added, perhaps,
    not add the panel first and then try to set attributes like layout, color, etc...

  • IPad air safari not working in iOS 8.1

    I have an iPhone 5, 5S and ipad air all on version 8.1.  Safari is not working on any of them.  It tries to load, the blank safari screen comes up, then it crashes and goes back to home screen.  I have to use google chrome to access the internet. I tried restoring my one phone to factory, installed the backup, reset the safari data, reset network settings and still no help.  Can anyone tell me how the **** to delete safari and re-install it? I don't know what else to do about this issue.

    Here's one URL copied & paste properly, hope this helps!
    Thank you for looking into this issue...
    http://www.geocaching.com/error/error.aspx?aspxerrorpath=/seek/cache_details.asp x

  • Adobe Air 2 not working in Ubuntu 10.04 32Bits

    Hello, i just installed Adobe Air 2 from .deb file and later from .bin file, but is not working in my Ubuntu, i dont know what is really happening cus i dont get any error message. Do someone knows what is going wrong?

    I just tried to execute the Adobe Air Application Installer from the terminal and i got the next error message:
    $ Adobe\ AIR\ Application\ Installer
    ** (Adobe AIR Application Installer:3312): CRITICAL **: menu_proxy_module_load: assertion `dbusproxy != NULL' failed
    Application crashed with an unhandled SIGSEGV
    Crashlog has been dumped in /tmp/airCrashLogs/0612_1339_UXD6qe
    Also, here is the CrashLog
    Build: 12610
    08048000-0804c000 r-xp 00000000 08:05 263973     /opt/Adobe AIR/Versions/1.0/Adobe AIR Application Installer
    0804c000-0804d000 rwxp 00003000 08:05 263973     /opt/Adobe AIR/Versions/1.0/Adobe AIR Application Installer
    090e2000-092f1000 rwxp 00000000 00:00 0          [heap]
    b2455000-b2495000 rwxp 00000000 00:00 0
    b2495000-b2655000 ---p 00000000 00:00 0
    b2655000-b265d000 rwxp 00000000 00:00 0
    b265d000-b266d000 r-xp 00000000 00:00 0
    b266d000-b2700000 rwxp 00000000 00:00 0
    b2700000-b2710000 r-xp 00000000 00:00 0
    b2710000-b2715000 rwxp 00000000 00:00 0
    b2715000-b2725000 r-xp 00000000 00:00 0
    b2725000-b275b000 rwxp 00000000 00:00 0
    b275b000-b276b000 r-xp 00000000 00:00 0
    b276b000-b27a1000 rwxp 00000000 00:00 0
    b27a1000-b27b1000 r-xp 00000000 00:00 0
    b27b1000-b27c3000 rwxp 00000000 00:00 0
    b27c3000-b27d3000 r-xp 00000000 00:00 0
    b27d3000-b2842000 rwxp 00000000 00:00 0
    b2842000-b2852000 r-xp 00000000 00:00 0
    b2852000-b2855000 rwxp 00000000 00:00 0
    b2855000-b2995000 rwxp 00000000 00:00 0
    b2995000-b299e000 rwxp 00000000 00:00 0
    b299e000-b29ae000 r-xp 00000000 00:00 0
    b29ae000-b2a55000 rwxp 00000000 00:00 0
    b2a55000-b2b0d000 rwxs 00000000 00:04 4194319    /SYSV00000000 (deleted)
    b2b0d000-b2bd0000 r-xp 00000000 08:05 525336     /usr/lib/libasound.so.2.0.0
    b2bd0000-b2bd4000 r-xp 000c2000 08:05 525336     /usr/lib/libasound.so.2.0.0
    b2bd4000-b2bd5000 rwxp 000c6000 08:05 525336     /usr/lib/libasound.so.2.0.0
    b2bd5000-b2e00000 rwxp 00000000 00:00 0
    b2e00000-b2e51000 rwxp 00000000 00:00 0
    b2e51000-b2f00000 ---p 00000000 00:00 0
    b2f6c000-b2f8d000 rwxp 00000000 00:00 0
    b2f8d000-b2fb7000 r-xp 00000000 08:05 686790     /usr/share/locale-langpack/es/LC_MESSAGES/gtk20-properties.mo
    b2fb7000-b2fb8000 ---p 00000000 00:00 0
    b2fb8000-b37b8000 rwxp 00000000 00:00 0
    b37b8000-b3818000 rwxs 00000000 00:04 4161549    /SYSV00000000 (deleted)
    b3818000-b3828000 r-xp 00000000 00:00 0
    b3828000-b383f000 rwxp 00000000 00:00 0
    b383f000-b384f000 r-xp 00000000 00:00 0
    b384f000-b392d000 rwxp 00000000 00:00 0
    b392d000-b393d000 r-xp 00000000 00:00 0
    b393d000-b3a18000 rwxp 00000000 00:00 0
    b3a18000-b3a19000 ---p 00000000 00:00 0
    b3a19000-b4219000 rwxp 00000000 00:00 0
    b4219000-b426c000 r-xp 00000000 08:05 531308     /usr/lib/nss/libnssckbi.so
    b426c000-b4275000 r-xp 00053000 08:05 531308     /usr/lib/nss/libnssckbi.so
    b4275000-b427a000 rwxp 0005c000 08:05 531308     /usr/lib/nss/libnssckbi.so
    b427a000-b42c0000 r-xp 00000000 08:05 531307     /usr/lib/nss/libfreebl3.so
    b42c0000-b42c1000 r-xp 00046000 08:05 531307     /usr/lib/nss/libfreebl3.so
    b42c1000-b42c2000 rwxp 00047000 08:05 531307     /usr/lib/nss/libfreebl3.so
    b42c2000-b42c6000 rwxp 00000000 00:00 0
    b42c6000-b42e8000 r-xp 00000000 08:05 531310     /usr/lib/nss/libnssdbm3.so
    b42e8000-b42e9000 r-xp 00021000 08:05 531310     /usr/lib/nss/libnssdbm3.so
    b42e9000-b42ea000 rwxp 00022000 08:05 531310     /usr/lib/nss/libnssdbm3.so
    b42ea000-b436a000 r-xp 00000000 08:05 526154     /usr/lib/libsqlite3.so.0.8.6
    b436a000-b436b000 r-xp 0007f000 08:05 526154     /usr/lib/libsqlite3.so.0.8.6
    b436b000-b436c000 rwxp 00080000 08:05 526154     /usr/lib/libsqlite3.so.0.8.6
    b436c000-b436d000 rwxp 00000000 00:00 0
    b4382000-b43b7000 r-xp 00000000 08:05 531312     /usr/lib/nss/libsoftokn3.so
    b43b7000-b43b8000 r-xp 00035000 08:05 531312     /usr/lib/nss/libsoftokn3.so
    b43b8000-b43b9000 rwxp 00036000 08:05 531312     /usr/lib/nss/libsoftokn3.so
    b43b9000-b43ba000 ---p 00000000 00:00 0
    b43ba000-b4bba000 rwxp 00000000 00:00 0
    b4bba000-b4bbb000 ---p 00000000 00:00 0
    b4bbb000-b5520000 rwxp 00000000 00:00 0
    b5520000-b5530000 r-xp 00000000 00:00 0
    b5530000-b55bb000 rwxp 00000000 00:00 0
    b55bb000-b55ce000 r-xp 00000000 08:05 529006     /usr/lib/gtk-2.0/modules/libglobalmenu-plugin.so
    b55ce000-b55cf000 ---p 00013000 08:05 529006     /usr/lib/gtk-2.0/modules/libglobalmenu-plugin.so
    b55cf000-b55d0000 r-xp 00013000 08:05 529006     /usr/lib/gtk-2.0/modules/libglobalmenu-plugin.so
    b55d0000-b55d1000 rwxp 00014000 08:05 529006     /usr/lib/gtk-2.0/modules/libglobalmenu-plugin.so
    b55d1000-b55f7000 r-xp 00000000 08:05 529607     /usr/lib/gtk-2.0/2.10.0/engines/libmurrine.so
    b55f7000-b55f8000 r-xp 00025000 08:05 529607     /usr/lib/gtk-2.0/2.10.0/engines/libmurrine.so
    b55f8000-b55f9000 rwxp 00026000 08:05 529607     /usr/lib/gtk-2.0/2.10.0/engines/libmurrine.so
    b55f9000-b5623000 r-xp 00000000 08:05 529600     /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so
    b5623000-b5624000 r-xp 00029000 08:05 529600     /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so
    b5624000-b5625000 rwxp 0002a000 08:05 529600     /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so
    b5625000-b562c000 r-xp 00000000 08:05 525897     /usr/lib/libltdl.so.7.2.1
    b562c000-b562d000 r-xp 00006000 08:05 525897     /usr/lib/libltdl.so.7.2.1
    b562d000-b562e000 rwxp 00007000 08:05 525897     /usr/lib/libltdl.so.7.2.1
    b562e000-b563b000 r-xp 00000000 08:05 526171     /usr/lib/libtdb.so.1.2.0
    b563b000-b563c000 r-xp 0000c000 08:05 526171     /usr/lib/libtdb.so.1.2.0
    b563c000-b563d000 rwxp 0000d000 08:05 526171     /usr/lib/libtdb.so.1.2.0
    b563d000-b5642000 r-xp 00000000 08:05 525980     /usr/lib/libogg.so.0.6.0
    b5642000-b5643000 r-xp 00004000 08:05 525980     /usr/lib/libogg.so.0.6.0
    b5643000-b5644000 rwxp 00005000 08:05 525980     /usr/lib/libogg.so.0.6.0
    b5644000-b566b000 r-xp 00000000 08:05 526222     /usr/lib/libvorbis.so.0.4.3
    b566b000-b566c000 r-xp 00026000 08:05 526222     /usr/lib/libvorbis.so.0.4.3
    b566c000-b566d000 rwxp 00027000 08:05 526222     /usr/lib/libvorbis.so.0.4.3
    b566d000-b567b000 r-xp 00000000 08:05 525399     /usr/lib/libcanberra.so.0.2.1
    b567b000-b567c000 r-xp 0000d000 08:05 525399     /usr/lib/libcanberra.so.0.2.1
    b567c000-b567d000 rwxp 0000e000 08:05 525399     /usr/lib/libcanberra.so.0.2.1
    b5681000-b5682000 rwxp 00000000 00:00 0
    b5682000-b5686000 r-xp 00000000 08:05 532424     /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
    b5686000-b5687000 r-xp 00003000 08:05 532424     /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
    b5687000-b5688000 rwxp 00004000 08:05 532424     /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
    b5688000-b5690000 r-xp 00000000 08:05 532407     /usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
    b5690000-b5691000 r-xp 00007000 08:05 532407     /usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
    b5691000-b5692000 rwxp 00008000 08:05 532407     /usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
    b5692000-b56bc000 r-xp 00000000 08:05 667713     /usr/share/locale/es/LC_MESSAGES/gtk20-properties.mo
    b56bc000-b56c6000 r-xp 00000000 08:05 130675     /lib/tls/i686/cmov/libnss_files-2.11.1.so
    b56c6000-b56c7000 r-xp 00009000 08:05 130675     /lib/tls/i686/cmov/libnss_files-2.11.1.so
    b56c7000-b56c8000 rwxp 0000a000 08:05 130675     /lib/tls/i686/cmov/libnss_files-2.11.1.so
    b56c8000-b56d0000 r-xp 00000000 08:05 130685     /lib/tls/i686/cmov/libnss_nis-2.11.1.so
    b56d0000-b56d1000 r-xp 00007000 08:05 130685     /lib/tls/i686/cmov/libnss_nis-2.11.1.so
    b56d1000-b56d2000 rwxp 00008000 08:05 130685     /lib/tls/i686/cmov/libnss_nis-2.11.1.so
    b56d2000-b56e5000 r-xp 00000000 08:05 130669     /lib/tls/i686/cmov/libnsl-2.11.1.so
    b56e5000-b56e6000 r-xp 00012000 08:05 130669     /lib/tls/i686/cmov/libnsl-2.11.1.so
    b56e6000-b56e7000 rwxp 00013000 08:05 130669     /lib/tls/i686/cmov/libnsl-2.11.1.so
    b56e7000-b56e9000 rwxp 00000000 00:00 0
    b56e9000-b56ef000 r-xp 00000000 08:05 130671     /lib/tls/i686/cmov/libnss_compat-2.11.1.so
    b56ef000-b56f0000 r-xp 00006000 08:05 130671     /lib/tls/i686/cmov/libnss_compat-2.11.1.so
    b56f0000-b56f1000 rwxp 00007000 08:05 130671     /lib/tls/i686/cmov/libnss_compat-2.11.1.so
    b56f1000-b56f8000 r-xp 00000000 08:05 526226     /usr/lib/libvorbisfile.so.3.3.2
    b56f8000-b56f9000 r-xp 00006000 08:05 526226     /usr/lib/libvorbisfile.so.3.3.2
    b56f9000-b56fa000 rwxp 00007000 08:05 526226     /usr/lib/libvorbisfile.so.3.3.2
    b56fa000-b56fd000 r-xp 00000000 08:05 525397     /usr/lib/libcanberra-gtk.so.0.1.5
    b56fd000-b56fe000 r-xp 00003000 08:05 525397     /usr/lib/libcanberra-gtk.so.0.1.5
    b56fe000-b56ff000 rwxp 00004000 08:05 525397     /usr/lib/libcanberra-gtk.so.0.1.5
    b56ff000-b5703000 r-xp 00000000 08:05 529653     /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
    b5703000-b5704000 ---p 00004000 08:05 529653     /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
    b5704000-b5705000 r-xp 00004000 08:05 529653     /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
    b5705000-b5706000 rwxp 00005000 08:05 529653     /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
    b5706000-b571a000 r-xp 00000000 08:05 667712     /usr/share/locale/es/LC_MESSAGES/gtk20.mo
    b571a000-b5726000 r-xp 00000000 08:05 686929     /usr/share/locale-langpack/es/LC_MESSAGES/glib20.mo
    b5726000-b5748000 r-xp 00000000 08:05 710993     /usr/share/locale-langpack/es/LC_MESSAGES/libc.mo
    b5748000-b5787000 r-xp 00000000 08:05 530336     /usr/lib/locale/es_CO.utf8/LC_CTYPE
    b5787000-b58a5000 r-xp 00000000 08:05 530530     /usr/lib/locale/es_CO.utf8/LC_COLLATE
    b58a5000-b58a9000 r-xp 00000000 08:05 525267     /usr/lib/libXdmcp.so.6.0.0
    b58a9000-b58aa000 r-xp 00003000 08:05 525267     /usr/lib/libXdmcp.so.6.0.0
    b58aa000-b58ab000 rwxp 00004000 08:05 525267     /usr/lib/libXdmcp.so.6.0.0
    b58ab000-b58ad000 r-xp 00000000 08:05 525256     /usr/lib/libXau.so.6.0.0
    b58ad000-b58ae000 r-xp 00001000 08:05 525256     /usr/lib/libXau.so.6.0.0
    b58ae000-b58af000 rwxp 00002000 08:05 525256     /usr/lib/libXau.so.6.0.0
    b58af000-b58c8000 r-xp 00000000 08:05 130725     /lib/libselinux.so.1
    b58c8000-b58c9000 r-xp 00018000 08:05 130725     /lib/libselinux.so.1
    b58c9000-b58ca000 rwxp 00019000 08:05 130725     /lib/libselinux.so.1
    b58ca000-b58da000 r-xp 00000000 08:05 130721     /lib/tls/i686/cmov/libresolv-2.11.1.so
    b58da000-b58db000 r-xp 00010000 08:05 130721     /lib/tls/i686/cmov/libresolv-2.11.1.so
    b58db000-b58dc000 rwxp 00011000 08:05 130721     /lib/tls/i686/cmov/libresolv-2.11.1.so
    b58dc000-b58de000 rwxp 00000000 00:00 0
    b58de000-b58e4000 r-xp 00000000 08:05 526261     /usr/lib/libxcb-render.so.0.0.0
    b58e4000-b58e5000 r-xp 00005000 08:05 526261     /usr/lib/libxcb-render.so.0.0.0
    b58e5000-b58e6000 rwxp 00006000 08:05 526261     /usr/lib/libxcb-render.so.0.0.0
    b58e6000-b58e9000 r-xp 00000000 08:05 526259     /usr/lib/libxcb-render-util.so.0.0.0
    b58e9000-b58ea000 r-xp 00002000 08:05 526259     /usr/lib/libxcb-render-util.so.0.0.0
    b58ea000-b58eb000 rwxp 00003000 08:05 526259     /usr/lib/libxcb-render-util.so.0.0.0
    b58eb000-b590e000 r-xp 00000000 08:05 130713     /lib/libpng12.so.0.42.0
    b590e000-b590f000 r-xp 00022000 08:05 130713     /lib/libpng12.so.0.42.0
    b590f000-b5910000 rwxp 00023000 08:05 130713     /lib/libpng12.so.0.42.0
    b5910000-b5924000 r-xp 00000000 08:05 525483     /usr/lib/libdirect-1.2.so.0.8.0
    b5924000-b5925000 r-xp 00013000 08:05 525483     /usr/lib/libdirect-1.2.so.0.8.0
    b5925000-b5926000 rwxp 00014000 08:05 525483     /usr/lib/libdirect-1.2.so.0.8.0
    b5926000-b592e000 r-xp 00000000 08:05 525560     /usr/lib/libfusion-1.2.so.0.8.0
    b592e000-b592f000 r-xp 00007000 08:05 525560     /usr/lib/libfusion-1.2.so.0.8.0
    b592f000-b5930000 rwxp 00008000 08:05 525560     /usr/lib/libfusion-1.2.so.0.8.0
    b5930000-b59a3000 r-xp 00000000 08:05 525485     /usr/lib/libdirectfb-1.2.so.0.8.0
    b59a3000-b59a4000 ---p 00073000 08:05 525485     /usr/lib/libdirectfb-1.2.so.0.8.0
    b59a4000-b59a5000 r-xp 00073000 08:05 525485     /usr/lib/libdirectfb-1.2.so.0.8.0
    b59a5000-b59a6000 rwxp 00074000 08:05 525485     /usr/lib/libdirectfb-1.2.so.0.8.0
    b59a6000-b59a7000 rwxp 00000000 00:00 0
    b59a7000-b59fe000 r-xp 00000000 08:05 526027     /usr/lib/libpixman-1.so.0.16.4
    b59fe000-b5a00000 r-xp 00057000 08:05 526027     /usr/lib/libpixman-1.so.0.16.4
    b5a00000-b5a01000 rwxp 00059000 08:05 526027     /usr/lib/libpixman-1.so.0.16.4
    b5a01000-b5a03000 r-xp 00000000 08:05 526030     /usr/lib/libplds4.so
    b5a03000-b5a04000 r-xp 00001000 08:05 526030     /usr/lib/libplds4.so
    b5a04000-b5a05000 rwxp 00002000 08:05 526030     /usr/lib/libplds4.so
    b5a05000-b5a08000 r-xp 00000000 08:05 526028     /usr/lib/libplc4.so
    b5a08000-b5a09000 r-xp 00002000 08:05 526028     /usr/lib/libplc4.so
    b5a09000-b5a0a000 rwxp 00003000 08:05 526028     /usr/lib/libplc4.so
    b5a0a000-b5a1f000 r-xp 00000000 08:05 525975     /usr/lib/libnssutil3.so
    b5a1f000-b5a22000 r-xp 00014000 08:05 525975     /usr/lib/libnssutil3.so
    b5a22000-b5a23000 rwxp 00017000 08:05 525975     /usr/lib/libnssutil3.so
    b5a23000-b5a47000 r-xp 00000000 08:05 130636     /lib/libexpat.so.1.5.2
    b5a47000-b5a49000 r-xp 00024000 08:05 130636     /lib/libexpat.so.1.5.2
    b5a49000-b5a4a000 rwxp 00026000 08:05 130636     /lib/libexpat.so.1.5.2
    b5a4a000-b5a62000 r-xp 00000000 08:05 526263     /usr/lib/libxcb.so.1.1.0
    b5a62000-b5a63000 r-xp 00017000 08:05 526263     /usr/lib/libxcb.so.1.1.0
    b5a63000-b5a64000 rwxp 00018000 08:05 526263     /usr/lib/libxcb.so.1.1.0
    b5a64000-b5a93000 r-xp 00000000 08:05 130701     /lib/libpcre.so.3.12.1
    b5a93000-b5a94000 r-xp 0002e000 08:05 130701     /lib/libpcre.so.3.12.1
    b5a94000-b5a95000 rwxp 0002f000 08:05 130701     /lib/libpcre.so.3.12.1
    b5a95000-b5a9c000 r-xp 00000000 08:05 130723     /lib/tls/i686/cmov/librt-2.11.1.so
    b5a9c000-b5a9d000 r-xp 00006000 08:05 130723     /lib/tls/i686/cmov/librt-2.11.1.so
    b5a9d000-b5a9e000 rwxp 00007000 08:05 130723     /lib/tls/i686/cmov/librt-2.11.1.so
    b5a9e000-b5aa1000 r-xp 00000000 08:05 522444     /usr/lib/libgmodule-2.0.so.0.2400.1
    b5aa1000-b5aa2000 r-xp 00002000 08:05 522444     /usr/lib/libgmodule-2.0.so.0.2400.1
    b5aa2000-b5aa3000 rwxp 00003000 08:05 522444     /usr/lib/libgmodule-2.0.so.0.2400.1
    b5aa3000-b5ac8000 r-xp 00000000 08:05 526001     /usr/lib/libpangoft2-1.0.so.0.2800.0
    b5ac8000-b5ac9000 r-xp 00024000 08:05 526001     /usr/lib/libpangoft2-1.0.so.0.2800.0
    b5ac9000-b5aca000 rwxp 00025000 08:05 526001     /usr/lib/libpangoft2-1.0.so.0.2800.0
    b5aca000-b5b64000 r-xp 00000000 08:05 524098     /usr/lib/libgio-2.0.so.0.2400.1
    b5b64000-b5b65000 ---p 0009a000 08:05 524098     /usr/lib/libgio-2.0.so.0.2400.1
    b5b65000-b5b66000 r-xp 0009a000 08:05 524098     /usr/lib/libgio-2.0.so.0.2400.1
    b5b66000-b5b67000 rwxp 0009b000 08:05 524098     /usr/lib/libgio-2.0.so.0.2400.1
    b5b67000-b5b68000 rwxp 00000000 00:00 0
    b5b68000-b5bdf000 r-xp 00000000 08:05 525389     /usr/lib/libcairo.so.2.10800.10
    b5bdf000-b5be1000 r-xp 00076000 08:05 525389     /usr/lib/libcairo.so.2.10800.10
    b5be1000-b5be2000 rwxp 00078000 08:05 525389     /usr/lib/libcairo.so.2.10800.10
    b5be2000-b5bfb000 r-xp 00000000 08:05 525342     /usr/lib/libatk-1.0.so.0.3009.1
    b5bfb000-b5bfc000 ---p 00019000 08:05 525342     /usr/lib/libatk-1.0.so.0.3009.1
    b5bfc000-b5bfd000 r-xp 00019000 08:05 525342     /usr/lib/libatk-1.0.so.0.3009.1
    b5bfd000-b5bfe000 rwxp 0001a000 08:05 525342     /usr/lib/libatk-1.0.so.0.3009.1
    b5bfe000-b5c02000 r-xp 00000000 08:05 525271     /usr/lib/libXfixes.so.3.1.0
    b5c02000-b5c03000 r-xp 00003000 08:05 525271     /usr/lib/libXfixes.so.3.1.0
    b5c03000-b5c04000 rwxp 00004000 08:05 525271     /usr/lib/libXfixes.so.3.1.0
    b5c04000-b5c06000 r-xp 00000000 08:05 525265     /usr/lib/libXdamage.so.1.1.0
    b5c06000-b5c07000 r-xp 00001000 08:05 525265     /usr/lib/libXdamage.so.1.1.0
    b5c07000-b5c08000 rwxp 00002000 08:05 525265     /usr/lib/libXdamage.so.1.1.0
    b5c08000-b5c0a000 r-xp 00000000 08:05 525261     /usr/lib/libXcomposite.so.1.0.0
    b5c0a000-b5c0b000 r-xp 00001000 08:05 525261     /usr/lib/libXcomposite.so.1.0.0
    b5c0b000-b5c0c000 rwxp 00002000 08:05 525261     /usr/lib/libXcomposite.so.1.0.0
    b5c0c000-b5c16000 r-xp 00000000 08:05 525999     /usr/lib/libpangocairo-1.0.so.0.2800.0
    b5c16000-b5c17000 r-xp 00009000 08:05 525999     /usr/lib/libpangocairo-1.0.so.0.2800.0
    b5c17000-b5c18000 rwxp 0000a000 08:05 525999     /usr/lib/libpangocairo-1.0.so.0.2800.0
    b5c18000-b5c20000 r-xp 00000000 08:05 525263     /usr/lib/libXcursor.so.1.0.2
    b5c20000-b5c21000 r-xp 00007000 08:05 525263     /usr/lib/libXcursor.so.1.0.2
    b5c21000-b5c22000 rwxp 00008000 08:05 525263     /usr/lib/libXcursor.so.1.0.2
    b5c22000-b5c28000 r-xp 00000000 08:05 525289     /usr/lib/libXrandr.so.2.2.0
    b5c28000-b5c29000 r-xp 00005000 08:05 525289     /usr/lib/libXrandr.so.2.2.0
    b5c29000-b5c2a000 rwxp 00006000 08:05 525289     /usr/lib/libXrandr.so.2.2.0
    b5c2a000-b5c36000 r-xp 00000000 08:05 525277     /usr/lib/libXi.so.6.1.0
    b5c36000-b5c37000 r-xp 0000c000 08:05 525277     /usr/lib/libXi.so.6.1.0
    b5c37000-b5c38000 rwxp 0000d000 08:05 525277     /usr/lib/libXi.so.6.1.0
    b5c38000-b5c3a000 r-xp 00000000 08:05 525279     /usr/lib/libXinerama.so.1.0.0
    b5c3a000-b5c3b000 r-xp 00001000 08:05 525279     /usr/lib/libXinerama.so.1.0.0
    b5c3b000-b5c3c000 rwxp 00002000 08:05 525279     /usr/lib/libXinerama.so.1.0.0
    b5c3c000-b5c4a000 r-xp 00000000 08:05 525269     /usr/lib/libXext.so.6.4.0
    b5c4a000-b5c4b000 r-xp 0000d000 08:05 525269     /usr/lib/libXext.so.6.4.0
    b5c4b000-b5c4c000 rwxp 0000e000 08:05 525269     /usr/lib/libXext.so.6.4.0
    b5c4c000-b5c50000 r-xp 00000000 08:05 264112     /opt/Adobe AIR/Versions/1.0/Resources/libpacparser.so
    b5c50000-b5c51000 rwxp 00003000 08:05 264112     /opt/Adobe AIR/Versions/1.0/Resources/libpacparser.so
    b5c51000-b5c82000 r-xp 00000000 08:05 525965     /usr/lib/libnspr4.so
    b5c82000-b5c83000 r-xp 00030000 08:05 525965     /usr/lib/libnspr4.so
    b5c83000-b5c84000 rwxp 00031000 08:05 525965     /usr/lib/libnspr4.so
    b5c84000-b5c86000 rwxp 00000000 00:00 0
    b5c86000-b5ca8000 r-xp 00000000 08:05 526131     /usr/lib/libsmime3.so
    b5ca8000-b5caa000 r-xp 00021000 08:05 526131     /usr/lib/libsmime3.so
    b5caa000-b5cab000 rwxp 00023000 08:05 526131     /usr/lib/libsmime3.so
    b5cab000-b5cda000 r-xp 00000000 08:05 526156     /usr/lib/libssl3.so
    b5cda000-b5cdc000 r-xp 0002e000 08:05 526156     /usr/lib/libssl3.so
    b5cdc000-b5cdd000 rwxp 00030000 08:05 526156     /usr/lib/libssl3.so
    b5cdd000-b5deb000 r-xp 00000000 08:05 525967     /usr/lib/libnss3.so
    b5deb000-b5dee000 r-xp 0010d000 08:05 525967     /usr/lib/libnss3.so
    b5dee000-b5df0000 rwxp 00110000 08:05 525967     /usr/lib/libnss3.so
    b5df0000-b5f14000 r-xp 00000000 08:05 526269     /usr/lib/libxml2.so.2.7.6
    b5f14000-b5f18000 r-xp 00123000 08:05 526269     /usr/lib/libxml2.so.2.7.6
    b5f18000-b5f19000 rwxp 00127000 08:05 526269     /usr/lib/libxml2.so.2.7.6
    b5f19000-b5f1a000 rwxp 00000000 00:00 0
    b5f1a000-b5f2d000 r-xp 00000000 08:05 130758     /lib/libz.so.1.2.3.3
    b5f2d000-b5f2e000 r-xp 00012000 08:05 130758     /lib/libz.so.1.2.3.3
    b5f2e000-b5f2f000 rwxp 00013000 08:05 130758     /lib/libz.so.1.2.3.3
    b5f2f000-b6076000 r-xp 00000000 08:05 264009     /opt/Adobe AIR/Versions/1.0/Resources/libcurl.so
    b6076000-b608e000 rwxp 00146000 08:05 264009     /opt/Adobe AIR/Versions/1.0/Resources/libcurl.so
    b608e000-b6092000 rwxp 00000000 00:00 0
    b6092000-b6095000 r-xp 00000000 08:05 263999     /opt/Adobe AIR/Versions/1.0/Resources/libeggtray.so
    b6095000-b6096000 rwxp 00002000 08:05 263999     /opt/Adobe AIR/Versions/1.0/Resources/libeggtray.so
    b6096000-b609e000 r-xp 00000000 08:05 525291     /usr/lib/libXrender.so.1.3.0
    b609e000-b609f000 r-xp 00007000 08:05 525291     /usr/lib/libXrender.so.1.3.0
    b609f000-b60a0000 rwxp 00008000 08:05 525291     /usr/lib/libXrender.so.1.3.0
    b60a0000-b60e0000 r-xp 00000000 08:05 525997     /usr/lib/libpango-1.0.so.0.2800.0
    b60e0000-b60e1000 ---p 00040000 08:05 525997     /usr/lib/libpango-1.0.so.0.2800.0
    b60e1000-b60e2000 r-xp 00040000 08:05 525997     /usr/lib/libpango-1.0.so.0.2800.0
    b60e2000-b60e3000 rwxp 00041000 08:05 525997     /usr/lib/libpango-1.0.so.0.2800.0
    b60e3000-b6154000 r-xp 00000000 08:05 525556     /usr/lib/libfreetype.so.6.3.22
    b6154000-b6158000 r-xp 00070000 08:05 525556     /usr/lib/libfreetype.so.6.3.22
    b6158000-b6159000 rwxp 00074000 08:05 525556     /usr/lib/libfreetype.so.6.3.22
    b6159000-b6187000 r-xp 00000000 08:05 525548     /usr/lib/libfontconfig.so.1.4.4
    b6187000-b6188000 r-xp 0002d000 08:05 525548     /usr/lib/libfontconfig.so.1.4.4
    b6188000-b6189000 rwxp 0002e000 08:05 525548     /usr/lib/libfontconfig.so.1.4.4
    b6189000-b62a2000 r-xp 00000000 08:05 525252     /usr/lib/libX11.so.6.3.0
    b62a2000-b62a3000 r-xp 00118000 08:05 525252     /usr/lib/libX11.so.6.3.0
    b62a3000-b62a5000 rwxp 00119000 08:05 525252     /usr/lib/libX11.so.6.3.0
    b62a5000-b62a6000 rwxp 00000000 00:00 0
    b62a6000-b62aa000 r-xp 00000000 08:05 522448     /usr/lib/libgthread-2.0.so.0.2400.1
    b62aa000-b62ab000 r-xp 00003000 08:05 522448     /usr/lib/libgthread-2.0.so.0.2400.1
    b62ab000-b62ac000 rwxp 00004000 08:05 522448     /usr/lib/libgthread-2.0.so.0.2400.1
    b62ac000-b6374000 r-xp 00000000 08:05 130694     /lib/libglib-2.0.so.0.2400.1
    b6374000-b6375000 r-xp 000c7000 08:05 130694     /lib/libglib-2.0.so.0.2400.1
    b6375000-b6376000 rwxp 000c8000 08:05 130694     /lib/libglib-2.0.so.0.2400.1
    b6376000-b63b3000 r-xp 00000000 08:05 522443     /usr/lib/libgobject-2.0.so.0.2400.1
    b63b3000-b63b4000 r-xp 0003c000 08:05 522443     /usr/lib/libgobject-2.0.so.0.2400.1
    b63b4000-b63b5000 rwxp 0003d000 08:05 522443     /usr/lib/libgobject-2.0.so.0.2400.1
    b63b5000-b63cd000 r-xp 00000000 08:05 532461     /usr/lib/libgdk_pixbuf-2.0.so.0.2000.1
    b63cd000-b63ce000 r-xp 00017000 08:05 532461     /usr/lib/libgdk_pixbuf-2.0.so.0.2000.1
    b63ce000-b63cf000 rwxp 00018000 08:05 532461     /usr/lib/libgdk_pixbuf-2.0.so.0.2000.1
    b63cf000-b6462000 r-xp 00000000 08:05 532459     /usr/lib/libgdk-x11-2.0.so.0.2000.1
    b6462000-b6464000 r-xp 00093000 08:05 532459     /usr/lib/libgdk-x11-2.0.so.0.2000.1
    b6464000-b6465000 rwxp 00095000 08:05 532459     /usr/lib/libgdk-x11-2.0.so.0.2000.1
    b6465000-b6833000 r-xp 00000000 08:05 532460     /usr/lib/libgtk-x11-2.0.so.0.2000.1
    b6833000-b6837000 r-xp 003ce000 08:05 532460     /usr/lib/libgtk-x11-2.0.so.0.2000.1
    b6837000-b6839000 rwxp 003d2000 08:05 532460     /usr/lib/libgtk-x11-2.0.so.0.2000.1
    b6839000-b683b000 rwxp 00000000 00:00 0
    b683b000-b749e000 r-xp 00000000 08:05 263976     /opt/Adobe AIR/Versions/1.0/libCore.so
    b749e000-b74fc000 rwxp 00c62000 08:05 263976     /opt/Adobe AIR/Versions/1.0/libCore.so
    b74fc000-b7516000 rwxp 00000000 00:00 0
    b7516000-b7533000 r-xp 00000000 08:05 130643     /lib/libgcc_s.so.1
    b7533000-b7534000 r-xp 0001c000 08:05 130643     /lib/libgcc_s.so.1
    b7534000-b7535000 rwxp 0001d000 08:05 130643     /lib/libgcc_s.so.1
    b7535000-b7559000 r-xp 00000000 08:05 130658     /lib/tls/i686/cmov/libm-2.11.1.so
    b7559000-b755a000 r-xp 00023000 08:05 130658     /lib/tls/i686/cmov/libm-2.11.1.so
    b755a000-b755b000 rwxp 00024000 08:05 130658     /lib/tls/i686/cmov/libm-2.11.1.so
    b755b000-b76ae000 r-xp 00000000 08:05 130609     /lib/tls/i686/cmov/libc-2.11.1.so
    b76ae000-b76af000 ---p 00153000 08:05 130609     /lib/tls/i686/cmov/libc-2.11.1.so
    b76af000-b76b1000 r-xp 00153000 08:05 130609     /lib/tls/i686/cmov/libc-2.11.1.so
    b76b1000-b76b2000 rwxp 00155000 08:05 130609     /lib/tls/i686/cmov/libc-2.11.1.so
    b76b2000-b76b5000 rwxp 00000000 00:00 0
    b76b5000-b76ca000 r-xp 00000000 08:05 130717     /lib/tls/i686/cmov/libpthread-2.11.1.so
    b76ca000-b76cb000 r-xp 00014000 08:05 130717     /lib/tls/i686/cmov/libpthread-2.11.1.so
    b76cb000-b76cc000 rwxp 00015000 08:05 130717     /lib/tls/i686/cmov/libpthread-2.11.1.so
    b76cc000-b76cf000 rwxp 00000000 00:00 0
    b76cf000-b77b8000 r-xp 00000000 08:05 526161     /usr/lib/libstdc++.so.6.0.13
    b77b8000-b77b9000 ---p 000e9000 08:05 526161     /usr/lib/libstdc++.so.6.0.13
    b77b9000-b77bd000 r-xp 000e9000 08:05 526161     /usr/lib/libstdc++.so.6.0.13
    b77bd000-b77be000 rwxp 000ed000 08:05 526161     /usr/lib/libstdc++.so.6.0.13
    b77be000-b77c5000 rwxp 00000000 00:00 0
    b77c5000-b77c7000 r-xp 00000000 08:05 130623     /lib/tls/i686/cmov/libdl-2.11.1.so
    b77c7000-b77c8000 r-xp 00001000 08:05 130623     /lib/tls/i686/cmov/libdl-2.11.1.so
    b77c8000-b77c9000 rwxp 00002000 08:05 130623     /lib/tls/i686/cmov/libdl-2.11.1.so
    b77c9000-b77cd000 rwxp 00000000 00:00 0
    b77cd000-b77ce000 r-xp 00000000 08:05 530744     /usr/lib/locale/es_CO.utf8/LC_NUMERIC
    b77ce000-b77cf000 r-xp 00000000 08:05 530552     /usr/lib/locale/es_CO.utf8/LC_TIME
    b77cf000-b77d0000 r-xp 00000000 08:05 530291     /usr/lib/locale/es_CO.utf8/LC_MONETARY
    b77d0000-b77d1000 r-xp 00000000 08:05 530540     /usr/lib/locale/es_CO.utf8/LC_MESSAGES/SYS_LC_MESSAGES
    b77d1000-b77d2000 r-xp 00000000 08:05 530342     /usr/lib/locale/es_CO.utf8/LC_PAPER
    b77d2000-b77d3000 r-xp 00000000 08:05 530535     /usr/lib/locale/es_CO.utf8/LC_NAME
    b77d3000-b77d4000 r-xp 00000000 08:05 530292     /usr/lib/locale/es_CO.utf8/LC_ADDRESS
    b77d4000-b77d5000 r-xp 00000000 08:05 530293     /usr/lib/locale/es_CO.utf8/LC_TELEPHONE
    b77d5000-b77d6000 r-xp 00000000 08:05 530338     /usr/lib/locale/es_CO.utf8/LC_MEASUREMENT
    b77d6000-b77dd000 r-xs 00000000 08:05 530625     /usr/lib/gconv/gconv-modules.cache
    b77dd000-b77de000 r-xp 00000000 08:05 530295     /usr/lib/locale/es_CO.utf8/LC_IDENTIFICATION
    b77de000-b77e0000 rwxp 00000000 00:00 0
    b77e0000-b77e1000 r-xp 00000000 00:00 0          [vdso]
    b77e1000-b77fc000 r-xp 00000000 08:05 134586     /lib/ld-2.11.1.so
    b77fc000-b77fd000 r-xp 0001a000 08:05 134586     /lib/ld-2.11.1.so
    b77fd000-b77fe000 rwxp 0001b000 08:05 134586     /lib/ld-2.11.1.so
    bf8e1000-bf8f5000 rwxp 00000000 00:00 0          [stack]
    bf8f5000-bf8f6000 rw-p 00000000 00:00 0
    ========================================= END =========================================
    /opt/Adobe AIR/Versions/1.0/libCore.so(+0x21e977) [0xb6a59977]
    /opt/Adobe AIR/Versions/1.0/libCore.so(+0x2131d5) [0xb6a4e1d5]
    [0xb77e0410]
    /lib/libglib-2.0.so.0(g_main_context_prepare+0x16e) [0xb62eaa8e]
    /lib/libglib-2.0.so.0(+0x3eee9) [0xb62eaee9]
    /lib/libglib-2.0.so.0(g_main_context_pending+0x67) [0xb62eb5d7]
    /usr/lib/libgtk-x11-2.0.so.0(gtk_events_pending+0x31) [0xb659c441]
    /opt/Adobe AIR/Versions/1.0/libCore.so(+0x2129de) [0xb6a4d9de]
    /opt/Adobe AIR/Versions/1.0/libCore.so(+0x2ad5c4) [0xb6ae85c4]
    /lib/libglib-2.0.so.0(+0x3bd5c) [0xb62e7d5c]
    /lib/libglib-2.0.so.0(g_main_context_dispatch+0x1d5) [0xb62e75e5]
    /lib/libglib-2.0.so.0(+0x3f2d8) [0xb62eb2d8]
    /lib/libglib-2.0.so.0(g_main_loop_run+0x187) [0xb62eb817]
    /usr/lib/libgtk-x11-2.0.so.0(gtk_main+0xb9) [0xb659c579]
    /opt/Adobe AIR/Versions/1.0/libCore.so(+0x8c9a5) [0xb68c79a5]
    /opt/Adobe AIR/Versions/1.0/libCore.so(+0x8cf3f) [0xb68c7f3f]
    /opt/Adobe AIR/Versions/1.0/libCore.so(AppInstallEntryMain+0x9f) [0xb68c819c]
    Adobe AIR Application Installer(main+0x1a5) [0x8048ba9]
    /lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xe6) [0xb7571bd6]
    Adobe AIR Application Installer() [0x8048971]

  • Air apps not working on Vista 64 bit since 1.5

    The Adobe Air 1.5 update went fine on my Vista 64 bit system,
    both apps (Thwirl and Spaz) worked fine. Then both apps released an
    update and they crash when attempting to update. Download manually
    the .air file and it can't find the software to open the file and
    will not install. Uninstall Air, reinstall Air. Go to Adobe's Air
    site and try to install any Air app, not a single one will install.
    Air shows up in Add/Remove Programs but now I cannot use a single
    Air application. Have installed (as administrator) and unstalled
    Air a few times, same result. The result I get when I try to
    install something from the Adobe site:
    "Something went wrong trying to install this application.
    Please install the latest version of Adobe Air"

    Unfortunately I can only generate a log for the Air install
    itself. Once Air 1.5 is installed and I try to install any Air
    Application, it fails immediately with the error message in my
    initial post. I created the .airappinstall.log following the
    procedures in kb403123 and echo was on when I went to the Thwirl
    site and clicked "Install Thwirl" and the error message comes up
    instantly and no data is added to .airappinstall.log. And when I
    download the .air file manually Windows cannot find Air at all to
    associate with the .air file. Here is the text from the fresh Air
    install I performed right before trying to install Thwirl (taken
    from the .airinstall.log file):
    Performing runtime install
    UI SWF load is complete
    UI initialized
    starting user confirmation
    Installation type: new
    starting elevated install
    subinstaller: starting install
    subinstaller: Scheduling runtime installation operations
    subinstaller: uninstall scheduled for 1.0.5, 1.0.4
    subinstaller: Installed Product GUID: is same:false
    subinstaller: Beginning runtime installation
    subinstaller: Beginning install
    subinstaller: Installing
    c:\users\brian\appdata\local\temp\air3489.tmp\setup.msi
    subinstaller: Execution complete; beginning commit phase
    subinstaller: Commit complete
    subinstaller: install complete
    subinstaller: begin quitting
    Elevated install completed
    begin quitting

  • MacBook Air superdrive not working 10.7.1

    Hello,
    I have been working on two Macbook Airs. One has 10.7.1 on it and the other had 10.7.0 on it. I can get the one with 10.7.0 to upload up the cd but not the 10.7.1. I updated the 10l.7.0 computer to 10.7.1 and now its having the same issue. I have tried connection the superdrive in both of the ports on the 2 computers. I tried another super drive and also go the same problem. Has anyone else seen this?
    Thanks,
    Topher Nadauld

    I can confirm this behavior. My suspicion is that Apple is using a non-standard implementation of the USB interface to power the DVD drive. I don't think that the USB spec provides enough power for the drive.
    The drive will not work in Mac OS X or Windows if it is plugged into a USB hub.
    Message was edited by: mike1234i

  • Macbook air speaker not working

    I recently discovered that the right speaker to my Macbook Air isn't working... I've tried:
    checking sliders in Sound System Preference
    checking MIDI Utility
    zapping the PRAM
    resetting all prefs (using Onyx)
    removing the bottom to look for a loose connection
    Nothing's worked - anybody got any clever ideas how I might fix this (and, no - I don't have extended AppleCare). Thanks!

         Reset SMC.     http://support.apple.com/kb/HT3964
       Choose the method for:
       "Resetting SMC on portables with a battery you should not remove on your own".
       If this does not help, contact Apple.
       Genius Bar reservation
       http://www.apple.com/retail/geniusbar/

  • Macbook Air clickers not working?

    suddenly, my Macbook Air clickers both (right and left) in the bottom of the Trackpad not working? Please help

    FYI, there is only one clicker in the middle of the trackpad. Getting debris down the side of the trackpad may cause this. You should consider calling Apple or carrying the computer in, it may need a repair.

Maybe you are looking for

  • Bag ground job 'Spool List Recipient'

    hi guys, there is any configuration for that background job <b>spool list recipient</b>, if there please replay me it was argent issue with my end Reg, Hariharan

  • HOW DO I PUT SONGS FROM ITUNES TO MY IPOD??..? HELP...PLEASE

    I WANT TO PUT SONGS TO MY IPOD BUT I DONT KNOW HOW BECAUSE I JUST DOWNLOADED ITUNES...PLEASE HELP..IM NOT REALLY GOOD AT THIS...

  • Photoshop CS5 tools not working

    Ok, I have taken a two classes at the University level previously, although I am quite rusty, but I haves watched no less than 10 tutorials today. I can't seem to get the basic functions to work right. Most importantly, I can't get the mask layer to

  • FTPEx: 550 Unexpected reply codeAccess denied in FTPS in PI 7.11

    Hi All, We are having same issue with the FTPS in our SAP PI systems. On the Target FTP server side we are using the Proftpd software for the FTPS installed and configuration on port 990 and generated Certificate on FTP Server using Proftpd software.

  • Explain Plan not working with 919, was working with 804

    Hi, Explain Plan (F6) was working cprrectly with Raptor 804 and is not working any more on 919. This is the same query exactly (select * from mytable). The server is 9.2.0.5.0. The result with 919 is "Invalid Column Name". Regards Eric