Air.trace() not working

Hi all,
Someone had a similar problem here: http://forums.adobe.com/thread/750219?tstart=0  They managed to solve it, I started adding to post but thought it best to start a brand new post.
I've tried what they've suggested and made a file called mm.cfg in my %HomeDrive%%HomePath% directory (c:\users\james) the contents of which are:
     ErrorReportingEnable=1
     TraceOutputFileEnable=1
     TraceOutputFileName=c:\logs\flashlogs.txt
     MaxWarnings=50
but I still don't get a log file from air.trace().  Though in C:\Users\James\AppData\Roaming\Macromedia\Flash Player  there's a file flashlog.txt with:
     Warning: Not a known player download type, app:/HelloWorld.html
I'm running Vista and I'm using AIRSDK 2.5.  I call my hello world  application from the command prompt with " adl HelloWorld-app.xml "  I  get a window of correct dimensions with " Hello World! " as expected, but  no console message.  What am I doing wrong please?  I've been looking  for about a day now at how to get the air.trace messages but neither  those nor the introspector statements work.
Thank you!!
James
The  4 files are in:
C:\AIRHelloWorld
The 4 files are:
HelloWorld-app.xml
HelloWorld.html
AIRAliases.js
AIRIntrospector.js
My  code for HelloWorld-app.xml and HelloWorld.html is below.   AIRAliases.js and AIRIntrospector.js  are copied straight from AIRSDK
HelloWorld-app.xml
<!-- Tutorial at: http://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7ecc.html -->
<application xmlns="http://ns.adobe.com/air/application/2.5">
    <id>examples.html.HelloWorld</id>   
    <versionNumber>0.1</versionNumber>   
    <filename>HelloWorld</filename>
    <initialWindow>
        <content>HelloWorld.html</content>
        <visible>true</visible>
        <width>240</width>
        <height>320</height>
    </initialWindow>
