[SOLVED (Arch is a great community)] Thinkpad x220 does not power off

My thinkpad x220 does not power off, it goes through the whole shutdown process as expected until reaching the last step where it displays "> POWER OFF" and just sits there until the battery is empty or I force the power off by using the power button.
I don't know what's wrong or where to start looking for clues.
The same happens when rebooting, it displays "> REBOOTING" and sits there.
Occasionally on reboot attempts I have additional messages from iwlwifi:
iwlwifi 0000:03:00.0: Queue 9 stuck for 10000 ms.
iwlwifi 0000:03:00.0: Current read_ptr 28 write_ptr 29
iwlwifi 0000:03:00.0: On demand firmware reload
iwlwifi 0000:03:00.0: Could not load the INST uCode section
iwlwifi 0000:03:00.0: Failed to start RT ucode: -110
iwlwifi 0000:03:00.0: Unable to initialize device
-edit-
Not sure if this could be related but my thinkpad has the particularity of having a renice x3 mSATA SSD that I installed myself.
Last edited by kazimir (2012-03-14 20:59:16)

This is what you're looking for : https://bugzilla.kernel.org/show_bug.cgi?id=33872
I've had this issue before, also on my X220. The solution was to remove the e1000e driver before shutdown. I've placed a command that does something like "rmmod e1000e" in a configuration file that runs it on shutdown, and it fixed the problem. I forget where this file is though... Hopefully someone else can fill the gap =]
Last edited by bolshevik (2012-03-14 07:13:57)

