Problem with Localization

Hi everyone,
I am localizing my english java-app to japanese using PropertyResourceBundle. I set all the strings to be localized in .properties file with their equavalent japanese text. But when I retrieved the text however, using res.getString( "english-text" ), the returning string is a sort-of-garbage. But if I use ResourceBundle (not the property) with an explicit string return such as return res.getString(""), the returned text is correct.
When I tried modifying the .properties file to directly store UTF string format (\uXXXX), there wont be any problem. But of course using this method is quite cumbersome so I prefer to localize the string into a readable japanese character.
Any help is greatly appreciated.
ferdie

There is a very useful little utility supplied with the Java SDK called native2ascii.exe (I am assuming you are using windows).
You can edit a copy of your properties file using Japanese characters.
Create a batch file which does the following
native2ascii %1 > %2Where the %1 and %2 are the source and destination files, source = your edited copy, destination = the properties file as accessed by your application.
native2ascii.exe converts the special characters into the \uXXXX format for you. As long as you remember to keep the native version separate from the ascii version everything will work out fine.

Similar Messages

  • Wordpress: strange problem with localization

    Hi, I'm using Wordpress on both a G5 and a MBP (the former with serverlogistic MySQL 4.x version, the latter with a MySQL 5.x official installation). In most cases, I'm using the italian language file. Suddenly, Wordpress doesn't regognize localization.
    This happens on both my Macs, with any version of WP (2.1 to 2.3), previously or freshly installed. The same sites, booting from Tiger, are in italian as expected.
    A clean install of Leopard didn't solve the problem. Permissions seem to be ok, but I'm having often problems with folders moved to Sites folder (which are sometimes not accessible via web browser).
    Any clue? Permissions? Global variables handled by php5/apache2 different form Tiger? Something else?

    I apparently found where the problem was. I'm not able to explain the details, but the answer is here (in italian):
    http://www.wordpress-it.it/forum/topic/5370
    as far as I understood, you have to change line 116 of file wp-includes/gettext.php from:
    $magic = $this->readint();
    to
    $magic = $this->readint() & 0xFFFFFFFF;
    This seem to be a php5 bug (?). Here is (probably) something about it:
    https://savannah.nongnu.org/bugs/?func=detailitem&item_id=10565
    I don't even know what I'm talking about... I'm not such an expert in php. But it works...
    (with a different php5 installation on Tiger/Apache 1.x I hadn't this problem, anyway)

  • Problem with Localization of Crystal Reports

    Post Author: raj20007
    CA Forum: Crystal Reports
    Hi everyone..I am having a problem with crystal Reports. I need Malayalam unicode( INDIAN Language) to be displayed in the reports, this data will be binded from database.And the problem is : After applying this unicode font to the labels of my reports, some labels in the reports are going invisible.Also, previously  if I increase the font size beyond 22, I used to get "A Generic error occured in GDI+".  But after changing the textformat property of the field to "crRtfText" from "crstandardText" , I could resolve this Generic Error.
    And, I could also observe that the last char of the fields in the "details" section is repeating.This is the code I am using to apply local font to the labels.
    Private Sub assignfont()
      Dim Mfont As New Font("kartika", 20, FontStyle.Regular,GraphicsUnit.Document)
      CType(Report.Section8.ReportObjects("Field45"), CrystalDecisions.CrystalReports.Engine.FieldObject).ApplyFont(Mfont)
       CType(Report.Section8.ReportObjects("Field48"), CrystalDecisions.CrystalReports.Engine.FieldObject).ApplyFont(Mfont)
      End SubAnd I am calling this function in the form load event of that report.Any suggestion on this is greatly appreciated........Thanks in advance..

    Thanks for replying.
    Yes I am trying to move the 15mb of template files which are located in the Users Profile to a different location. I have modified the key in the Registry which defines this location: HKEY_CURRENT_USER\Software
    Business Objects\Suite 12.0\Crystal Reports\ChartSupportPath=My Defined Location
    I have done this prior to installtion and prepulated the registry and the templates in my defined location, but the installation over looks this and writes over the reg key. Even after modifying the reg key post installation, the application writes over this key and ignores what's in there. Does this mean that the Install.EXE is hard coded to always over write that location, and therefore the crw32.exe is hard coded to look in the User's Profile for the templates, and if they are not there it will create a copy for the User specific??
    Thanks

  • Problem with Localization DFF in People Form

    I am using Oracle 11i ver 11.5.9.
    Through the custom.pll I have assigned a value to the 'Localization' field in 'Additional Personal Details' canvas in 'People' form in Oracle HRMS.
    The code looks like
    IF (item_name = 'PERSON.PTU_ACTION_TYPE') THEN
    IF ('PERSON.PTU_ACTION_TYPE') IS NOT NULL THEN
    copy(l_localization, 'PERSON.ATTRIBUTE3');      
    END IF;
    END IF;
    But when I click open the 'Additional Personal Details' canvas,
    using the 'Beer-Mug' option of 'Additional Personal Details' canvas,
    the assigned value is not getting displayed.
    The same code work fine with 11.5.7.
    Can anyone help on this?
    thanks
    Anil

    hi,
    this is a normal problem u can avoid this by moveing these currencu value to a character field then print the char field us ing condece... &var(C)&..
    eve if not solve the problem use the TEMPLATE node..
    Please Close this thread.. when u r problem is solved. Reward all Helpful answers
    Regards
    Naresh Reddy K

  • Problems with decimal places and formatting

    Hi , we are having problems with an add on running on different localization companies. Decimal places separatd by "," differ from other localizations. We dont know if this is a SQL collation setting or somethng related to code or requirements to run add ons on different servers and languages.
    Any ideas??
    Thanks

    Hello
    Follow up with this thread:
    [Re: How to get the numeric value of DocTotal from UI API]
    Regards,
    J.

  • Problem with Import and Base Object

    Hi everyone
    Last week, I downloaded Flash CS5. I am trying different thing and here is the problem that I dont understand
    I wrote a package like that
    package {
        import flash.text.TextField;
        import fl.controls.Button;
        public class ex1 extends Sprite {
            public function ex1() {
               var myButton:Button = new Bu
    tton();
                var label:TextField         = new TextField();
                addChild(label);
    If I try to execute that script, the compiler returns error
    1046: Type was not found or was not a compile-time constant: Button.
    1180: Call to a possibly undefined method Button.
    If I insert in the main stage (with the Componet Editor) a Button in the main stage, and recompile it, no error.
    If I delete the Button in the main stage and recompile again, no error
    But, If I save the projet and reload it again, I've got the same error
    By the way, I dont have any problem with the textField()
    What is wrong with my setup.
    OTHER QUESTION:
    If in the ACTION FRAME (F9), I insert the folowing code:
    import ex1;
    var a:ex1 = new ex1();
    one more time, I've got error from the compiler. Why ?
    We cannot include a package in the ACTION FRAME ?
    Thanks for your help

    There are some things (including $.fileName) that just do not work in jsxbin's.
    I don't thing the exception hook will work either.
    Either use an ini file in a well known location (~/Desktop) or make sure your
    files are put in Presets/Scripts. That location can be determined with this bit
    of code:
    var SCRIPTS_FOLDER =
    new Folder(app.path + '/' +
    localize("$$$/ScriptingSupport/InstalledScripts=Presets/Scripts"));
    -X

  • Problem with configuration of wifi newtork- dhcp

    hi.
    i've got a small problem with configuration of wi-fi network.
    i use dhcp network.
    there are some errors about network during boot up (but its to fast for my to write it down)
    after log-in i have to setup network access by typing
    iwconfig eth2 essid SpeedTouchBCE72F
    and then i heve to run this command
    dhclient
    and after that i've got an access to internet
    this is my rc.file
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime"
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="pl_PL.UTF-8"
    HARDWARECLOCK="localtime"
    TIMEZONE="Europe/London"
    KEYMAP="-u pl2"
    CONSOLEFONT="lat2-16.psfu.gz"
    USECOLOR="yes"
    LC_ALL="pl_PL.UTF-8"
    LESSCHARSET="UTF-8"
    # HARDWARE
    # Scan hardware and load required modules at bootup
    MOD_AUTOLOAD="yes"
    # Module Blacklist - modules in this list will never be loaded by udev
    MOD_BLACKLIST=()
    # Modules to load at boot-up (in this order)
    #   - prefix a module with a ! to blacklist it
    MODULES=()
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    HOSTNAME="linugrat"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available
    # interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    #   - prefix an entry in INTERFACES with a ! to disable it
    #   - no hyphens in your interface names - Bash doesn't like it
    # Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
    lo="lo 127.0.0.1"
    eth2="dhcp"
    INTERFACES=(lo eth2)
    ROUTES=(!gateway)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    #   - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(gateway)
    # Enable these network profiles at boot-up.  These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    #   - set to 'menu' to present a menu during boot-up (dialog package required)
    #   - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network-profiles
    #NET_PROFILES=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    #   - prefix a daemon with a ! to disable it
    #   - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng ipw3945d network netfs crond)
    # End of file
    szymon

    Hi Mariano
    I think you need to <b>restart your portal Engine</b> after making correct settings.
    Also please refer to the link below to get a better insight:-
    http://help.sap.com/saphelp_nw04s/helpdata/en/0b/719a425ffac46ae10000000a155106/frameset.htm
    Regards
    Navneet

  • Problem with Updating clients with UNIX command

    Hi.
    Until this day, I used to update all our 50 client macs by manually logging in as administrator via ARD and choosing Software Update from the apple menu, this works always and I use our own servers SUS so the downloading is really fast. Still, this clearly is time consuming and annoying when you have this many clients. I have now done some search and I know I could do this by sending unix command to clients using ARD. First I had problems with running the command, then I noticed I need to run this as root. Then it "works".
    Works, not quite. It starts to run, and I can see all the output. I have tried this with few clients and the results are confusing. The following is an output from one client I send the command "softwareupdate -i -r"
    SIBELIUS411 (172.17.6.36)
    2011-03-25 13:13:20.610 softwareupdate[1692:392b] PackageKit: * Missing bundle identifier: /Library/Receipts/PPDInstallerRI3222E3L.pkg
    2011-03-25 13:14:09.636 softwareupdate[1692:392b] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    2011-03-25 13:14:09.798 softwareupdate[1692:392b] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    2011-03-25 13:14:09.801 softwareupdate[1692:392b] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.server.SystemImageUtility"></bundle>
    2011-03-25 13:19:40.016 softwareupdate[1692:903] PackageKit: * Missing bundle identifier: /Library/Receipts/PPDInstallerRI3222E3L.pkg
    Software Update Tool
    Copyright 2002-2009 Apple
    Downloading Safari
    Verifying Safari
    Waiting to install Safari
    Downloading Mac OS X Update Combined
    Verifying Mac OS X Update Combined
    Waiting to install Mac OS X Update Combined
    Downloading Ricoh Printer Software Update
    Verifying Ricoh Printer Software Update
    Waiting to install Ricoh Printer Software Update
    Downloading iWeb Update
    Verifying iWeb Update
    Waiting to install iWeb Update
    Downloading Java for Mac OS X 10.6 Update 4
    Verifying Java for Mac OS X 10.6 Update 4
    Waiting to install Java for Mac OS X 10.6 Update 4
    Downloading iTunes
    Verifying iTunes
    Waiting to install iTunes
    Downloading Remote Desktop Client Update x signature
    x RemoteDesktopClient.pkg.tar
    x RemoteDesktopClient.pkg
    x RemoteDesktopClient.pkg/Contents
    x RemoteDesktopClient.pkg/Contents/Archive.bom
    x RemoteDesktopClient.pkg/Contents/Archive.pax.gz
    x RemoteDesktopClient.pkg/Contents/Info.plist
    x RemoteDesktopClient.pkg/Contents/._RemoteDesktopClient.dist
    x RemoteDesktopClient.pkg/Contents/RemoteDesktopClient.dist
    x RemoteDesktopClient.pkg/Contents/Resources
    x RemoteDesktopClient.pkg/Contents/Resources/background.tif
    x RemoteDesktopClient.pkg/Contents/Resources/BundleVersions.plist
    x RemoteDesktopClient.pkg/Contents/Resources/cleanup_list
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/deleteomatic
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/InstallationCheck.string s
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/InstallationCheck.stri ngs
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/InstallationCheck.strin gs
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/InstallationCheck.strin gs
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Hints.plist
    x RemoteDesktopClient.pkg/Contents/Resources/InstallationCheck
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/InstallationCheck.stri ngs
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/InstallationCheck.str ings
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd/icons.pn g
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/kickstart
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/makeuser
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/package_version
    x RemoteDesktopClient.pkg/Contents/Resources/PlistBuddy
    x RemoteDesktopClient.pkg/Contents/Resources/postflight
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/cleanStartup.pl
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/copypackages
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/deleteObsoleteFil es
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/learnFiles
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/postflightKicksta rt
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/setupLaunchFiles
    x RemoteDesktopClient.pkg/Contents/Resources/postflightactions/setupLaunchFilesRFBEventHelper
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/setupMenuExtras
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/stampBuildNumInPl istStrings
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_kickstart
    x RemoteDesktopClient.pkg/Contents/Resources/postflightkickstartentries
    x RemoteDesktopClient.pkg/Contents/Resources/postflightmakeuserentries
    x RemoteDesktopClient.pkg/Contents/Resources/preflight
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/cleanAndPreflightK ickstart
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/maybeNukeVNCServer
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/moveAsideFirewallD efaultPrefsTiger
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_kickstart
    x RemoteDesktopClient.pkg/Contents/Resources/preflightkickstartentries
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/InstallationCheck.stri ngs
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/InstallationCheck.string s
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/InstallationCheck.string s
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/version.plist
    Verifying Remote Desktop Client Update
    Waiting to install Remote Desktop Client Update
    Checking packages…
    Installing
    Waiting for other installations to complete…2011-03-25 13:20:01.468 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    2011-03-25 13:20:01.471 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.server.SystemImageUtility"></bundle>
    2011-03-25 13:20:01.540 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    2011-03-25 13:20:01.731 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    2011-03-25 13:20:01.734 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.server.SystemImageUtility"></bundle>
    2011-03-25 13:20:01.808 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    Validating packages…
    Writing files…
    Running package scripts…
    Removing old files…
    Optimizing system for installed software…
    Moving items into place…
    Registering updated components…
    And thats it, it stops there. Few clients completed the task, but the output says that they skipped the installation of all updates. In the case above, there is some skipping too, and I don't know what it means. Yesterday I left one client to this part where its Registering updated components.... , and today when I came in, it's still there, and the task is still running. When I update the clients with the Software Update from apple menu, it takes usually 10 minutes max to complete the whole process, download and install. After I restarted the same client and ran the manual Software Update from apple menu, it shows the same updates, it didn't do anything???
    Am I doing something wrong with the command?

    I am having the same issue. I send the unix command to some test clients to install all updates. The process never finishes and stays at "Registering updated companents....". (See screen shot)
    I have manually restarted some of the clients after waiting a very long time. All updates seem to have been installed. I am wondering why the task hangs at this point. I want to be able to ran ASU with this Unix method on the 450+ macs that I manage at work, but it scares me that the task never seems to finish.

  • Multiple problems with Firefox 3.6.6 - Java Console, Flash, PDF & opening

    running Windows XP with Firefox 3.6.6. I just upgraded to 3.6.6 & since then have been having multiple problems. 1) 3.6.6 takes a LONG time to load or hangs 2) As recommended Flash plugin updated to Flash 10.1. Subsequently Flash doesn't work. All I get when I use Firefox on any site is the F in a circle that indicates that flash is necessary to display the page. I have no problems with Flash on Google Chrome. 3) Java Console having issues. When 3.6.6 opens it says Java Console must be updated. So I update it. Then when it opens it says it's not supported & needs to be removed. Each time it wants me to restart Firefox to complete the task. If I say restart later cause I'm sick of opening & Closing again & again it pops up every 5-10 minutes & asks again. Please HELP!! 4) PDF files will not open since upgrade to 3.6.6. Having no issues with Google Chrome. It opens in miliseconds & runs everything but I prefer Firefox if it can be gotten to work right. Desperately need help.
    == Upon upgrade

    Please respond with a list of all of your Extensions.
    -type '''about:support''' in your URL/address/location bar and press the Enter key
    -click "Copy all to Clipboard"
    -paste into your reply
    <u>'''1).'''</u> Please explain "long time to load" in more detail; approximately how long? Hanging when: on startup of Firefox, during use (please list some sites/pages, if so), at shutdown?
    For hanging at exit:
    <u>'''Kill Application'''</u>
    In Task Manager, does firefox.exe show in the <u>'''Processes'''</u> tab?
    See: [http://kb.mozillazine.org/Kill_application Kill Application]
    '''<u>Causes and solutions for Firefox hanging at exit:</u>'''
    [[Firefox hangs]]
    [http://kb.mozillazine.org/Firefox_hangs#Hang_at_exit Firefox hangs at exit]
    [[Firefox is already running but is not responding]]
    <u>'''Safe Mode'''</u>
    You may need to use '''[[Safe Mode]]''' (click on "Safe Mode" and read) to localize the problem. Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes <u>'''before'''</u> starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    See:
    '''[[Troubleshooting extensions and themes]]'''
    '''[[Troubleshooting plugins]]'''
    '''[[Basic Troubleshooting]]'''
    If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it by enabling <u>'''one at a time'''</u> until the problem reappears. <u>'''You MUST close and restart Firefox after EACH change'''</u> via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.
    <u>'''2).'''</u> Could be caused by a Flash-blocking Extension (the reason for asking for your list of Extensions) or could be in your Firewall or AV/AS application. What Firewall and/or AV/AS applications to you use?
    See: [[Firewalls]]
    <u>'''3).'''</u> Again, the reason for asking for your Extensions. Is it Java Console or Java Deployment Toolkit in the error message. Need version numbers on both of the above. You may have some Java remnants from a prior Java version; Java does not clean-up after itself and we can help you remove some of those remnants, if you will supply the information. See:
    http://support.mozilla.com/en-US/kb/Java-related+issues
    http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox
    http://support.mozilla.com/en-US/kb/Java+Deployment+Toolkit+Blocked
    http://kb.mozillazine.org/Java
    Some users get confused about Java and JavaScript; here is some information:
    http://kb.mozillazine.org/JavaScript_is_not_Java
    http://support.mozilla.com/en-US/kb/JavaScript
    <u>'''4).'''</u> What are the results when you try to load a PDF file off of the internet? You need to check for an update of Adobe Reader (yours appears to be an older version) and after checking for updates to Adobe Reader, check your settings in Tools > Options > Applications for "Adobe Acrobat" Content Types. See:
    http://support.mozilla.com/en-US/kb/Options+window+-+Applications+panel http://support.mozilla.com/en-US/kb/Managing+file+types
    http://kb.mozillazine.org/File_types_and_download_actions
    <u>'''You'''</u> ~~red:<u>'''MAY'''</u>~~ <u>'''need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Start > Program Files, find and click Adobe Reader to open, click Help, click Check for Updates.
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • Problem with BAPI_ALM_ORDEROPER_GET_LIST DURATION_NORMAL_UNIT

    I am using this BAPI to return a list of PM work order operations from SAP using a JRA connector. I have had good success with the BAPI so far, but have noticed a problem with the DURATION_NORMAL_UNIT returned by the BAPI. If the duration unit is set to "DAY" for an operation in SAP, the BAPI returns the text "TAG" instead of "DAY" in its return table. If the duration unit is set to "D" in SAP, the BAPI returns the text "10" instead of "D" in it's return table.
    Anyone have thoughts on a potential cause for this behavior?

    Hi John,
    Just a couple of more things. 
    Are you in the workbench for the testing or in a webpage.  In either case, what is the locale (language) for both the NW/MII ID and if in the webpage, what is the language set to?  Depending upon your set up, check to see if you have UME Locale selected (it is in Display Templates for sure).
    What is the default language of the user ID used to connect to ECC?  Can you change it and see if that affects the results?  It really looks like you are using English versions as inputs and they are being interpreted (or converted) to Deutsch terms.  You may want to look at the equivalent localization tables in ECC.
    And what version of MII and NW are you running?
    Regards,
    Mike
    Edited by: Michael Appleby on Mar 2, 2011 3:25 PM

  • Problems with russian characters

    I need to localize my application to russian language and i have problems with their special characters. I use Graphics.drawString method and unicode escape sequences and this works fine on phones like SE, Nokia and Siemens. But some phones are not able to display these characters (Motorola, Sharp, Samsung). Do u know any other way how to draw these characters on problematic phones listed above?
    thanx for any hint

    thanx for hint, but i'm not familliar with this stuff in j2me. could u described it in more details, please?

  • Photo Booth - Problem with filenames

    Hi.
    I just noticed that Photo Booth names pictures taken in a curious way... This is the name of a photo taken a few minutes ago:
    Foto del 65353972-09-2455450 alle 18/09 (don't care about the words being in Italian )
    The number indicating the month is correct, but what about the others? Shouldn't they be year and day?
    I know, wrong names in Photo Booth is not a big deal, but I have a lot of pictures in the Photo Booth folder, and it would be nice to quickly find a photo looking at the date, instead of watching them all one by one...

    Nothing to do with Julian date as stated in one reply. It's a bug in some localizations, for example the Italian one(Apple is alerted about it).
    You have to go to the Application folder, select Photo Booth and control-click (or right-click) to see the contextual menu. Choose Show package contents and then Contents, Resources, Italian.lproj, Localizable strings.
    Open that file.
    1) Change the 21st string: from "HH.mm" = "HH:mm"; to "HH.mm" = "HH.mm";
    2) Change the last string: from "YYYY-MM-dd" = "AAAA-MM-gg";
    to "YYYY-MM-dd" = "YYYY-MM-dd";
    To open the file, no problems with Textedit or XCode, but to save it you will have permissions problems: you must enable root (in System Preferences, Account, Login Options, Network Account Server..Join, Open Director Utility, Edit Menu, Enable Root User). Login as a root user and modify and save the file.
    Easier: from your admin user account (no need to enable root), open the file with Textwrangler or similar software, do the changes and save the modified file (Textwrangler will ask you if you want to unlock the file and will ask you for your admin user password).
    +Textwrangler: Unix and server administrator’s tool, with the ability to open and save files in a variety of line-ending formats, open and save text files located on remote FTP and SFTP ser A vers, authenticated saves (you can modify files not owned by you, provided that you are an administrative user)+

  • [solved]partially working network, problems with ssl and irc

    Hi,
    for a weird reason I can't access any websites with https anymore nor can i connect to any irc servers with irssi and connection attempts with ssh time out. The system is up2date and I am using kdemod as DE.
    My rc.conf looks like this:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="de_DE.utf8"
    HARDWARECLOCK="localtime"
    TIMEZONE="Europe/Berlin"
    KEYMAP="de"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(!b44 !mii !ipw2200 !libipw !ac97_bus !snd-mixer-oss !snd-pcm-oss !snd-page-alloc !snd-pcm !snd-timer !snd !snd-ac97-codec !snd-intel8x0 !snd-intel8x0m !soundcore b44 mii ipw2200 libipw ac97_bus snd-mixer-oss snd-pcm-oss snd-page-alloc snd-pcm snd-timer snd snd-ac97-codec snd-intel8x0 snd-intel8x0m soundcore)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="horst-lp"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    eth0="dhcp"
    # Wireless: See network profiles below
    #Static IP example
    #eth0="dhcp"
    eth0="dhcp"
    INTERFACES=(!eth0 !eth1 !wlan0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng hal !network networkmanager avahi-daemon avahi-dnsconfd alsa cdemud kdm samba mpd lighttpd)
    Earlier I had some problems with not resolving addresses, which I somehow got rid of. At the time I blamed my isp.
    Perhaps something broke when I had a program running in wine to play with a car too and I had to switch the laptop off bc it didn't want to react anymore.
    thx for reading
    e: I don't know why, but it worked when I started Arch this morning.. while it didn't yesterday although everything worked correctly on my other PCs.
    Last edited by dt (2009-11-07 09:02:46)

    Hi,
    for a weird reason I can't access any websites with https anymore nor can i connect to any irc servers with irssi and connection attempts with ssh time out. The system is up2date and I am using kdemod as DE.
    My rc.conf looks like this:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="de_DE.utf8"
    HARDWARECLOCK="localtime"
    TIMEZONE="Europe/Berlin"
    KEYMAP="de"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(!b44 !mii !ipw2200 !libipw !ac97_bus !snd-mixer-oss !snd-pcm-oss !snd-page-alloc !snd-pcm !snd-timer !snd !snd-ac97-codec !snd-intel8x0 !snd-intel8x0m !soundcore b44 mii ipw2200 libipw ac97_bus snd-mixer-oss snd-pcm-oss snd-page-alloc snd-pcm snd-timer snd snd-ac97-codec snd-intel8x0 snd-intel8x0m soundcore)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="horst-lp"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    eth0="dhcp"
    # Wireless: See network profiles below
    #Static IP example
    #eth0="dhcp"
    eth0="dhcp"
    INTERFACES=(!eth0 !eth1 !wlan0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng hal !network networkmanager avahi-daemon avahi-dnsconfd alsa cdemud kdm samba mpd lighttpd)
    Earlier I had some problems with not resolving addresses, which I somehow got rid of. At the time I blamed my isp.
    Perhaps something broke when I had a program running in wine to play with a car too and I had to switch the laptop off bc it didn't want to react anymore.
    thx for reading
    e: I don't know why, but it worked when I started Arch this morning.. while it didn't yesterday although everything worked correctly on my other PCs.
    Last edited by dt (2009-11-07 09:02:46)

  • Iwl3945 module loading problem (with workaround)

    I've been experiencing problems with my intel wireless card (iwl3945) not loading at boot time. The problem arose after a fresh install from a Chakra (kdemod) live CD after I got a new harddrive for my notebook. It worked fine from the live CD and immediately post-install but when I upgraded the system with "pacman -Syu" (the kernel was upgraded as part of this) the card no longer loaded during boot (i.e. wlan0 would not show up under "ifconfig -a").
    I checked some threads on the iwl3945 (e.g. http://bbs.archlinux.org/viewtopic.php? … 18#p638618 and http://bbs.archlinux.org/viewtopic.php?id=73876) but couldn't find quite the same behaviour so decided to start a new thread.
    It's also similar to this thread (http://bbs.archlinux.org/viewtopic.php?id=82357), but this is not for the iwl3945.
    The following is a log of the problem:
    $ ifconfig -a
    eth0 Link encap:Ethernet HWaddr 00:15:C5:46:C6:6A
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    Interrupt:17
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:24 errors:0 dropped:0 overruns:0 frame:0
    TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:1240 (1.2 Kb) TX bytes:1240 (1.2 Kb)
    $ ifconfig wlan0 up
    wlan0: unknown interface: No such device
    $ lsmod | grep iwl
    iwl3945 89020 0
    iwlcore 107100 1 iwl3945
    mac80211 155532 2 iwl3945,iwlcore
    led_class 4000 3 sdhci,iwl3945,iwlcore
    cfg80211 90428 3 iwl3945,iwlcore,mac80211
    $ dmesg | grep iwl
    iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, 1.2.26ks
    iwl3945: Copyright(c) 2003-2009 Intel Corporation
    iwl3945 0000:0c:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    iwl3945 0000:0c:00.0: setting latency timer to 64
    iwl3945 0000:0c:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels
    iwl3945 0000:0c:00.0: Detected Intel Wireless WiFi Link 3945ABG
    iwl3945 0000:0c:00.0: irq 28 for MSI/MSI-X
    iwl3945 0000:0c:00.0: Failed to register hw (error -2)
    iwl3945 0000:0c:00.0: PCI INT A disabled
    iwl3945: probe of 0000:0c:00.0 failed with error -2
    Here is my rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_GB.utf8"
    HARDWARECLOCK="localtime"
    TIMEZONE="Europe/Dublin"
    KEYMAP="uk"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(b44 mii !ipw3945 iwlcore pcspkr snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd snd-hda-codec snd-hda-intel soundcore)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="alex-xps"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    eth0="dhcp"
    # Wireless: See network profiles below
    wlan0="dhcp"
    #Static IP example
    #eth0="eth0 134.226.144.162 netmask 255.255.0.0 broadcast 134.226.255.255"
    INTERFACES=(!eth0 !eth1 !wlan0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng hal !network wicd !networkmanager avahi-daemon avahi-dnsconfd alsa cdemud kdm)
    I read somewhere that there was an issue with kill switches and that rfkill may help so I installed it from AUR. However, there didn't seem to be any block:
    $ rfkill list
    1: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
    2: dell-wifi: Wireless LAN
    Soft blocked: no
    Hard blocked: no
    3: dell-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
    I also tried creating a modprobe.conf file as suggested in some quarters (/etc/modprobe.d/iwl3945.conf):
    alias wlan0 iwl3945
    options iwl3945 disable_hw_scan=1
    Sadly still no luck on a reboot.
    After much pulling of hair the following workaround finally did it for me. Basically even though the module doesn't load during boot I can remove it and then modprobe it manually and it then works so that I can bring up the interface:
    # rmmod iwl3945
    # modprobe iw3945
    # ifconfig wlan0 up
    # ifconfig -a
    eth0 Link encap:Ethernet HWaddr 00:15:C5:46:C6:6A
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    Interrupt:17
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:24 errors:0 dropped:0 overruns:0 frame:0
    TX packets:24 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:1240 (1.2 Kb) TX bytes:1240 (1.2 Kb)
    wlan0 Link encap:Ethernet HWaddr 00:18:DE:1E:7B:46
    UP BROADCAST MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    wmaster0 Link encap:UNSPEC HWaddr 00-18-DE-1E-7B-46-00-00-00-00-00-00-00-00-00-00
    UP RUNNING MTU:0 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    I can then use wicd to connect to my router at home (networkmanager doesn't seem to work for me with the same settings).
    Hopefully this may be of some use to someone with the same issue and to any kernel gurus that may be scanning this section of the forum.

    I tinkered with the rfkill module as suggested.
    First checked what the default behaviour was
    $ lsmod | grep rfkill
    rfkill 19728 3 bluetooth,dell_laptop,cfg80211
    Then blacklisted rfkill in rc.conf using "!rfkill" in the modules line
    $ lsmod | grep rfkill
    rfkill 19728 1 cfg80211
    Unfortunately I still had to manually remove and reload iwl3945 as before.
    I tried inserting the options in modprobe.conf suggested by you in your other post
    # /etc/modprobe.d/modprobe.conf (for v2.6 kernels)
    options bluetooth rfkill=0
    options dell_laptop rfkill=0
    After a reboot still no wireless activity and checking rfkill module gives same as for blacklisting in rc.conf, i.e. ...
    $ lsmod | grep rfkill
    rfkill 19728 1 cfg80211
    So still manually un/reloading as before. At least the workaround is not too labour intensive.

  • I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    Ok, thanks for your help. I believe I pasted all the info from your answer. Since Photoshop and inDesign are crashing as well, will you need that too?
    May  8 16:04:41 iMac com.apple.launchd.peruser.501[126] ([0x0-0x4d04d].com.adobe.illustrator[493]): Job appears to have crashed: Segmentation fault: 11
    May  8 16:04:42 iMac ReportCrash[496]: Saved crash report for Adobe Illustrator[493] version 367 (14.0.0) to /Users//Library/Logs/DiagnosticReports/Adobe Illustrator_2014-05-08-160442_-iMac.crash
    May  8 16:04:42 -iMac ReportCrash[496]: Removing excessive log: file://localhost/Users/xxxxxx/Library/Logs/DiagnosticReports/Adobe%20Illustrato r_2014-05-06-152657_-iMac.crash
    Process:         Adobe Illustrator [273]
    Path:            /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         367 (14.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [131]
    Date/Time:       2014-05-06 15:29:44.038 -0700
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          353 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  11182846 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                     
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ffffff5a
    VM Regions Near 0xffffff5a:
    --> shared memory          00000000ffff0000-00000000ffff2000 [    8K] r-x/r-x SM=SHM 
    Application Specific Information:
    objc[273]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobePDFL                               0x024104cd ASrealloc + 737
    1   AdobePDFL                               0x0236f588 CosDocEnumEOFs + 27326
    2   AdobePDFL                               0x0236d907 CosDocEnumEOFs + 20029
    3   AdobePDFL                               0x0236fd46 CosDocEnumEOFs + 29308
    4   AdobePDFL                               0x0227d782 ASTextIsEmpty + 1146
    5   AdobePDFL                               0x0212779f PDFontPSFlushIncrGlyphList + 65853
    6   AdobePDFL                               0x02127966 PDFontPSFlushIncrGlyphList + 66308
    7   AdobePDFL                               0x02129f93 PDFontPSFlushIncrGlyphList + 76081
    8   AdobePDFL                               0x0212cae6 PDFontPSFlushIncrGlyphList + 87172
    9   AdobePDFL                               0x02111b26 PDFLPrintDoc + 6322
    10  AdobePDFL                               0x021dccac PDSetHostEncoding + 2412
    11  AdobePDFL                               0x021dce02 PDSetHostEncoding + 2754
    12  AdobePDFL                               0x02114eba PDFLInitFriends + 2122
    13  AdobePDFL                               0x021149c8 PDFLInitFriends + 856
    14  com.adobe.illustrator.plugins.PDF Suite          0x16884096 PluginMain + 163654
    15  com.adobe.illustrator.plugins.PDF Suite          0x16883b61 PluginMain + 162321
    16  com.adobe.illustrator.plugins.PDF Suite          0x168840f2 PluginMain + 163746
    17  com.adobe.illustrator.plugins.PDF Suite          0x16862872 PluginMain + 26402
    18  com.adobe.illustrator.plugins.PDF Suite          0x16862c7b PluginMain + 27435
    19  com.adobe.illustrator.plugins.PDF Suite          0x1685c1f3 PluginMain + 163
    20  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    21  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    22  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    23  com.adobe.illustrator                   0x00586e2d 0x1000 + 5791277
    24  com.adobe.illustrator                   0x0052f513 0x1000 + 5432595
    25  com.adobe.illustrator                   0x00539777 0x1000 + 5474167
    26  com.adobe.illustrator                   0x0053d599 0x1000 + 5490073
    27  com.adobe.illustrator                   0x00515187 0x1000 + 5325191
    28  com.adobe.illustrator                   0x00b0517a AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 524022
    29  com.adobe.illustrator                   0x00a181df AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 43387
    30  com.adobe.illustrator                   0x0004210a 0x1000 + 266506
    31  com.adobe.illustrator                   0x0053c893 0x1000 + 5486739
    32  com.adobe.illustrator                   0x0053a574 0x1000 + 5477748
    33  com.adobe.illustrator                   0x00b03d77 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 518899
    34  com.adobe.illustrator.plugins.PDF Format          0x10122118 0x1010f000 + 78104
    35  com.adobe.coretech.adm                  0x0dd83d85 0xdd7b000 + 36229
    36  com.adobe.coretech.adm                  0x0dd8c62f 0xdd7b000 + 71215
    37  com.adobe.coretech.adm                  0x0dd8d7fb 0xdd7b000 + 75771
    38  com.adobe.coretech.adm                  0x0ddd5871 0xdd7b000 + 370801
    39  com.adobe.coretech.adm                  0x0dd93c53 0xdd7b000 + 101459
    40  com.adobe.illustrator.plugins.PDF Format          0x101200bd 0x1010f000 + 69821
    41  com.adobe.illustrator.plugins.PDF Format          0x1011a56a 0x1010f000 + 46442
    42  com.adobe.illustrator.plugins.PDF Format          0x101442e7 PluginMain + 2927
    43  com.adobe.illustrator.plugins.PDF Format          0x1014391e PluginMain + 422
    44  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    45  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    46  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    47  com.adobe.illustrator                   0x0047021d 0x1000 + 4649501
    48  com.adobe.illustrator                   0x00473190 0x1000 + 4661648
    49  com.adobe.illustrator                   0x0027b1dc 0x1000 + 2597340
    50  com.adobe.illustrator                   0x0027bb3b 0x1000 + 2599739
    51  com.adobe.illustrator                   0x0027bf0d 0x1000 + 2600717
    52  com.adobe.illustrator                   0x000a2ad9 0x1000 + 662233
    53  com.adobe.illustrator                   0x000a24ea 0x1000 + 660714
    54  com.adobe.illustrator                   0x000a263a 0x1000 + 661050
    55  com.apple.AE                            0x91fb8e0b InvokeAEEventHandlerUPP + 29
    56  com.adobe.illustrator.plugins.Scripting Support          0x0e3794e6 0xe359000 + 132326
    57  com.adobe.illustrator.plugins.Scripting Support          0x0e3f4dcb PluginMain + 605
    58  com.apple.AE                            0x91fa3045 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    59  com.apple.AE                            0x91f8cb67 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    60  com.apple.AE                            0x91f8ca54 aeProcessAppleEvent + 253
    61  com.apple.HIToolbox                     0x93410a86 AEProcessAppleEvent + 103
    62  com.apple.HIToolbox                     0x9359ead1 AEProcessEvent + 162
    63  com.apple.HIToolbox                     0x9349752f HIStdAppHandler::HandleEvent(OpaqueEventHandlerCallRef*, TCarbonEvent&) + 181
    64  com.apple.HIToolbox                     0x934984ce TEventHandler::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 58
    65  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    66  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    67  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    68  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    69  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    70  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    71  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    72  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    73  com.adobe.illustrator                   0x00080d3e 0x1000 + 523582
    74  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    75  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    76  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    77  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    78  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    79  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    80  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    81  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    82  com.apple.HIToolbox                     0x9358ba58 ToolboxEventDispatcher + 82
    83  com.apple.HIToolbox                     0x9358bb87 RunApplicationEventLoop + 236
    84  com.adobe.illustrator                   0x00080f83 0x1000 + 524163
    85  com.adobe.illustrator                   0x000d84ab 0x1000 + 881835
    86  com.adobe.illustrator                   0x000a2cd2 0x1000 + 662738
    87  com.adobe.illustrator                   0x00003672 0x1000 + 9842
    88  com.adobe.illustrator                   0x00003599 0x1000 + 9625
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x95f0a90a kevent + 10
    1   libdispatch.dylib                       0x96fb6e04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x96fb5853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x047c9552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x047c4995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services                  0x047c95b0 AMTThread::Worker(void*) + 20
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x95544f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9ad0f3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9ad0f11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9ad0ef2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9ad84398 TimerThread + 292
    7   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x95f07c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95f071f6 mach_msg + 70
    2   com.macromedia.Flash Player.authplaylib          0x1390763e ExternalPlayer_Initialize + 1865604
    3   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x95f07d36 mach_wait_until + 10
    1   libsystem_c.dylib                       0x954ee439 nanosleep + 388
    2   com.adobe.illustrator.plugins.Scripting Support          0x0e46489d PluginMain + 458031
    3   com.adobe.illustrator.plugins.Scripting Support          0x0e4648fd PluginMain + 458127
    4   com.adobe.illustrator.plugins.Scripting Support          0x0e468402 PluginMain + 473236
    5   com.adobe.illustrator.plugins.Scripting Support          0x0e464bbf PluginMain + 458833
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xffffff4a  ebx: 0x0236f46a  ecx: 0x0000000f  edx: 0xbfff75ae
      edi: 0xffffff4a  esi: 0x00000642  ebp: 0xbfff7558  esp: 0xbfff7540
       ss: 0x00000023  efl: 0x00010282  eip: 0x024104cd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xffffff5a
    Logical CPU: 0
    Binary Images:
        0x1000 -   0xe8eff3 +com.adobe.illustrator (367 - 14.0.0) <F586A10F-F480-4783-A20B-C006B6321F47> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x1190000 -  0x11a0fff  com.apple.carbonframeworktemplate (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x11a7000 -  0x11c2ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x11dc000 -  0x122cfff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <F625B836-9616-46B7-B681-F9AC11D0DA71> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x12c5000 -  0x12c6027 +SPBasic (??? - ???) <B1DC5A08-15C4-49F9-9DF1-6A94E0AD3448> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x12ca000 -  0x12d0ff7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x12d9000 -  0x13e6fff +AdobeACE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1404000 -  0x191bfef +AdobeAGM (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1a94000 -  0x1ad4fef +AdobeARE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1ade000 -  0x1b02ff6 +AdobeAXE8SharedExpat (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1b15000 -  0x1b2ffff +AdobeBIB (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1b3a000 -  0x1b5bff7 +AdobeBIBUtils (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1b68000 -  0x1e04fef +AdobeCoolType (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x1e8f000 -  0x1f5dfff +AdobeExtendScript (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x1fd4000 -  0x20bcfdf +AdobePDFPort (??? - ???) <F54A25D1-5E7A-472E-83D1-10D187434C85> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x2101000 -  0x26f9fdf +AdobePDFL (??? - ???) <8EC2ABBA-52D2-4230-B327-A6827FB2D33A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x283d000 -  0x28defd7 +AdobeScCore (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x293a000 -  0x29e8fd7 +AdobeSVGExport (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2a1a000 -  0x2cc3fe2 +AdobeSVGRE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x2dad000 -  0x2e0dfc7 +AdobeXMP (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2e1c000 -  0x2ef1fdd +FileInfo (??? - ???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x2f22000 -  0x2fa4fd7 +AdobeXMPFiles (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x2fbb000 -  0x308a23b +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x3133000 -  0x3207db7 +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x3268000 -  0x3c1857f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3c1b000 -  0x3fe5fef +AdobeMPS (??? - ???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x4074000 -  0x422aff4 +com.adobe.amtlib (amtlib 2.0.1.10077 - 2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x4261000 -  0x42ee2cb +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x431b000 -  0x46f501f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x47a9000 -  0x484afc3 +com.adobe.amt.services (AMTServices 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x4928000 -  0x4e26fc3 +AdobeOwlCanvas (??? - ???) <DC1EE447-FCDB-43C8-B6D2-A5454291C85D> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x4f6f000 -  0x4ffffc3 +WRServices (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x5181000 -  0x5185ffc +com.adobe.AdobeCrashReporter (2.5 - 3.0.20080806) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x518b000 -  0x51a7fd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransp ort
    0x51b2000 -  0x51e1ff7 +com.adobe.headlights.LogSessionFramework (??? - 2.0.0.06112008) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x5209000 -  0x521affb +LogTransport2 (??? - ???) <835B7B84-5A67-370B-AB39-8E448AA81FA0> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport2.framework/Versions/A/LogTrans port2
    0x5224000 -  0x522afff +com.adobe.pip (??? - 1.0.0.220) <2CA89939-DFA7-4686-8536-8A1F1107CAF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x5230000 -  0x525bfff  com.apple.GSS (2.2 - 2.0) <1CB56119-09C5-38FD-8FDC-064E3CC5068B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x5271000 -  0x546bfcf +AdobeOwl (??? - ???) <F209A9B2-9606-4182-93D8-84B349CFBE48> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x54e6000 -  0x5523fff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x553d000 -  0x55eaff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x6794000 -  0x67dbfc7 +com.adobe.adobe_caps (adobe_caps 2.0.99.0 - 2.0.99.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x67eb000 -  0x67ebfff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x7fa5000 -  0x7fb2ff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xbbe9000 -  0xbbfbfff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <F7D2A96C-D03F-3C0B-83FC-1016BB787B59> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xcdf4000 -  0xce02ffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <4378B89F-0BDA-3072-9C67-DE1A371DD816> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xce1d000 -  0xce1effc  ATSHI.dylib (??? - ???) <0B0F21B6-C254-34AE-8128-F3FBC80C68E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xce42000 -  0xce42fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 14.0.0 - 14.0.0) <CFE61490-698E-4FAE-988C-C238AC6CAAF8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Resources/en_US/PluginRes.aip/Contents/MacOS/PlugInRes
    0xcf1b000 -  0xcf6afe6 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 14.0.0 - 14.0.0) <897C80A3-5E5D-4156-8C80-38FE67F5F275> /Applications/Adobe Illustrator CS4/*/Photoshop Adapter
    0xcf91000 -  0xcf92fff +com.adobe.illustrator.plugins.ASLib (ASLib version 14.0.0 - 14.0.0) <F08F7B7D-86A2-462E-AB7B-B706FEE4B955> /Applications/Adobe Illustrator CS4/*/ASLib
    0xd0e4000 -  0xd0ebfff +com.adobe.illustrator.plugins.Action (Action version 14.0.0 - 14.0.0) <C884784D-9646-47C7-917D-2F6B65521B57> /Applications/Adobe Illustrator CS4/*/Action
    0xd0ef000 -  0xd0f8fff +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 14.0.0 - 14.0.0) <04B2DA5B-B84C-487C-A70E-76163D14D08F> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS erver
    0xd2d3000 -  0xd2ecfcb +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 14.0.0 - 14.0.0) <27CE4290-30DD-477C-9DD4-D46D6022D8D5> /Applications/Adobe Illustrator CS4/*/AssetMgmt
    0xd2f5000 -  0xd326fe3 +com.adobe.amt.registration (AMTRegistration 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/registration.framework/Versions/A/registrat ion
    0xdd7b000 -  0xde4efef +com.adobe.coretech.adm (3.10x04 - 3.1) <369EAA04-C054-40EB-AC03-92CE99C7260C> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xe0cf000 -  0xe0d5ff7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 14.0.0 - 14.0.0) <0EA7F2D8-904D-4AFC-A177-8569F3E2286A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverter s
    0xe0d9000 -  0xe102fff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 14.0.0 - 14.0.0) <EF43DD3A-A797-450D-9FF7-4EFD246811A5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilToo l
    0xe108000 -  0xe117fd3 +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 14.0.0 - 14.0.0) <66929E97-D63A-46F2-9ADC-F8C10995DFC3> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xe11e000 -  0xe146fcb +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 14.0.0 - 14.0.0) <D2E6328E-B072-4F58-A8F4-191C1E7A3111> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConver sionSuite
    0xe156000 -  0xe16bfef +com.adobe.illustrator.plugins.Rasterize (Rasterize version 14.0.0 - 14.0.0) <20A55512-33F0-4669-BE49-F3ED9E2C1CC5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0xe16f000 -  0xe1a3fc3 +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 14.0.0 - 14.0.0) <45B1E4C5-0AEC-4C31-BF6E-ECC0888F9386> /Applications/Adobe Illustrator CS4/*/BrushManager
    0xe1ac000 -  0xe25afc8 +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 14.0.0 - 14.0.0) <11C2EC2C-29D3-462D-B3A2-771D85D66917> /Applications/Adobe Illustrator CS4/*/ColorHarmony
    0xe278000 -  0xe28dff0 +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 14.0.0 - 14.0.0) <65ADF72A-2398-43F7-9B05-52D7D592BA0E> /Applications/Adobe Illustrator CS4/*/ControlPalette
    0xe299000 -  0xe2c4ff0 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 14.0.0 - 14.0.0) <0B0B227F-AA5B-46FB-A6B6-60AE2BFAD347> /Applications/Adobe Illustrator CS4/*/KinsokuDlg
    0xe2d5000 -  0xe34dfdb +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 14.0.0 - 14.0.0) <FDFCF271-25E0-46B9-812C-EFB4E49B61A8> /Applications/Adobe Illustrator CS4/*/PaintStyle
    0xe359000 -  0xe607fe7 +com.adobe.illustrator.plugins.Scripting Support (Scripting Support version 14.0.0 - 14.0.0) <00ED474E-DA84-421D-A0BA-AC17357B1FED> /Applications/Adobe Illustrator CS4/*/Scripting Support
    0xe8c0000 -  0xe8c3ffb +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0xe9cd000 -  0xea48fde +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 14.0.0 - 14.0.0) <CB45F4C6-5333-417D-8997-C124973041FE> /Applications/Adobe Illustrator CS4/*/SwatchLibraries
    0xea59000 -  0xea87068 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 14.0.0 - 14.0.0) <DD7DBC72-EF5E-4F52-A102-794BF21F2498> /Applications/Adobe Illustrator CS4/*/SymbolPalette
    0xea90000 -  0xea94feb +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 14.0.0 - 14.0.0) <72429655-649D-4EFF-A0AF-DE2BE54FFDC6> /Applications/Adobe Illustrator CS4/*/ToolSelector
    0xea98000 -  0xeab1fef +com.adobe.illustrator.plugins.Workspaces (Workspaces version 14.0.0 - 14.0.0) <E065EBE1-AEF1-47B8-9933-EEB543767C5C> /Applications/Adobe Illustrator CS4/*/Workspaces
    0xeab8000 -  0xeacb04f +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 14.0.0 - 14.0.0) <E32A6710-064A-4731-8844-E63F5DC4094F> /Applications/Adobe Illustrator CS4/*/Mojikumi
    0xead2000 -  0xead5fff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 14.0.0 - 14.0.0) <B30D9BE4-9735-4704-AD8A-467E7C25B9A9> /Applications/Adobe Illustrator CS4/*/GeometryS
    0xead9000 -  0xeb00fe8 +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 14.0.0 - 14.0.0) <3A3FCCB7-D888-4949-94FB-74EA1892F2DE> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAtt ributes
    0xeb08000 -  0xeb0dfef +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 14.0.0 - 14.0.0) <A8E06D3D-22EB-4391-A488-39435E80F204> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0xeb11000 -  0xeb3dfff +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 14.0.0 - 14.0.0) <D0D9CCD1-0AEC-4C46-9AA3-F7F97ACCDEF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
    0xeb46000 -  0xeb4dff3 +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 14.0.0 - 14.0.0) <29196393-E41C-43EA-8C0C-6260FD7F61FC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
    0xeb51000 -  0xeb61fff +com.adobe.illustrator.plugins.DocInfo (Document Info version 14.0.0 - 14.0.0) <4314802B-CE2E-4AF5-9460-5809DEFF7360> /Applications/Adobe Illustrator CS4/*/DocInfo
    0xeb68000 -  0xeba0fef +com.adobe.illustrator.plugins.Snap (Snap version 14.0.0 - 14.0.0) <29FC35B5-A5D5-4F0C-B721-49E267315B13> /Applications/Adobe Illustrator CS4/*/Snap
    0xebb0000 -  0xebc0ff2 +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 14.0.0 - 14.0.0) <50DC2482-540D-4817-8D0E-158E626298DA> /Applications/Adobe Illustrator CS4/*/DropShadow
    0xebc6000 -  0xebcdfc0 +com.adobe.illustrator.plugins.ADMTP (Tool Palette version 14.0.0 - 14.0.0) <7E1766B5-2D51-4E83-B515-6F5149B134B2> /Applications/Adobe Illustrator CS4/*/ADMTP
    0xebd1000 -  0xebe0ff3 +com.adobe.illustrator.plugins.Segment Tools (Segment Tools version 14.0.0 - 14.0.0) <5ADD1377-AC2A-43E7-A418-FA83F4E7DF2F> /Applications/Adobe Illustrator CS4/*/Segment Tools
    0xebe5000 -  0xec02fda +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 14.0.0 - 14.0.0) <8BEBD742-F42F-49C5-A3F0-FA1C5285A7DA> /Applications/Adobe Illustrator CS4/*/ScatterBrushTool
    0xec09000 -  0xec0dfef +com.adobe.illustrator.plugins.GlobalAdjust (Reshape Tool version 14.0.0 - 14.0.0) <D6B5A699-E443-4D3A-87AA-FC7D8E2CB319> /Applications/Adobe Illustrator CS4/*/GlobalAdjust
    0xec11000 -  0xec30fcb +com.adobe.illustrator.plugins.ParticlePaint (Symbolism version 14.0.0 - 14.0.0) <4A4D97AA-0B5C-4311-83FE-288839029DA7> /Applications/Adobe Illustrator CS4/*/ParticlePaint
    0xec39000 -  0xec42fe7 +com.adobe.illustrator.plugins.Magic Wand (Magic Wand version 14.0.0 - 14.0.0) <93E02FBC-89CC-4486-B643-7F7B01E3C149> /Applications/Adobe Illustrator CS4/*/Magic Wand
    0xec46000 -  0xec5dff3 +com.adobe.illustrator.plugins.Liquify (Liquify version 14.0.0 - 14.0.0) <C16C9B41-5869-4A14-A5B7-8AC978B5FDFD> /Applications/Adobe Illustrator CS4/*/Liquify
    0xec61000 -  0xec68feb +com.adobe.illustrator.plugins.Lasso (Lasso version 14.0.0 - 14.0.0) <7C893464-927E-4EFC-B6FB-2F3E10F9A199> /Applications/Adobe Illustrator CS4/*/Lasso
    0xec6d000 -  0xec70fef +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 14.0.0 - 14.0.0) <79C5F1A2-6CF0-4A1D-9B50-7BE467DD80A6> /Applications/Adobe Illustrator CS4/*/KnifeTool
    0xec74000 -  0xeca8fdf +com.adobe.illustrator.plugins.EraserTool (EraserTool version 14.0.0 - 14.0.0) <1744EECA-69F1-4C93-AA06-B89075F3EEBE> /Applications/Adobe Illustrator CS4/*/EraserTool
    0xecb0000 -  0xecd8fec +com.adobe.illustrator.plugins.CalligBrushTool (Calligraphic Brush Tool version 14.0.0 - 14.0.0) <FA25241B-421C-49D6-BE9D-8BC1430E9828> /Applications/Adobe Illustrator CS4/*/CalligBrushTool
    0xecdf000 -  0xecf2ff7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 14.0.0 - 14.0.0) <D05C0C30-D456-4E98-9BC4-92C2294FB49F> /Applications/Adobe Illustrator CS4/*/BoundingBox
    0xecf6000 -  0xed21fd6 +com.adobe.illustrator.plugins.ArtBrushTool (Art Brush Tool version 14.0.0 - 14.0.0) <89FE2B11-D5DD-4DEA-966C-E1A85FB4CBAC> /Applications/Adobe Illustrator CS4/*/ArtBrushTool
    0xed28000 -  0xed87fcf +com.adobe.illustrator.plugins.PhotoshopImport (Photoshop Import version 14.0.0 - 14.0.0) <861DD58E-6EA7-4715-B877-5C75B596C85A> /Applications/Adobe Illustrator CS4/*/PhotoshopImport
    0xed9e000 -  0xfad0fff +com.adobe.psl (AdobePSL 11.0.0.1724 - 11.0.0.1724) <6BE27A60-E0F9-4483-8E57-2A7A5227D878> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0xfe04000 -  0xfe05ff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xfe0a000 -  0xfe36fff +com.adobe.illustrator.plugins.ExpressView Support (OS Express Views version 14.0.0 - 14.0.0) <4D362918-5276-46B4-9825-5CAE899E9EE5> /Applications/Adobe Illustrator CS4/*/ExpressView Support
    0xfe41000 -  0xfe8aff4 +com.adobe.illustrator.plugins.MPSParser (MPSParser version 14.0.0 - 14.0.0) <67607461-914F-440E-8624-381CC2A0079E> /Applications/Adobe Illustrator CS4/*/MPSParser
    0xfea0000 -  0xfed0fcc +com.adobe.illustrator.plugins.MPSExport (MPSExport version 14.0.0 - 14.0.0) <DD69AB2F-78AB-4225-9DCE-2141648F6E1E> /Applications/Adobe Illustrator CS4/*/MPSExport
    0xfee0000 -  0xfee1fff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 14.0.0 - 14.0.0) <4CBB7829-A13E-41B3-9273-2223506DE716> /Applications/Adobe Illustrator CS4/*/MPSCommon
    0xfee5000 -  0xff03ff4 +com.adobe.illustrator.plugins.Scribble (Scribble version 14.0.0 - 14.0.0) <66F69AF3-2A26-4B2A-88E8-64568F71EA80> /Applications/Adobe Illustrator CS4/*/Scribble
    0xff0a000 -  0xff16ff3 +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 14.0.0 - 14.0.0) <7288F843-177B-43CE-9876-AB66A84A2F69> /Applications/Adobe Illustrator CS4/*/Pathfinder
    0xff1a000 -  0xff2ffc4 +com.adobe.illustrator.plugins.WelcomeScreen (WelcomeScreenn version 14.0.0 - 14.0.0) <780173AB-6EAA-4EF6-9D79-99CE78F0BF06> /Applications/Adobe Illustrator CS4/*/WelcomeScreen
    0xff35000 -  0xff48fd7 +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 14.0.0 - 14.0.0) <2FC5A6F7-E157-4BE3-9490-657B1198825D> /Applications/Adobe Illustrator CS4/*/TransparencyPalette
    0xff4c000 -  0xff5dff6 +com.adobe.illustrator.plugins.SeparationPreview (Separation Preview version 14.0.0 - 14.0.0) <F0B42349-86B6-489E-A1ED-62DAB50BB12F> /Applications/Adobe Illustrator CS4/*/SeparationPreview
    0xff64000 -  0xff69fff +com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 14.0.0 - 14.0.0) <667209A1-821D-468E-B3F5-67ADCC0A5B59> /Applications/Adobe Illustrator CS4/*/PathSuite
    0xff6d000 -  0xff93fdf +com.adobe.illustrator.plugins.LiveBlends (Live Blends version 14.0.0 - 14.0.0) <5949CA4F-0265-4001-827A-FDF67CE6E1C4> /Applications/Adobe Illustrator CS4/*/LiveBlends
    0xff98000 -  0xffc6fcf +com.adobe.illustrator.plugins.Layers (Layers Palette version 14.0.0 - 14.0.0) <F13985B8-7110-4AC4-A93B-30A650274B81> /Applications/Adobe Illustrator CS4/*/Layers
    0xffce000 -  0xffe4fef +com.adobe.illustrator.plugins.KBSCPlugin (Keyboard Shortcuts version 14.0.0 - 14.0.0) <8BA6912E-AC74-4FCE-97FF-02BF2F81958D> /Applications/Adobe Illustrator CS4/*/KBSCPlugin
    0xffeb000 -  0xffecfff +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 14.0.0 - 14.0.0) <34B0A010-1099-474C-9B2B-4D923FB10287> /Applications/Adobe Illustrator CS4/*/FlattenS
    0xfff0000 -  0xfff6feb +com.adobe.illustrator.plugins.FileClipboardPref (FileClipboardPref version 14.0.0 - 14.0.0) <A968F7DC-F8B2-46A3-8C78-1D129B37588E> /Applications/Adobe Illustrator CS4/*/FileClipboardPref
    0xfffa000 - 0x10056fd2 +com.adobe.illustrator.plugins.ArtStyle (Art Style version 14.0.0 - 14.0.0) <DAA8C2E9-65A7-40ED-B8D5-FF78F297EDA6> /Applications/Adobe Illustrator CS4/*/ArtStyle
    0x10062000 - 0x10071ff3 +com.adobe.illustrator.plugins.AppBarControlsPlugin (NewPlugin version 14.0.0 - 14.0.0) <C50066DB-5E97-4C95-AECB-BD0A1BBD2769> /Applications/Adobe Illustrator CS4/*/AppBarControlsPlugin
    0x10077000 - 0x100a7ffb +com.adobe.illustrator.plugins.AltGlyphPal (AdobeAltGlyphPalette version 14.0.0 - 14.0.0) <FC1467B2-2A62-408E-A38D-A1F8EC209A52> /Applications/Adobe Illustrator CS4/*/AltGlyphPal
    0x100b8000 - 0x100c9ff6 +com.adobe.illustrator.plugins.Align (AdobeAlignObjects version 14.0.0 - 14.0.0) <1E8046C8-EAE8-445B-83F3-B2AF0F4D3452> /Applications/Adobe Illustrator CS4/*/Align
    0x100ce000 - 0x10105fff +com.adobe.illustrator.plugins.ActionPalette ( Action Palette version 14.0.0 - 14.0.0) <49FF537C-26F4-450A-B7DE-59859F5A6DC0> /Applications/Adobe Illustrator CS4/*/ActionPalette
    0x1010f000 - 0x101a4fc1 +com.adobe.illustrator.plugins.PDF Format (PDF Format version 14.0.0 - 14.0.0) <C88425A7-C3DA-493B-AC3E-48AB988A3CD4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Format.aip/Contents/MacOS/PDF Format
    0x101c2000 - 0x10211ff3 +FilterPort (??? - ???) <7CF9F9BD-8C11-4F4C-A56F-D02923DA26C4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x102b0000 - 0x102f3fef +ADMEveParserCarbon (??? - ???) <E2B97059-2ECE-46E3-B0FA-E99EA7035CEC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ADMEveParserCarbon.bundle/Contents/MacOS/ADME veParserCarbon
    0x1030d000 - 0x10315feb +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 14.0.0 - 14.0.0) <98A0EA55-C4D8-4204-9573-61592D2660A1> /Applications/Adobe Illustrator CS4/*/TextWrapDlg
    0x10319000 - 0x10326fff +com.adobe.illustrator.plugins.Advanced Select (Advanced Select version 14.0.0 - 14.0.0) <C0673233-D6ED-4333-B8DC-1EDB6B9436B0> /Applications/Adobe Illustrator CS4/*/Advanced Select
    0x1033b000 - 0x1033ffff +com.adobe.illustrator.plugins.TypeCase (Change Case version 14.0.0 - 14.0.0) <7DF88FF2-4C03-499F-A390-0C4D9C17B27D> /Applications/Adobe Illustrator CS4/*/TypeCase
    0x1344c000 - 0x13aeefef +com.macromedia.Flash Player.authplaylib (10.0.2.31 - 1.0.1d333) <E0851D48-16C9-4BDC-B3A7-7BAC9E7638F5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Resources/AuthPlayLib.bu ndle/Contents/MacOS/AuthPlayLib
    0x13c37000 - 0x13c63ff3  com.apple.audio.CoreAudioKit (1.6.3 - 1.6.3) <7D47B1D3-4410-3524-BC47-FCDF49E48DB5> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x14d0c000 - 0x14d64fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x15c2e000 - 0x15c8aff2 +AdobeUpdater (??? - ???) <064CFAA4-1CAF-46E3-BEBF-04948641C927> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeUpdater.framework/Versions/A/AdobeUpda ter
    0x15f00000 - 0x16382fe3 +AdobeLM_libFNP.dylib (??? - ???) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/AdobeLM_libFNP. dylib
    0x16600000 - 0x16707fcf +com.adobe.versioncue (??? - 4.0.1.095) /Library/Application Support/Adobe/*/VersionCue.framework/VersionCue
    0x16853000 - 0x168aefe7 +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 14.0.0 - 14.0.0) <586E2428-342D-4C78-89F0-56A0FD10246A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x40000000 - 0x400ae030 +AdobeJP2K (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe8e000 - 0x8fec0aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90021ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9007e000 - 0x9014effb  com.apple.ImageIO.framework (3.1.2 - 588) <1AA18570-B5F8-3B1E-9D0A-0EDD866E5131> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90151000 - 0x9016efff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x9016f000 - 0x9019eff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x9019f000 - 0x90200ffb  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90210000 - 0x90210fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90238000 - 0x902a7fff  com.apple.Heimdal (2.2 - 2.0) <8ACC5067-441D-31C2-ACBD-4527C1AD73EF> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x902a8000 - 0x902b1ff3  com.apple.CommonAuth (2.2 - 2.0) <6F207851-084B-3354-A1B2-63065BC584F6> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x90587000 - 0x90c13ff5  com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90c14000 - 0x90c1afff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90c1b000 - 0x90c1bfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90c1c000 - 0x90c39ff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90c3a000 - 0x90c48ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x90e4d000 - 0x90e51ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x90ea5000 - 0x90eadfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90ef0000 - 0x90ef3ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <16DCE20A-9790-369A-94C1-B7954B418C77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90ef4000 - 0x90f81ff7  com.apple.CoreText (220.22.0 - ???) <EA7210A7-DECC-3F76-8A66-D4E41859B3C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90f82000 - 0x91a17ff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91a18000 - 0x91a80fff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x91c89000 - 0x91c94ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91c95000 - 0x91cbaff9  libJPEG.dylib (??? - ???) <0E0B7B77-582B-3D85-9CCA-ACFBCF196C98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91cbb000 - 0x91d5ffff  com.apple.QD (3.40.1 - ???) <B5650C5E-AB41-3758-84A1-5A97EDCD8EFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91d60000 - 0x91dfcfff  com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91f45000 - 0x91f47ff9  com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91f48000 - 0x91f49ff7  libsystem_sandbox.dylib (??? - ???) <036370E2-9D3E-38B8-B3A5-9056C57E780E> /usr/lib/system/libsystem_sandbox.dylib
    0x91f81000 - 0x91f81fff  libOpenScriptingUtil.dylib (??? - ???) <E4C22B65-9493-31D5-9D46-19BD70975587> /usr/lib/libOpenScriptingUtil.dylib
    0x91f82000 - 0x91f83ff7  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
    0x91f84000 - 0x91f88ffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91f89000 - 0x91fbfff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9232f000 - 0x92344ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92345000 - 0x923ccfff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x923cd000 - 0x9245afe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9245d000 - 0x924c1fff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x924c2000 - 0x924e4ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x924e5000 - 0x9250fff1  com.apple.CoreServicesInternal (113.20 - 113.20) <13FA1378-67CB-3579-BF83-D11E9425799F> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9256d000 - 0x92765ff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92766000 - 0x9276eff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x927a3000 - 0x927b1fff  com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x927b2000 - 0x927b6fff  libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927b7000 - 0x927ccfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x927cd000 - 0x927cdff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x927ce000 - 0x927e1ff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x92b0f000 - 0x92b13ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x92e5b000 - 0x92e5dffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92e5e000 - 0x92e68ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ee8000 - 0x92ee9ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x92eea000 - 0x92eeafff  com.apple.vecLib (3.7 - vecLib 3.7) <8CC

Maybe you are looking for

  • How can I see what I'm shooting with my Iphone in realtime on my Ipad

    Hi Everyone, In a few days time, I need to make a short film with an iphone. And in order to make things easier, I would like to connect my Iphone to my Ipad, preferably via BLUETOOTH ('cause I'll be shooting on the streets where there is no WIFI and

  • CS 3.0.1 will not open InDesign files created in 2008  - it says a plug-in may be missing.

    My CS 3.0.1 will not open InDesign files created in 2008.  It says a plug-in may be missing.  I did have a computer crash since I last opened it.  I've tried changing the extension to inx, but that doesn't work.  I cannot get the file to open.  Can s

  • How to use the readLine()  method when reading data from a URL?

    Hello, I have a URL which contains text input. The only way to get the data from this URL is by opening a URL connection to it. I would like to get the data from this URL but at the same time I would like to be able to use readLine() method of Buffer

  • Plan migration new domain.

    Hi Guys, I am planning a stage migration from Domain_one to domain.two and an upgrade (New install) to exchange 2013. You will notice the underscore in Domain_one which is the reason for the migration as we cannot install exchange 2013 (2007) with un

  • Export score to a table

    I want to post a quiz on our intranet but would want to simply export the score to a table to make a calculation of average scores by users completing the test. How could this be done