</application>
<!-- To RUN AND TEST the application get a console window (type cmd into search box of Windows vista)
type:
cd c:\AIRHelloWorld
When you have it in the directory of "c:\AIRHelloWorld" then type:
adl HelloWorld-app.xml
You'll get a window showing the app and also apparently the console window displays the
message resulting from the air.trace() call in the html, but I never see this -->
HelloWorld.html
<html>
<head>
    <title>Hello World</title>
    <!-- In the <head> section of the HTML, import the AIRAliases.js file: -->
    <script src="AIRAliases.js" type="text/javascript"></script>
    <script type="text/javascript" src="AIRIntrospector.js"></script>
    <!-- JavaScript function to handle the onLoad event:  -->
    <script type="text/javascript">
    function appLoad(){
        air.trace("Hello World - debug comment");  /*The appLoad() function simply calls
           the air.trace() function. The trace message print to the command
           console when you run the application using ADL. Trace statements
           can be very useful for debugging.*/
        air.Introspector.Console.log("Hello World - Introspector debug comment");
    </script>
</head>
<body on load="appLoad()">
    <h1>Hello World!</h1>
</body>
</html>

Hi Chris, on sdk 2.5, actually, also the Introspector doesn't seem to work. Tried:
<html>
    <head>
        <title>Source Viewer Sample</title>
        <script type="text/javascript" src="js/AIRAliases.js"></script>
        <script type="text/javascript" src="js/AIRIntrospector.js"></script>
        <script type="text/javascript">
            function logBtn()
                var button1 = document.getElementById("btn1");
                air.Introspector.Console.log(button1);
        </script>
    </head>
    <body>
        <p>Click to view the button object in the Console.</p>
        <input type="button" id="btn1"
            onclick="logBtn()"
            value="Log" />
    </body>
</html>
UPDATE: I didn't realize it was a different window that appears behind. It works then!

Similar Messages

  • 2.5 SDK getting started: air.trace() not working

    I don't know where to turn. I´ve followed the steps on this tutorial and air.trace doesn't work.
    I'm using Windows Vista and the command prompt to run the debugger. It starts the app but air.trace sends nothing to the command window.
    I've tried running cmd with admin privileges with no results. If I make a javascript alert {{  alert(air.trace)  }} it correctly says it's a function and testing a basic send-something-to-clipboard snippet works fine.
    Here's my code:
    <html>
    <head>
        <title>Hello World</title>
        <script type="text/javascript" src="air/AIRAliases.js"></script>
        <script type="text/javascript">
            function init(){
              // this works
           var copy = "A string to copy to the system clipboard.";
           air.Clipboard.generalClipboard.clear();
           air.Clipboard.generalClipboard.setData(air.ClipboardFormats.TEXT_FORMAT, copy);
              // this doesn't
              air.trace("anybody there?");
        </script>
    </head>
    <body onLoad="init()">
        <h1>hello world?</h1>
    </body>
    </html>
    Any ideas?

    Hi all,
    I'm running Vista, and using the command prompt but don't get any messages from air.trace().  I'm using AIRSDK 2.5 and call my hello world application from the command prompt with " adl HelloWorld-app.xml "  I get a window of correct dimensions with " Hello World " as expected, but no console message.  What am I doing wrong please?  I've been looking for about 2 hours now at how to get the air.trace messages but neither those nor the introspector statements work.
    Thank you,
    James
    The 4 files are in:
    C:\AIRHelloWorld
    The 4 files are:
    HelloWorld-app.xml
    HelloWorld.html
    AIRAliases.js
    AIRIntrospector.js
    My code for HelloWorld-app.xml and HelloWorld.html is below.  AIRAliases.js and AIRIntrospector.js  are copied straight from AIRSDK
    HelloWorld-app.xml
    <!-- Tutorial at: http://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7ecc.html -->
    <application xmlns="http://ns.adobe.com/air/application/2.5">
        <id>examples.html.HelloWorld</id>
        <versionNumber>0.1</versionNumber>   
        <filename>HelloWorld</filename>
        <initialWindow>
            <content>HelloWorld.html</content>
            <visible>true</visible>
            <width>240</width>
            <height>320</height>
        </initialWindow>
    </application>
    <!-- To RUN AND TEST the application get a console window (type cmd into search box of Windows vista)
    type:
    cd c:\AIRHelloWorld
    When you have it in the directory of "c:\AIRHelloWorld" then type:
    adl HelloWorld-app.xml
    You'll get a window showing the app and also apparently the console window displays the
    message resulting from the air.trace() call in the html, but I never see this -->
    HelloWorld.html
    <html>
    <head>
    <title>Hello World</title>
    <!-- In the <head> section of the HTML, import the AIRAliases.js file: -->
    <script src="AIRAliases.js" type="text/javascript"></script>
    <script type="text/javascript" src="AIRIntrospector.js"></script>
    <!-- JavaScript function to handle the onLoad event:  -->
    <script type="text/javascript">
    function appLoad(){
    air.trace("Hello World - debug comment");  /*The appLoad() function simply calls
        the air.trace() function. The trace message print to the command
        console when you run the application using ADL. Trace statements
        can be very useful for debugging.*/
    air.Introspector.Console.log("Hello World - Introspector debug comment");
    </script>
    </head>
    <body on load="appLoad()">
    <h1>Hello World</h1>
    </body>
    </html>

  • Html App: air.trace() not outputting to console... are Adobe still supporting html apps in AIR?

    Hi
    Just getting up and running
    Mac OS X 10.9. Adoe AIR 3.9. All working fine except air.trace() not outputting anything to the console.
    Bit of googling meant I created a mm.config in ~ with the line:
    ErrorReportingEnable=1
    but still no joy.
    Any other tips for getting this to work or is it just now broken and/or unsupported?
    Are HTML apps wrapped in AIR now legacy technology?

    I have the same question... I've been trying to get an Adobe AIR HTML app going, but there appears to be no IDE that supports debugging an HTML/JS AIR App, and fdb, which is supposed to be able to debug HTML/JS AIR apps, does not.
    Is HTML/JS still a supported way of developing Adobe AIR apps?  If so, then why aren't issues like this getting some attention?
      -Josh

  • 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.  

  • Trace not working when create air app in flash cs6

    hi
    when i compile air app in flash cs6 , trace function dont workk and flash cs6 dispatch error with this title: test movie lunch failed, please help me

    yeah, that happened to me, is not a compilation error is a popup that says "test lunch movie failed". I usually happened when the machine is saturated memory, and does not work well until after restart 

  • Trace not working in air / as3

    Hi, this may be something obvious but after installing adobe
    air, trace no longer works to my output window.
    I've checked the publish settings and 'omit traces' is
    unchecked.
    thanks

    Hi Trigon_15
    Same thing happend to me, suddenly trace stopt working, some sort of bug i believe
    how it occured i don't know, if added a new SDK, all worked perfect, 2 days later, it just
    stopped tracing.
    How i solved it?
    i've added the compiler argument (-compiler.debug=true) to the Compiler options of the project.
    In my case it's tracing again
    Hopes it will help you to!
    Regards,
    Marc
    ps. i'm using Flash Builder 4 with Flex SDK 4.1

  • New Apple ipad air display not working,please help?

    Please can anyone offer help? Week old ipad air display has stopped working after app froze and son double tapped home button to shut app down.Thank you in advance for any offers.

    If you are editing/testing in the Flash editor, the html end of things is nothing to be concerned about at this stage, and will likely take care of itself when it comes time.
    So you run the file in Flash and do not get any error messages?  Then place a trace command inside the button's event handler function to see if the button is communicating with it....
    function b_1ClickHandler(e:MouseEvent)
        trace("button works");           
         navigateToURL(new URLRequest("http://www.MYURL.com/.html"),"_self");
    Also, I'm just noticing you don't have an actual file named in the url, so in case the "not working" is that you can't get the desired page to show, that may be the cause.  Normally I would suggest testing url links online rather than in Flash because it's iffy to try to get the web involved with the editor at times.

  • 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

  • Graphic in a lable possible? &  Clear backgound Clippings possible?

    Hello! Hope you are all well today. How do I put a graphic into a lable layout? If that can be done, how do you use it with a database? I am trying to make company return address labels with the company logo on them. I made a database that repeats ou

  • Display BLOB File (pdf format) from database inside Oracle Form (6i)

    hi all. Apologies for a primitive question owing to the fact that i m new to development. I have a requirement to display a pdf document with in an oracle form. i want to know is there any such control for that? or any hint how to go about it? thanks

  • Do i have to reinstall photoshop, after install the new os x mavericks?

    I'm currently using Mountain Lion. If I upgrade to the new Mavericks, do I have to reinstall programs like Adobe softwares and Microsoft Offices? Cause I'm currenly using a lot of software on my MacBook, like Photoshop and SketchUp. It will be a hass

  • Exactly what is needed...

    Post Author: jeff.schertzer CA Forum: Crystal Reports Hello, My product uses Crystal 11, we do basic reporting, excel exporting, and some graphing.  My question is this:  Exactly what is needed from crystal to get those 3 functions working?  Right no

  • Version Control System to Storage BIG Design Files

    I am designing the architect of a version control system to store big design files across an enterprise. Most of files are ~10MB. But some files (Multi-media) are as big as ~500MB. The employee number is around 3000. The service will be used quite of