Similar Messages

  • [Solved] System does not power off, hangs at "System Halted"

    Not sure if this is systemd or kernel related, and after the recent round of upgrades it happens on one of my computers and not the other.
    I'm using systemd and do have systemd-sysvcompat installed, but no daemons are started with initscripts.
    When I power off from the KDE desktop using the poweroff icon in the tray, it gets to the point where it says "System Halted" on the console screen
    but the computer does not power off. If I power off using the physical power button on the computer, exactly the same thing happens.
    However, if I power off using "sudo systemctl start poweroff.target" it works perfectly.
    How can I get it to work properly again in KDE or if I hit the power button? Why does it work perfectly on one computer but not the other?
    Last edited by Zamboniman (2012-11-10 03:41:24)

    Okay, this has now been solved. Thanks are due to bgc1954 and Trillby for pointing me in the right direction. Very much appreciated.
    My search ability, usually very good, completely failed me on this one. However, a few hints was all I needed.
    For the record:
    To make the power button poweroff instead of halt: edit /etc/systemd/logind.conf and uncomment HandlePowerKey and make sure its value is set to poweroff.
    To make kde poweroff properly, edit /usr/share/config/kdm/kdmrc and look for the [Shutdown] section. Ensure HaltCmd is uncommented and set to /sbin/poweroff.
    As to why the behaviour was different on my other computer, for some reason the relevant kdmrc entry on that computer was commented out. Apparently that makes it work correctly. I don't know why they were different, as I don't recall changing either.

  • Thinkpad X220 Laptop not detecting dock's optical drive

    I have run into a situation where a Thinkpad X220 laptop is docked and the video, usb, etc. ports all work normally, but the optical drive is not powered on or detected (at BIOS or in Windows). I docked a different X220 laptop on the same dock (with the same optical drive) and not only do all the ports work fine, but the optical drive is powered and detected normally as well. I have used canned air on the dock port of the laptop to no avail. Is there anything I can do other than have the laptop replaced?

    Made sure everything is updated?
    Owner of: ThinkPad SL510, X131e, X230 (not fond of)
    Other systems: MSI GT640, Sony Vaio PCG 709K, Dell Latitude D430,

  • SOLVED: Mounting IDE ZIP Drives, "Special Device hdb4 Does Not Exist"

    I thought I would post a follow-up, since I have finally resolved this long standing issue, which has plagued me since my first days with Linux many years ago.
    As outlined in my original post below, every time I would attempt to access a Zip disk for the first time since boot, Linux (pretty much all distros I have ever tried, with the exception of SuSE 9.3) would fail to mount the disk and report back that "Special device hdb4 does not exist". Of course the "hdb4" part varies from distro to distro and machine to machine, depending on how your Zip disk is connected and how the distro names its disks, but the basic error has been constant. I have always worked around it by redoing the mount command specifying just the device, not the partition, and while that would always fail, it would force the creation of the device /dev/hdb4, and I could carry on. Annoying but effective.
    FINALLY, a long term answer. I got my inspiration from a really snarky post I read in another online forum where someone had posted this very same question (this is a very common problem with no common answer it seems!). The respondant, who completely failed to provide a helpful answer, basically said "listen, the OS is telling you what is wrong - the device hdb4 doesn't exist - so fix it, and all will be just fine". Of course, the respondant didn't even bother to offer a suggestion about HOW to fix it.
    However, therein lies the inspiration for the solution. Indeed they are right, /dev/hdb4 *doesn't* exist, so how to fix that? They had a point. I started researching the mysteries of mknod, a program that can create /dev files, and the even deeper mysteries of Linux device numbers, both major and minor.
    In the end, I found a wonderfully informative document that described the current standard for the device numbering scheme used by mknod, and Linux in general. The key things of interest are this:
    1/ The major number for IDE based drives is 3.
    2/ IDE allows for 64 partitions per device, so the minor numbers are 0-63 for device "a", 64-127 for device "b" and so on. You derive the minor number of interest for your particular device by taking the starting value of the minor number range of interest for your device and adding the partition number to it. So, for example, hdb4 would have a minor number of 64 (the start of the minor number range for device "b") plus 4 (the partition number in "hdb4"), yielding a result of 68.
    3/ The major number for SCSI based drives, or those that your OS treats as SCSI, is 8.
    4/ SCSI allows for 16 partitions per device, so the minor numbers are 0-15 for device "a", 16-31 for device "b" and so on. You derive the minor number of interest for your particular device by taking the starting value of the minor number range of interest for your device and adding the partition number to it. So, for example, sdb4 would have a minor number of 16 (the start of the minor number range for device "b") plus 4 (the partition number in "hdb4"), yielding a result of 20.
    In my case, Arch seems to be treating all of my disk based devices as SCSI, perhaps because I do have a real SCSI interfaced Jaz drive in my machine. So, the Zip disk of interest in my machine is sdc4 (my real SCSI jaz is sda, my Arch root is sdb, and the IDE Zip is sdc). Applying the above, for /dev/sdc4:
    - The major number is 8.
    - The minor number is 32 (start of range for device "c") plus 4 (the partition number) = 36.
    Armed with this knowledge, I su'd to root and entered:
    # mknod /dev/sdc4 b 8 36
    and like magic, there is was, /dev/sdc4. I popped a disk into the drive and my first attempt to access it was greeted with success, not the usual "device does not exist" error! By the way, the "b" in the above command is just part of the mknod syntax, and indicates that I am creating a block device (vs. a character device, or some other type of device - disk drives all seem to be "block" devices for apparent reasons).
    SO, determine your major number by device type (it will usually be 3 or 8), compute your minor number by device letter and partition number, and add a mknod command to your system startup (so you don't have to do it manually every time) and you are done! No more annoying "device does not exist" errors.
    Now for the kicker. It turns out that this information has been available under my nose all along. I just didn't recognize the code. If you do the following:
    # ls -ald /dev/sd*
    Linux obligingly provides you with the major number and the start of the minor number range for your device. Since Linux has always detected the Zip *device* (just not the partition) this is really all you need to know. When I issue the above command, I get an output like:
    brw-rw----  1  root  disk  8,   32   date   time   /dev/sdc
    Guess what, there they are! "8" is the major number of interest, "32" is the start of the minor number range of interest. If I had just recognized that, and known that all I had to do was add the partition number to the minor number to get the magic number to feed into mknod, things would have been easier.
    Sorry for the long post, but like so many things in Linux, the OS doesn't make this easy on the uninitiated. I sincerely hope that this post may help lots of other people to resolve this vexing and longstanding problem.

    Solved!
    See the lengthy response in this post:
    http://bbs.archlinux.org/viewtopic.php?id=36468
    I posted the solution separately, with the most informative title I could come up with, so that others Googling this topic on the web may hopefully easily find it.

  • [SOLVED] PowerDNS (pdns) - SQLite database '...' does not exist yet

    PowerDNS 3.2-5 is having some issues connecting to my backend database (sqlite3).
    beta powerdns # tail /var/log/errors.log
    May 7 20:12:41 localhost pdns[19098]: Caught an exception instantiating a backend: Unable to launch gsqlite3 connection: SQLite database '/etc/powerdns/database.sqlite' does not exist yet
    But when i do:
    beta powerdns # sqlite3 /etc/powerdns/database.sqlite
    SQLite version 3.7.16.2 2013-04-12 11:52:43
    Enter ".help" for instructions
    Enter SQL statements terminated with a ";"
    sqlite> select * from domains;
    1|<myhostname>|||NATIVE||
    sqlite>
    sqlite3 It fetches the records and domains to my liking but not PowerDNS.
    Same thing goes for a blank db without any domains or records, i can query it but not PowerDNS.
    Followed this guide in order to setup the proper tables and columns: http://doc.powerdns.com/html/gsqlite.html#idp9379264
    (without the DNSSEC part, i'll give that a go later on)
    It obviously loads the sqlite3 module, and tries to connect to the backend, which doesn't work, so the ArchLinux package is fine i'm guessing.
    More info:
    * Link to package: https://www.archlinux.org/packages/comm … 6_64/pdns/
    * chmod == 777
    * chown == nobody:nobody (and tried root:root as default)
    * running as root (not pdns)
    Last edited by Torxed (2013-05-08 10:52:05)

    Solved it.
    The guides are vague in this regard but once you've just read the config twice you'll understand the logic.
    First of all, no absolute paths for sqlite3, it should be:
    launch=gsqlite3
    gsqlite3-database=database.sqlite
    Secondly, find your chroot, and point it to your database location or put your database here (whichever):
    chroot=/var/empty
    The folder structure should be:
    /var/empty/database.sqlite
    And this py pointing to ./database.sqlite when starting sqlite3 in pdns, it should be able to lock on to the database.
    Peachy!

  • [SOLVED] /usr/lib/aspell-0.60/xray.cset does not exist...

    Update:
    I'd still like to understand what this /usr/lib/aspell-0.60/xray.cset file is all about. But apearantly I don't really need it. I fired up my xubuntu installation to spellcheck the LyX document. And because the  ~/.aspell.en.pws on Arch had more added words in it I was about to copy it over the Xubuntu copy... Fortunately I compared them first and noticed that the working Xubuntu  ~/.aspell.en.pws  was a 212 line file beginning with "personal_ws-1.1 en 211" (evidently reflecting the number of words @ 1 per line) while the broken ~/.aspell.en.pws on Arch was a 299 line file beginning with "personal_ws-1.1 en 299 xray" Considering I had recently deleted one word/line from it the only part that didn't make sense was the word xray... changed that line to "personal_ws-1.1 en 298" and aspell is working again.
    But I still don't know where the word "xray" came from, nor why aspell thought it meant there should be an "/usr/lib/aspell-0.60/xray.cset" file... ???????
    End Update (Original post below)
    I think I did something stupid... And it broke aspell.
    What I did was: I was spellchecking a LyX document (which uses aspell) and
    I accidentally added a misspelled word. Whenever I've done that in the past
    I simply opened my ~/.aspell.en.pws with vim, and deleted the misspelled
    word from the list. But this time I'd been using aspell indirectly and
    while I closed LyX's pop-up spellchecking utility before I switched to a
    terminal window, I didn't close LyX itself. (I didn't think it would matter
    as long as it wasn't actively spellchecking at the time...) Well I got rid
    of the misspelled word OK. When I switched back to LyX every thing seemed
    to work normally until I pressed <F7> to start up the spellchecker again.
    At that point LyX crashed...
    When I try to use aspell from the command line in a terminal window I get
    this:
    JtWdyP -> /home/jtwdyp/tmp
    >
    JtWdyP -> /home/jtwdyp/tmp
    > echo "test txt a tst file" > test.txt
    JtWdyP -> /home/jtwdyp/tmp
    > aspell -c test.txt
    Unhandled Error: The encoding "xray" is not known. This could also mean that the file "/usr/lib/aspell-0.60/xray.cset" could not be opened for reading or does not exist.
    Aborted
    JtWdyP -> /home/jtwdyp/tmp
    > ls /usr/lib/aspell-0.60/xray.cset
    ls: cannot access /usr/lib/aspell-0.60/xray.cset: No such file or directory
    JtWdyP -> /home/jtwdyp/tmp
    >
    I've tried logging into my root account and:
    UnderTree =->
    UnderTree =-> pacman -S aspell
    warning: aspell-0.60.6-4 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): aspell-0.60.6-4
    Total Download Size: 0.00 MB
    Total Installed Size: 3.79 MB
    Proceed with installation? [Y/n] y
    checking package integrity...
    (1/1) checking for file conflicts [##########################] 100%
    (1/1) upgrading aspell [##########################] 100%
    UnderTree =->
    But aspell still fails with the same error, and the file:
    /usr/lib/aspell-0.60/xray.cset
    still doesn't exist...
    Next it occurred to me that for all I know, reinstalling with "pacman -S"
    might not be as complete as installing a new package so I thought that if I
    removed aspell first, I might be able to get a cleaner install...
    UnderTree =->
    UnderTree =-> pacman -R aspell
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: aspell-en: requires aspell
    :: enchant: requires aspell
    :: lyx: requires aspell
    UnderTree =->
    I'm not so sure I want to remove enchant & lyx to test that theory...
    So I guess I gotta ask, how do I go about getting a replacement
    "/usr/lib/aspell-0.60/xray.cset" file????
    jtwdyp
    J(tWdy)P
    Joe(theWordy)Philbrook
    Last edited by jtwdyp (2010-11-10 17:20:19)

    ukhippo wrote:Have you tried using “-t nat” instead of “-t NAT” in your iptables command?
    I hate you, and I love you (with emphasis on the love)...
    That did it, stupid spelling mistake trying to use NAT, bah Thank you!
    Last edited by Torxed (2014-06-04 17:52:07)

  • X220 - does not start

    hi have a new x220.
    after programming whole last day, i tried this morning to start up the laptop again. 
    but it does not work. 
    first i pressed the power button and the green power light was going on and after less than 1 sec it was out again, like the whole machine. 
    i removed the battery, does not start - after leaving it out for 10 min and trying the whole process again. 
    the machine was powered on but the display was not working. 
    after a hard power off, somestimes the power button was blinking when i tried to start the laptop.
    can anybody help me out whats wrong with the machine?

    First some questions to get a clue about your problem:
    Can you get another power adaptor to eliminate it as the source of the error?
    Did you notice something special while programming or at the time you shut your system down? (system errors, strong heat, strange noises)
    What do you mean by "the screen is not working"? Do still see the subtle change of the backlight when powering on? 
    Does the fan start spinning?
    Have you tried several combinations like w/ battery + w/o power adapter, w/ battery + w/ power connector or w/o battery + w/ power connector?
    Have you tried to remove your harddrive and then power up your system? (it should only go as far as harddrive detection)
    Do you have one or two RAM modules? If you have two try to remove them by turns.
    Have you discharged your battery to 0%? (a deep discharge can prevent a recharge sometimes)
    Using x230t (i5-3320M, 8GB RAM, 256GB SSD, 80GB mSata-SSD) and loving it!
    "I may not own the world but I own my mind and therefore the world is at my feets." (me)

  • Communicator 2007 r2 does not save chat history in outlook 2013

    hi ,
    i was using win7 64 bit enterprise edition with outlook 2010 & communicator 2007 r2, whatever i chat everything would be saved in conversation History automatically and every
    was fine. i recently migrated to windows 8 64 bit enterprise edition with outlook 2013 & communicator
    2007 r2. Issue : my chat history does not saves in conversation history , when i click on tools >> option >> personal information manager, is degraded.
    if i try to save it manually that is also grade out.
    can anyone please help to fix this.
    Regards,
    Raghavendra R

    Hi,
    Please make sure you have installed the latest version of communicator.
    I want to confirm if the option has been selected even the PIM section is grayed out.
    Please try to repair Office to test the issue.
    Kent Huang
    TechNet Community Support

  • Lenovo ThinkPad X220 will not charge when in use

    I have a quesiton I have not found an answer to.
    Will the X220 charge the battery, when plugged into the 90W charger (42T4430), if the computer is in use?  I used my computer on battery for a few hours, drained the battery to 30%.  Then I went inside to plug it in and keep working.  After 4 hours of working, and it plugged in to the wall the battery still indicates 30%.
    The same thing happened when I was using my docking station.  I arrived at work yesterday with 76% battery.  After 8 hours on the docking station, I still indicated 76% battery life. 
    My previous (other major name brand) laptops all would charge even if I was working on the laptop.  Is the X220 different by design?  Do I have to shut down and plug in to recharge?
    Solved!
    Go to Solution.

    I figured it out.   I took the battery out and put it back in.  Ding Ding Ding  That worked, now it is charging.  How in the world did it work off the battery if it was not plugged in tight enough to charge??? Oh well, it works again.  Thanks

  • [SOLVED]wlan0 connects to wireless network, but internet does not work

    I have a Compaq Presario A900 laptop just installed Arch on it, went through the wireless Wiki and also checked this thread: http://bbs.archlinux.org/viewtopic.php?id=65467 (similar issue but I don't use any proxy). It has Broadcom card, 4311 Rev 02. I tried both the b43-firmware and broadcom-wl AUR packages and b43 works with my card.
    I have tried with the shell to connect but "iwlist wlan0 scan" always returns no results. (Yes, I did try ifconfig eth0 down first as well before bringing wlan0 up). So I have tried wicd and it worked to connect me to my wireless network which uses WPA, and signal shows ~80% strength, however ping google.ca, nothing works as far as connected to the net.
    Any output I should show I will if I have forgotten, thanks very much for your help!
    Last edited by colbert (2009-05-27 00:40:48)

    Thanks for your help hokasch, however it was a result of needing to reboot and have proper daemon in rc.conf, and it has been working great last few days Thanks!

  • Help!!  iChat Communication Error: AV Does Not Work!!

    I just purchased a iMac and Macbook, converting from PC. I have desperately tried to get iChat to work to talk to my children while traveling. I set up an AIM account for my iMac at home under my kids logon (since I can't talk to myself). I use my .Mac account on my Macbook. I have searched the forums and changed my ichat and Quick Time settings as specified. Whether I attempt to call my family from my Macbook or they try to call me from my iMac, I cannot get iChat AV to work. We get the ring and answer the call, but it ends and I get "There was a communication error during your chat."
    Please help. This was one of the reasons I converted to Mac.
    Here is my log. (Before: Binary Images Description for "iChat":):
    Date/Time: 2007-12-14 15:26:40.700 -0700
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 3778388888.
    [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    0x15154e20: State change from AVChatNoState to AVChatStateInvited.
    0x15154e20: State change from AVChatStateInvited to AVChatStateConnecting.
    [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    0x15154e20: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:

    I have the same error. I'm trying to video chat with my brother who has the exact same computer as me and we are both on home networks with no firewall and plenty of abandwith... Heres the error.. Already tried changing port to 443 and doing quicktime stream
    Date/Time: 2007-12-23 13:50:00.722 -0800
    OS Version: 10.5.1 (Build 9B18)
    Report Version: 4
    iChat Connection Log:
    2007-12-23 13:49:23 -0800: AVChat started with ID 1025414969.
    2007-12-23 13:49:23 -0800: arnst191: State change from AVChatNoState to AVChatStateWaiting.
    2007-12-23 13:49:23 -0800: 0x19178110: State change from AVChatNoState to AVChatStateInvited.
    2007-12-23 13:49:31 -0800: 0x19178110: State change from AVChatStateInvited to AVChatStateConnecting.
    2007-12-23 13:49:31 -0800: arnst191: State change from AVChatStateWaiting to AVChatStateConnecting.
    2007-12-23 13:49:51 -0800: 0x19178110: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-12-23 13:49:51 -0800: 0x19178110: Error -8 (Did not receive a response from 0x19178110.)
    2007-12-23 13:49:51 -0800: arnst191: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-12-23 13:49:51 -0800: arnst191: Error -8 (Did not receive a response from 0x19178110.)
    Video Conference Error Report:
    157.581824 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    159.583946 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    141.396462 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    149.562930 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    149.564249 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    155.581108 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK5a1d2e5e31befc59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1187275023
    Call-ID: f4dbb06c-b1a0-11dc-a5f3-810eba9c4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 725
    v=0
    o=arnstein 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    156.082350 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK5a1d2e5e31befc59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1187275023
    Call-ID: f4dbb06c-b1a0-11dc-a5f3-810eba9c4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 725
    v=0
    o=arnstein 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    157.083109 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK5a1d2e5e31befc59
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1187275023
    Call-ID: f4dbb06c-b1a0-11dc-a5f3-810eba9c4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 725
    v=0
    o=arnstein 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    157.582773 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5dbef56061bd013e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1920655706
    Call-ID: f60d1d90-b1a0-11dc-a5f3-cfeaab0e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 727
    v=0
    o=arnstein 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    158.084153 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5dbef56061bd013e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1920655706
    Call-ID: f60d1d90-b1a0-11dc-a5f3-cfeaab0e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 727
    v=0
    o=arnstein 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    159.084678 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5dbef56061bd013e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1920655706
    Call-ID: f60d1d90-b1a0-11dc-a5f3-cfeaab0e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 727
    v=0
    o=arnstein 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1092:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3222546778
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1467335875
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    159.612478 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    Binary Images Description for "iChat":
    0x1000 - 0x230fff com.apple.iChat 4.0 (601) /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x311fff com.apple.Bluetooth 2.0 (2.0f20) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x35d000 - 0x4aefff com.apple.viceroy.framework 343.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x51c000 - 0x55bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x57d000 - 0x596fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5b0000 - 0x5e9fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5f9000 - 0x60dfff com.apple.ScreenSaver 2.0 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x61d000 - 0x63bfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x643000 - 0x674fff com.apple.iChatCommonGUI 4.0 (601) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x69b000 - 0x69efff com.apple.BezelServicesFW 1.4.533 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6e9000 - 0x6eefff com.apple.iChat.Styles.Balloons 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x119e3000 - 0x119e6fff com.apple.iChat.Styles.Boxes 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x119ed000 - 0x119f3fff com.apple.iChat.Styles.Compact 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x119fb000 - 0x119fdfff com.apple.iChat.Styles.Text 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x1492f000 - 0x14a15fff com.apple.RawCamera.bundle 2.0 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14a24000 - 0x14a29fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x14aa8000 - 0x14ac4fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x162c5000 - 0x16446fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16474000 - 0x166dafff com.apple.ATIRadeonX1000GLDriver 1.5.18 (5.1.8) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x177dc000 - 0x177e5fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x17878000 - 0x1787bfff com.apple.LiveType.component 2.1.2 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x17880000 - 0x178e5fff com.apple.LiveType.framework 2.1.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x17905000 - 0x17976fff com.DivXInc.DivXDecoder 6.2.5 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x17984000 - 0x17987fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1798d000 - 0x17992fff com.apple.audio.AppleHDAHALPlugIn 1.4.0 (1.4.0a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x17997000 - 0x179d2fff com.apple.QuickTimeFireWireDV.component 7.3.1 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x179dd000 - 0x17a0afff com.apple.QuickTimeIIDCDigitizer 7.3.1 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x17a15000 - 0x17a5ffff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x17abe000 - 0x17c4bfff com.apple.audio.codecs.Components 1.6 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x17c76000 - 0x17c76fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x17cae000 - 0x17caefff liblangid.dylib /usr/lib/liblangid.dylib
    0x17d3d000 - 0x17d3efff com.apple.iChat.PersonIconPlugIn 1.0 (601) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x18635000 - 0x1863cfff com.apple.JavaVM 12.0.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x19305000 - 0x19315fff com.apple.DVCPROHDVideoDigitizer 1.2 /Library/QuickTime/DVCPROHDVideoDigitizer.component/Contents/MacOS/DVCPROHDVide oDigitizer
    0x1932d000 - 0x19374fff com.apple.DVCPROHDMuxer 1.2 /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x19f7d000 - 0x19f8ffff com.apple.FCP Uncompressed 422.component 1.4 /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x19f95000 - 0x19f9afff com.apple.DesktopVideoOut 1.2.4 /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x19f9f000 - 0x19fa2fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1a466000 - 0x1a482fff com.apple.QuartzComposer.ExtraPatches 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1a494000 - 0x1a4b1fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1a51c000 - 0x1a529fff com.apple.QuartzComposer.Backdrops 1.0 (1) /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90127fff com.apple.audio.toolbox.AudioToolbox 1.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90128000 - 0x90157fff com.apple.AE 402 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90158000 - 0x9066efff com.apple.WebCore 5523.10.5 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9067d000 - 0x90699fff com.apple.IMFramework 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9069a000 - 0x906a1fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x906a2000 - 0x906fcfff com.apple.CoreText 2.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x906fd000 - 0x90857fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90858000 - 0x90866fff libz.1.dylib /usr/lib/libz.1.dylib
    0x90867000 - 0x90868fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90869000 - 0x908abfff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x908ac000 - 0x908cffff com.apple.CoreMediaPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x908d0000 - 0x90902fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90903000 - 0x90971fff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x90972000 - 0x909b6fff com.apple.DirectoryService.PasswordServerFramework 3.0.1 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x909b7000 - 0x909b7fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x909b8000 - 0x90a4bfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90a4c000 - 0x90a51fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90a52000 - 0x90a6dfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90a6e000 - 0x90ba4fff com.apple.imageKit 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90ba5000 - 0x90bb8fff com.apple.IMUtils 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x90bb9000 - 0x90c2dfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90c2e000 - 0x90cdefff edu.mit.Kerberos 6.0.11 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90cdf000 - 0x90d69fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90d6a000 - 0x91401fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x91402000 - 0x91402fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x91403000 - 0x91407fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91408000 - 0x9149afff com.apple.ApplicationServices.ATS 3.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9149b000 - 0x914e8fff com.apple.datadetectorscore 1.0 (52.11) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x914e9000 - 0x91560fff com.apple.CFNetwork 220 (221) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91561000 - 0x91569fff com.apple.DiskArbitration 2.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x915a8000 - 0x915cffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x915d0000 - 0x915eefff com.apple.QuickLookFramework 1.0.1 (168.1) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x915ef000 - 0x915effff com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x915f0000 - 0x915f0fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x915f1000 - 0x9164efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x9164f000 - 0x916dbfff com.apple.LaunchServices 286 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x916dc000 - 0x91709fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9170a000 - 0x91722fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91723000 - 0x9179ffff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x917a0000 - 0x9180ffff com.apple.PDFKit 2.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x91810000 - 0x91ba6fff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91ba7000 - 0x91c62fff com.apple.WebKit 5523.10.5 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91c63000 - 0x91c72fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x91c73000 - 0x91ca9fff com.apple.SystemConfiguration 1.9.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91caa000 - 0x91d35fff com.apple.QTKit 7.3.1 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91d36000 - 0x91d54fff com.apple.DirectoryService.Framework 3.5 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91d55000 - 0x91e0bfff com.apple.CoreServices.OSServices 210.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91e0c000 - 0x91e48fff com.apple.CoreMediaIOServicesPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x91e49000 - 0x92004fff com.apple.QuartzComposer 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92005000 - 0x920aefff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x920af000 - 0x9210bfff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9210c000 - 0x9211bfff com.apple.DSObjCWrappers.Framework 1.2 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9211c000 - 0x9211cfff com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9211d000 - 0x9224ffff com.apple.CoreFoundation 6.5 (476) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92345000 - 0x9238ffff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92390000 - 0x9242efff com.apple.QuickTimeImporters.component 7.3.1 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x92439000 - 0x9274afff com.apple.QuickTime 7.3.1 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9274b000 - 0x92781fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x92782000 - 0x92849fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9284f000 - 0x928f6fff com.apple.QD 3.11.50 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x928f7000 - 0x928fefff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x928ff000 - 0x92915fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92916000 - 0x9291bfff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9291c000 - 0x9291cfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92929000 - 0x929dbfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x929dc000 - 0x929e7fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x929e8000 - 0x929e8fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x929e9000 - 0x92a35fff com.apple.QuickLookUIFramework 1.0.1 (168.1) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92a36000 - 0x92e46fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92e47000 - 0x92e48fff libffi.dylib /usr/lib/libffi.dylib
    0x92e49000 - 0x93207fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93208000 - 0x93215fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93216000 - 0x932f5fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x932f6000 - 0x9333bfff com.apple.Metadata 10.5.0 (398) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9333c000 - 0x93474fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x93475000 - 0x934b2fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x934b3000 - 0x9372cfff com.apple.Foundation 6.5.1 (677.1) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93a76000 - 0x93adbfff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93adc000 - 0x93b2cfff com.apple.HIServices 1.6.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93b2d000 - 0x93b2ffff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93b30000 - 0x93b36fff com.apple.print.framework.Print 218 (220) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93b37000 - 0x93b90fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93b9e000 - 0x93c7ffff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x93c80000 - 0x93c97fff com.apple.datadetectors 1.0 (66.0) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x93c98000 - 0x93c9afff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93c9b000 - 0x93cabfff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93cac000 - 0x93ce5fff com.apple.securityfoundation 3.0 (32768) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93ce6000 - 0x93cf7fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x93cf8000 - 0x93d03fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93d04000 - 0x93d8bfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x93d8c000 - 0x93d93fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x93d94000 - 0x93ed9fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93eda000 - 0x93f0bfff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93f0c000 - 0x94d8dfff com.apple.QuickTimeComponents.component 7.3.1 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94d8e000 - 0x94dadfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94dae000 - 0x94dd2fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x94dd3000 - 0x94dd7fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x94dd8000 - 0x952a4fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x952a5000 - 0x952a5fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x952a6000 - 0x952bafff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x952bb000 - 0x95386fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95387000 - 0x95397fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95398000 - 0x953d2fff com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x953d3000 - 0x956d9fff com.apple.HIToolbox 1.5.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9570a000 - 0x957eefff com.apple.CoreData 100 (185) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x957ef000 - 0x957f4fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x957f5000 - 0x9586ffff com.apple.print.framework.PrintCore 5.5 (245) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95870000 - 0x958affff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x958b0000 - 0x958dafff libauto.dylib /usr/lib/libauto.dylib
    0x958db000 - 0x958fffff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95900000 - 0x95916fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9591d000 - 0x95920fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95921000 - 0x9593ffff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95a06000 - 0x95bcffff com.apple.security 5.0.1 (32736) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95d94000 - 0x95da0fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95da1000 - 0x95da1fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95da2000 - 0x9607bfff com.apple.CoreServices.CarbonCore 783 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9607c000 - 0x9617dfff com.apple.PubSub 1.0.1 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9617e000 - 0x9617efff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9617f000 - 0x962fdfff com.apple.AddressBook.framework 4.1 (687) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x962fe000 - 0x9633ffff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96340000 - 0x963bffff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x963c0000 - 0x96bbafff com.apple.AppKit 6.5 (949) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96bec000 - 0x96beefff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96bef000 - 0x96c3ffff com.apple.framework.familycontrols 1.0.1 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96c78000 - 0x96ca0fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x96ca1000 - 0x96d50fff com.apple.DesktopServices 1.4.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96d51000 - 0x96d5afff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96d5b000 - 0x96d5bfff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x96d5c000 - 0x96d66fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96d67000 - 0x96d6efff libbsm.dylib /usr/lib/libbsm.dylib

  • How do I solve the embedded font issue that ibook proofer does not accept?

    I have several books I created in ID 6 and am now trying to prepare them to sell on iBookstore - and as others have noted ID creates a file for embedded fonts - I cannot find a way within ID to defeat this option when exporting to EPUB 3.0.
    Any help is greatly appreciated!

    In EPUB Exports Options/Advanced/CSS Options you could uncheck Include Embeddable Fonts.

  • Java is not been friendly with Firefox 11 and above, I thought that the new 12 version would solve this issue but I was wrong, it does not work either

    Java is just not running on Firefox 11 or above, it keeps telling you that is not running and it needs to be installed, my operating system is Windows 7 x64bits. I don't know if this problem also exist on x86 bits OS. I really like Mozilla and for now I've been obligated to use IE9 for Java based webpages and I don't like it. Any help on this issue will be appreciated.

    *Firefox 12 (and all previous) is a 32-bit browser and requires the 32-bit version of Java. 32-bit browsers will run on 64-bit operating systems as you have experienced.
    *If you have both 32-bit and 64-bit browsers installed on your system, you will need to install both 32-bit and 64-bit Java.
    See --> https://www.java.com/en/download/faq/java_win64bit.xml<br />
    See --> https://support.mozilla.org/en-US/kb/latest-firefox-issues#w_java-doesnt-work<br />
    See --> https://support.mozilla.org/en-US/kb/unblocking-java-plugin
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Media Encoder Greater that 7.0 does not recongnise SD footage with correct pixel aspect ratio

    Hello,
    I logged this bug with Adobe last year but even through the latest releases the bug still remains and is a real issue for anyone editing in SD via Premiere Pro CC.
    Effectvely when you create a PAL sequence within Premiere Pro CC using SD 720x576 pixels (4:3) you have 2 options to export, either Queue or Export. If you export the footage directly from the PP application to MPEG2 SD then the resulting files are perfect, however if you use the queue option and send it to Media Encoder then the resulting files are incorrectly interpreted and the resulting file looks squashed. I suspect the Media Encoder is defaulting to Square pixels and not 1.09xx which is the default for PAL SD 4:3
    The issue only started on Media Encoder version 7.1 but I also checked 7.2 and this still has the bug.
    I can't believe this is not effecting a lot of people and its taking so long to resolve. Adobe at the time acknowledged the issue but did not provide a time scale to fix.
    If anyone has any words of wisdom I would love to hear from you. Maybe I am missing a simple workaround ?? Which could be to just export and NOT queue, however because I use the batch function a lot this is not always viable.
    thanks
    Steve

    Hi Tom,
    thanks for the quick response. I'll attach two screenshots -- one from PP and one from AME, both showing the same test chart, but distorted in AME.
    Basically the given parameters are:
    Sequence is D1/DV PAL, 720x576, PAR 1.0940, framerate 25
    Export settings are: MXF OP1a, resolution + framerate same as sequence, IMX 50 PAL.
    If you still require the preset file, I'll send that separately.
    all the best
    Daniel

  • URLLoader works great localhost but live does not work

    I have been working on this for a few days on the localhost set up, retriving data as varaibles from a php string.
    There is a output.php file located on the server
    http://example.com/room/output.php
    My Flash code for retriving the code(the swf in embedded into a menu.php file that is in this dir http://example.com/room/menu.php)
    var theloader:URLLoader = new URLLoader();
    theloader.dataFormat = URLLoaderDataFormat.VARIABLES;   
    theloader.load(new URLRequest("http://example.com/room/output.php"));
    theloader.addEventListener(Event.COMPLETE, turnOn);
    There is no error given by Flash, i just does not load
    This is what i have tried(as far as the link is concered)
    theloader.load(new URLRequest("http://example.com/room/output.php"));
    theloader.load(new URLRequest("http://www.example.com/room/output.php"));
    theloader.load(new URLRequest("/output.php"));
    theloader.load(new URLRequest("output.php"));
    Still is not loading the file, Any Suggestions would be helpful
    Thanks

    This is the file script, the php does not give any html, it simply outputs the requested string, no whitespaces nothing like that
    Any help will be aprecaited, I just noticed that sometimes the animation freezes when it comes to loading the showImages function
    import fl.transitions.*;
    import fl.transitions.easing.*;
    import flash.events.TimerEvent;
    var theloader:URLLoader = new URLLoader();
    theloader.dataFormat = URLLoaderDataFormat.VARIABLES;   
    theloader.load(new URLRequest("output.php"));
    theloader.addEventListener(Event.COMPLETE, turnOn);
    //Set the Timer for the Images to Show up
    var delayCall:Number = 3000;
    var repeatCall:int = 1;
    var imagesShow:Timer = new Timer(delayCall, repeatCall);
    imagesShow.start();
    //Add Event Listener for the imagesShow Timer
    imagesShow.addEventListener(TimerEvent.TIMER_COMPLETE, showImages);
    //Define Text Formats
    //1st is Heading Text
    var headingTxt:TextFormat = new TextFormat();
    headingTxt.font = "Eurostile";
    headingTxt.size = 18;
    headingTxt.color = 0x40ABE3;
    headingTxt.bold = true;
    headingTxt.underline = true;
    //2nd is Car Name Text
    var carnameTxt:TextFormat = new TextFormat();
    carnameTxt.font = "Eurostile";
    carnameTxt.size = 14;
    carnameTxt.color = 0x40ABE3;
    carnameTxt.bold = true;
    carnameTxt.underline = false;
    //3rd is Car Description
    var cardescTxt:TextFormat = new TextFormat();
    cardescTxt.font = "Eurostile";
    cardescTxt.size = 10;
    cardescTxt.color = 0xF6F9FA;
    cardescTxt.bold = true;
    cardescTxt.underline = false;
    //4th is for Car Price
    var carpriceTxt:TextFormat = new TextFormat();
    carpriceTxt.font = "Eurostile";
    carpriceTxt.size = 15;
    carpriceTxt.color = 0xF6F9FA;
    carpriceTxt.bold = true;
    carpriceTxt.underline = false;
    function showImages(event:TimerEvent):void {
    var bmw:MovieClip = new bmw_mc();
    var ferrari:MovieClip = new ferrari_mc();
    var lambo:MovieClip = new lambo_mc();
    var mercedes:MovieClip = new mercedes_mc();
    bmw.x = 260;
    bmw.y = 340;
    mercedes.x = 50;
    mercedes.y = 18;
    lambo.x = 530;
    lambo.y = 20;
    ferrari.x = 570;
    ferrari.y = 370;
    bmw.rotation = 20;
    var bmw = new TransitionManager(bmw);
    bmw.startTransition({type:Zoom, direction:Transition.IN, duration:4, easing:Elastic.easeOut});
    addChildAt(bmw, 0);
    var mercedes = new TransitionManager(mercedes);
    mercedes.startTransition({type:Iris, direction:Transition.IN, duration:2, easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
    addChildAt(mercedes, 0);
    var lambo = new TransitionManager(lambo);
    lambo.startTransition({type:Blinds, direction:Transition.IN, duration:2, easing:None.easeNone, numStrips:10, dimension:0});
    addChildAt(lambo, 0);
    var ferrari = new TransitionManager(ferrari);
    ferrari.startTransition({type:Fade, direction:Transition.IN, duration:8, easing:Strong.easeOut});
    addChildAt(ferrari, 0);
    function turnOn(event:Event):void {
    //Looking After Spacing    
    var tft:Number = 325;
    var twt:Number = 325;
    var tct:Number = 50;
    var tst:Number = 50;
    //Looking after heading Text
    var category:TextField = new TextField();
    category.text = "CAR LIST";
    category.x = 400;
    category.y = 300;
    category.setTextFormat(headingTxt);
    var movieTween:Tween = new Tween(category, "x", Elastic.easeOut, 600, 400, 2, true);
    addChild(category);
    var categoryone:TextField = new TextField();
    categoryone.text = "TRAILER LIST";
    categoryone.x = 50;
    categoryone.y = 300;
    categoryone.setTextFormat(headingTxt);
    var cargoTween:Tween = new Tween(categoryone, "x", Elastic.easeOut, 0, 50, 2, true);
    addChild(categoryone);
    var categorytwo:TextField = new TextField();
    categorytwo.text = "CARGO";
    categorytwo.x = 120;
    categorytwo.y = 25;
    categorytwo.setTextFormat(headingTxt);
    var cocktailTween:Tween = new Tween(categorytwo, "x", Elastic.easeOut, 0, 120, 2, true);
    addChild(categorytwo);
    var categorythree:TextField = new TextField();
    categorythree.text = "BIKES";
    categorythree.x = 430;
    categorythree.y = 25;
    categorythree.setTextFormat(headingTxt);
    var shotsTween:Tween = new Tween(categorythree, "x", Elastic.easeOut, 600, 430, 2, true);
    addChild(categorythree);
    //Iterating through the loop
    for (var i:Number = 0; i < theloader.data.count; i++) {
    if (theloader.data["carcat" + i] == "CarList") {   
    var carname:TextField = new TextField();
    var cardesc:TextField = new TextField();
    var carprice:TextField = new TextField();
    carname.y = tft;
    carname.x = 400;
    cardesc.x = 400;
    cardesc.y = tft+13;
    carprice.y = tft+5;
    carprice.x = 525;
    carprice.text = "$" + theloader.data["carprice" + i];
    carname.text = theloader.data["carname" + i];
    cardesc.text = theloader.data["Bevdes" + i];
    var myTween:Tween = new Tween(carname, "alpha", Regular.easeOut, 0, 1, 2, true);
    var myPTween:Tween = new Tween(cardesc, "alpha", Strong.easeOut, 0, 1, 3, true);
    var myDTween:Tween = new Tween(carprice, "alpha", Strong.easeOut, 0, 1, 3, true);
    carname.setTextFormat(carnameTxt);
    carname.autoSize = TextFieldAutoSize.LEFT;
    cardesc.autoSize = TextFieldAutoSize.LEFT;
    cardesc.setTextFormat(cardescTxt);
    carprice.setTextFormat(carpriceTxt);
    addChild(carname);
    addChild(cardesc);
    addChild(carprice);
    tft += 30;
    if (theloader.data["carcat" + i] == "Bikes") {   
    var carnameW:TextField = new TextField();
    var cardescW:TextField = new TextField();
    var carpriceW:TextField = new TextField();
    carnameW.y = twt;
    carnameW.x = 50;
    cardescW.x = 50;
    cardescW.y = twt+13;
    carpriceW.y = twt+5;
    carpriceW.x = 200;
    carpriceW.text = "$" + theloader.data["carprice" + i];
    carnameW.text = theloader.data["carname" + i];
    cardescW.text = theloader.data["cardesc" + i];
    var myTweenW:Tween = new Tween(carnameW, "alpha", Regular.easeOut, 0, 1, 2, true);
    var myPTweenW:Tween = new Tween(cardescW, "alpha", Strong.easeOut, 0, 1, 3, true);
    var myDTweenW:Tween = new Tween(carpriceW, "alpha", Strong.easeOut, 0, 1, 3, true);
    carnameW.setTextFormat(carnameTxt);
    carnameW.autoSize = TextFieldAutoSize.LEFT;
    cardescW.autoSize = TextFieldAutoSize.LEFT;
    cardescW.setTextFormat(cardescTxt);
    carpriceW.setTextFormat(carpriceTxt);
    addChild(carnameW);
    addChild(cardescW);
    addChild(carpriceW);
    twt += 30;
    if (theloader.data["carcat" + i] == "Cargo") {   
    var carnameC:TextField = new TextField();
    var cardescC:TextField = new TextField();
    var carpriceC:TextField = new TextField();
    carnameC.y = tct;
    carnameC.x = 120;
    cardescC.x = 120;
    cardescC.y = tct+13;
    carpriceC.y = tct+5;
    carpriceC.x = 270;
    carpriceC.text = "$" + theloader.data["carprice" + i];
    carnameC.text = theloader.data["carname" + i];
    cardescC.text = theloader.data["cardesc" + i];
    var myTweenC:Tween = new Tween(carnameC, "alpha", Regular.easeOut, 0, 1, 2, true);
    var myPTweenC:Tween = new Tween(cardescC, "alpha", Strong.easeOut, 0, 1, 3, true);
    var myDTweenC:Tween = new Tween(carpriceC, "alpha", Strong.easeOut, 0, 1, 3, true);
    carnameC.setTextFormat(carnameTxt);
    carnameC.autoSize = TextFieldAutoSize.LEFT;
    cardescC.autoSize = TextFieldAutoSize.LEFT;
    cardescC.setTextFormat(cardescTxt);
    carpriceC.setTextFormat(carpriceTxt);
    addChild(carnameC);
    addChild(cardescC);
    addChild(carpriceC);
    tct += 30;
    if (theloader.data["carcat" + i] == "Trailers") {   
    var carnameS:TextField = new TextField();
    var cardescS:TextField = new TextField();
    var carpriceS:TextField = new TextField();
    carnameS.y = tst;
    carnameS.x = 430;
    cardescS.x = 430;
    cardescS.y = tst+13;
    carpriceS.y = tst+5;
    carpriceS.x = 540;
    carpriceS.text = "$" + theloader.data["carprice" + i];
    carnameS.text = theloader.data["carname" + i];
    cardescS.text = theloader.data["cardesc" + i];
    var myTweenS:Tween = new Tween(carnameS, "alpha", Regular.easeOut, 0, 1, 2, true);
    var myPTweenS:Tween = new Tween(cardescS, "alpha", Strong.easeOut, 0, 1, 3, true);
    var myDTweenS:Tween = new Tween(carpriceS, "alpha", Strong.easeOut, 0, 1, 3, true);
    carnameS.setTextFormat(carnameTxt);
    carnameS.autoSize = TextFieldAutoSize.LEFT;
    cardescS.autoSize = TextFieldAutoSize.LEFT;
    cardescS.setTextFormat(cardescTxt);
    carpriceS.setTextFormat(carpriceTxt);
    addChild(carnameS);
    addChild(cardescS);
    addChild(carpriceS);
    tst += 30;

Maybe you are looking for