Foreign fonts

I created a project using Director MX 2004 (on a Macintosh). I need to translate it in to Hungarian, Russian, Chinese, and Japanese. Where can I get these foreign language fonts that can be used with Director MX 2004?

Here is an example of using a custom scrollbar to scroll an image <http://nonlinear.openspark.com/tips/oop/scrollBar/>.  (The fact that there is text beside the image is irrelevant; the technique would work just as well with only images).
Not so long ago, I created a movie which scrolled several pages of text in Hebrew, using Director MX 2004.  The pages were all stored as 8-bit grayscale images.   I used the grayscale image as the alpha channel for a coloured 32-bit image, so that the white pixels in the 8-bit image became transparent.  I used a modification of the behavior in the demo movie above to scroll the image of the text and a parchment background simultaneously.  The result was that the text appeared to be written on the parchment.  The person who dealt with the preparing the images of the text did not have to have any knowledge of Director.
Director MX 2004 will not display Unicode text, regardless of the font you use.  You must use Director 11.x (preferably 11.5) if you want to use Unicode text in a Director text member.  I suggest that you copy the foreign text from your Word document and paste it into  graphics application which can handle Unicode text.  You can then save the resulting image in a format that Director can import.
The text that you pasted was probably in Helvetica in the original Word document, and Director tried to oblige you by using the same font.

Similar Messages

  • Quotation marks converted to foreign fonts after upload to another server.

    I've uploaded my website with Fetch and the quotation marks are converted into foreign fonts.
    How do I correct?

    I've uploaded my website with Fetch and the quotation marks are converted into foreign fonts.
    How do I correct?
    Try this:
    iWeb > Preferences > Autocorrection: Uncheck box for "Use Smart Quotes" and republish and reupload.
    But the real problem is your server. See the server settings section of this note:
    http://homepage.mac.com/thgewecke/iwebchars.html

  • Why don't i see my foreign font?

    I see the foreign font in fontbook, in pages I see the fonts name, but the font does not display in the laguage (Hebrew) I want.

    Ruty wrote:
    I see the foreign font in fontbook, in pages I see the fonts name, but the font does not display in the laguage (Hebrew) I want.
    You can't normally switch languages on a computer by switching fonts.  If you want to type Hebrew, you have to go to system prefs/language & text/input sources and check the box for Hebrew, plus the box for Show Input Menu in Menu Bar and the box for Keyboard Viewer.  Then you select Hebrew in the "flag" menu at the top right of the screen and type away.  Select Keyboard Viewer to see which key does what.

  • Foreign Font formatting problem

    I'm using Pages 1.0
    When I use a foreign font in my document many of the punctuation keys on the keyboard are used for letters in this language, and it appears that Pages recognizes them still as punctuation and does automatic formatting accordingly. For example, the hyphen key and semicolon key are letters in the language I'm using but Pages keeps putting line breaks and hypens there, thus messing up my document with automatic formatting. I know how to turn off the hypens, but is there a way to turn off all automatic formatting?
    Thanks for any help.

    However, I
    don't quite understand the difference between
    keyboard layouts and various language fonts. When I
    activate the mongolian keyboard layout, no matter
    which font I choose, it basically looks the same.
    How do you get Mongolian fonts to work with the
    mongolian keyboard layout.
    Any Mongolian fonts you have from the past that are coded to replace Latin and thus work with the US layout will not work with the keyboard you downloaded, which works only with Unicode fonts (the basis for OS X operations in general). So if you want different fonts than Lucida Grande, you will need to download some of those mentioned, or if you have Office2004 installed I think these should work: Arial, Monaco, Times, and Times New Roman. You can tell which fonts on your system have the right characters by using Character Palette (Edit > Special Characters) and checking the font variation pane for 04af and 04e9. A better list of fonts is at:
    http://m10lmac.blogspot.com/2006/11/typing-mongolian-cyrillic.html

  • I installed Armenian fonts in my computer (Foreign font) and now firefox displays these fonts instead of English fonts

    I installed Armenian fonts in my computer (Foreign font) and now firefox displays these fonts instead of English fonts

    You can try to clear the font cache(s).
    * http://www.creativetechs.com/iq/garbled_fonts_troubleshooting_guide.html - CreativeTechs Tips: Garbled Fonts Troubleshooting Guide
    * http://www.thexlab.com/faqs/multipleappsquit.html - Font Book 2.0 Help: Checking for damaged fonts

  • ITunes 10.1.6.7 update has broken my foreign font display - Asian characters are now squares. How do I fix this?

    The iTunes 10.1.6.7 update has broken my foreign font display - Asian characters are now squares.
    They are fine on my iPhone, copying to other documents & through the Last FM scrobbler, yet iTunes shows songs incorrectly. I've fiddled with the ID3/Unicode settings - nothing changes.
    For example: iTunes shows a bunch of squares, yet when I copy and paste them here it becomes ~  일렉트로보이즈
    This was not a problem earlier - everything was fine in the four years or so I've used iTunes until, I believe, this update. If it was not the update, I'm not sure what else it could be?
    Any suggestions on how to fix this? Thank you!

    Thank you so much! I vigorously searched around these parts and the general internet before posting and found nothing - it's so simple, too
    Hahaha, turns out it was Windows, not iTunes, that broke my font

  • Foreign Fonts in dynamic XML

    I'm working on a learning language app, so far, that teaches
    Thai to English speakers and English to Thai speakers. I'm pulling
    lesson words from an access database that is storing foreign
    characters just fine. Here is the xml page for the first lesson of
    eng/thai -
    http://www.netspeaknow.com/getlessonwords1.cfm
    and code:
    <cfquery name="getLastLessonID" datasource="langDB">
    SELECT lastLessonID
    FROM Users
    WHERE userID = 1
    </cfquery>
    <cfif #getLastLessonID.RecordCount# EQ 1>
    <cfquery name="getLessonWords" datasource="langDB">
    SELECT LessonMP3.filePath, LessonWords.displayWord,
    LessonWords.phonetic, LessonWords.definition
    FROM LessonWords INNER JOIN LessonMP3 ON LessonWords.sndID =
    LessonMP3.sndID
    where lessonPlanID = 18
    </cfquery>
    </cfif>
    <cfcontent type="text/xml" reset="yes">
    <cfsetting showdebugoutput="No"
    enablecfoutputonly="Yes">
    <?xml version="1.0" encoding="UTF-8"?>
    <cfoutput>
    <results_packet>
    <cfloop query="getLessonWords">
    <rec displayword="#displayWord# - #phonetic#
    /#definition#" sndurl="#filePath#" />
    </cfloop>
    </results_packet>
    </cfoutput>
    Here's the error I'm get trying create the same document with
    Thai characters.
    http://www.netspeaknow.com/getlessonwords2.cfm
    I don't have any problem displaying foreign characters in my
    browser:
    Here's a page that is pulling the same data for the same
    thai/eng lesson.
    http://www.netspeaknow.com/lessonview_thai.cfm
    Does anyone know how I can get foreign characters, not just
    Thai, into my XML document?

    skyhead03 wrote:
    > <cfcontent type="text/xml" reset="yes">
    > <cfsetting showdebugoutput="No"
    enablecfoutputonly="Yes">
    enablecfoutputonly="Yes", you need to wrap *all* the xml
    output in a cfoutput,
    no xml header/root is getting sent to the browser which is
    probably what "XML
    Parsing Error: not well-formed" is all about. try this:
    > <cfoutput>
    <?xml version="1.0" encoding="UTF-8"?>
    > <results_packet>
    > <cfloop query="getLessonWords">
    > <rec displayword="#displayWord# - #phonetic#
    /#definition#"
    > sndurl="#filePath#" />
    > </cfloop>
    > </results_packet>
    > </cfoutput>
    >
    > Here's a page that is pulling the same data for the same
    thai/eng lesson.
    >
    http://www.netspeaknow.com/lessonview_thai.cfm
    that page is lying:
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    might indicate other encoding problems lying in wait for you.
    > Does anyone know how I can get foreign characters, not
    just Thai, into my XML
    > document?
    "just use unicode"

  • Safari Displays Pages in Foreign Font

    After the last software update, many pages look like the following screenshot in Safari. Some sites are fine, others have weird fonts all over them. How do I fix this?
    http://img641.imageshack.us/img641/979/screenshot20100130at112.png

    Font Book, select all fonts, validate them, and finally resolve all duplicates. Restart and things should work normally.

  • Foreign fonts display in character drop down menu

    When designing a sign for a customer, I take a photo of the existing signs, place on a new document in illustrator cs6, type text then scroll through the text character drop down menu to match the new sign text to the font that is currently on the customers signs, business card etc.
    There are many different types of fonts and I would prefer not to have the adobe system fonts, asian, arabic and other fonts that are not used for my purposes.
    Is there a way to remove them from this list.
    I have tried deleteing them from the window 7 font manager but they are essential system fonts and it displays a message that some programes will not work if I delete them.
    I have tried show/hide in the windows 7 font manager but this has no effect on the fonts displayed in illustrator.
    Any help would be appreciated.

    update...
    Seems windows 7 fonts can be set to show/hide for some programs but it does not work in illustrator. I have found a helpful program by Adobe Air called Font Picker which displays only the fonts installed and excludes hidden fonts (windows 7 font manager).
    It would be good to have a search facility that has fonts catagorised. There are a few out there where you can tag them but I don't see myself sitting through 35000+ fonts I have collected over the years.
    I did install Illustrator CC which has a few added options under the character font drop down menu. It also has a link to Typekit on Adobe Cloud but would you believe it didn't have Calligri which is a very common script font.
    Has anyone on this forum found a solution to this before. There are may questions related to this on the web but no answers or feed back.

  • Missing letters in foreign font

    I am making credits and lower thirds in Turkish, using the papyrus font. Most of it worked, but I'm missing a few letters. ( ş and ğ) When I type them, my title defaults to American Typewriter font.
    If this is an issue with Papyrus, how do I tell if a font is complete for the Turkish alphabet before I redo things? Do I need a unicode version of the font - and how do I tell if I have one? And where does one find the character map? I have a diagram of the Turkish keyboard that works for everything but those two letters!
    Thanks.

    Open Font Book, select your font and set the preview to "Repertoire" from the menu bar. This will show you all available characters.
    Set the preview to "Show Font Info" to find the file type and other information, including available languages.

  • Foreign fonts don't display or print

    There are fonts that install with Mac OS that use non-Roman characters, e.g., Japanese, Hindu, and Korean. There is also a Greek font called Symbol. In the case of Symbol and some others, selecting the font means you get that font onscreen and at the printer. In others, for some reason, that doesn't happen. You select the font, e.g., Geeza Pro, Naskh, and Arial Hebrew, and what you get onscreen is Roman type. I'm trying to use a Greek font other than Symbol; I loaded it so that it shows up in Illustrator's list, but when I type with it, I get plain old vanilla Roman. What am I doing wrong or not doing at all? What does it take to make the font work? I believe it's a Truetype font, if that matters.

    What am I doing wrong or not doing at all? What does it take to make the font work?
    To type in another script on all modern computers you need to change the keyboard layout, not the font. You go to system prefs/language & text/input sources and check the boxes for the ones you want, plus the box for "Show Input Menu in Menu Bar." Then you go to the "flag" menu at the top right of the screen and choose your language and type. The font takes care of itself.
    An exception is if you have a old non-Unicode Symbol font on your machine. This maps some greek stuff used in math to the normal latin character positions, so changing the font will change the characters. But it is best not to use this kind of Symbol, because there is no guarantee that any modern computer will display greek instead of the latin dictated by current standards. Instead for greek you should use the greek keyboard layout provided.

  • Safari Slow to startup, wrong fonts, crashes after loading apple page

    I'm running Safari 2.0.2 on a new Mac Mini, OS 110.4.3.
    I was doing several things when it started to quit working; running quicktime movies, running Azureus (not too well configured) and adding a CD's worth of fonts to Fontbook
    I started seeing performance hits which I think were due to Azureus; their FAQ said to upgrade to Java 1.5 to s
    help this issue. Before I did that, I overwhelmed Fontbook with a massive addition of fonts. The quicktime movies stopped, Safari wasn't booting, and forced quit didn't respond at all. I had to unplug the machine.
    Upon rebooting, Safari would only load the Apple home page, and it had properly formatted headings for the articles but the body text was in some alternate character set. I got a spinning wheel that wouldn't let me select other menu options for a long time. I tried to Reset Safari and it quit. I loaded a local html page and was able to access the preferences in Safari and clear cache, and history. The preferences showed the foreign font as Times, so I selected a different Times variant that displayed properly in preferences, but when I tried to reboot it, the font hadn't changed. As suggested in another thread, I tried to eliminate font duplicate problems by only leaving System fonts active and turning everything else off, but the incorrect font showed when I tried to start it again.
    I'm not entirely clear on where all the Safari preference files reside, but found some in the Library folder and also deleted icon folders. The Safari help app also crashed intermittently and sometimes wouldn't respond.
    I had found a link to a page that I believe was an apple tech note explaining the procedure for removing the pref files and related files, but I didn't copy it down and after checking every troubleshooting link when I brought it back up in the admin account, couldn't find it again.
    I threw out Azureus. Before I did that I stopped all torrents (I'm not sure if they run in the background when it's shut down - it sure seemed like they did.)
    Safari boots fine in my duplicate admin account, as does Opera. But my primary user account also won't boot Opera or an FTP client I have.
    I installed Firefox in the duplicate admin account and it works fine in the primary user account where Safari and Opera won't boot.
    Java 5 is a new iron in the fire too, but with it selected as the primary java version, no problems show up in the Admin account.
    I really don't know what else to do. It doesn't seem to make sense to reinstall Safari since it runs in the other account. Any suggestions?
    Forthwith, the crash reports and console log. People seemed to indicate they might be helpful in another thread.
    Thanks in advance for any help you might offer.
    CONSOLE LOG:
    Mac OS X Version 10.4.3 (Build 8F46)
    2006-01-07 17:22:25 -0800
    2006-01-07 17:22:27.007 SystemUIServer[255] lang is:en
    2006-01-07 17:25:50.105 Safari[274] An uncaught exception was raised
    2006-01-07 17:25:50.137 Safari[274] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 17:25:50.137 Safari[274] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 17:25:54 arthur-kegerreis-mac-mini crashdump[279]: Safari crashed
    Jan 7 17:25:56 arthur-kegerreis-mac-mini crashdump[279]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    2006-01-07 17:28:19.676 -BringToFront[290] Checking for updates
    2006-01-07 17:34:56.079 SyndicationAgent[296] WARNING: Syndication database thread didn't close in 10 seconds. Timing out.
    2006-01-07 17:39:09.871 SyncServer[306] A Sync Server is already running on this computer, exiting process.
    2006-01-07 17:41:52.895 Safari[295] An uncaught exception was raised
    2006-01-07 17:41:52.896 Safari[295] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 17:41:52.896 Safari[295] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 17:41:55 arthur-kegerreis-mac-mini crashdump[307]: Safari crashed
    Jan 7 17:41:56 arthur-kegerreis-mac-mini crashdump[307]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    2006-01-07 17:43:19.980 Safari[309] An uncaught exception was raised
    2006-01-07 17:43:19.980 Safari[309] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 17:43:19.980 Safari[309] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 17:43:21 arthur-kegerreis-mac-mini crashdump[311]: Safari crashed
    Jan 7 17:43:22 arthur-kegerreis-mac-mini crashdump[311]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    Jan 7 17:44:14 arthur-kegerreis-mac-mini crashdump[314]: Opera 6.03 crashed
    Jan 7 17:44:15 arthur-kegerreis-mac-mini crashdump[314]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Opera 6.03.crash.log
    ### MRJPlugin: getPluginBundle() here. ###
    ### MRJPlugin: CFBundleGetBundleWithIdentifier() succeeded. ###
    ### MRJPlugin: CFURLGetFSRef() succeeded. ###
    2006-01-07 17:49:36.641 Safari[318] An uncaught exception was raised
    2006-01-07 17:49:36.641 Safari[318] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 17:49:36.641 Safari[318] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 17:49:39 arthur-kegerreis-mac-mini crashdump[320]: Safari crashed
    Jan 7 17:49:40 arthur-kegerreis-mac-mini crashdump[320]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    2006-01-07 18:03:56.599 Safari[341] An uncaught exception was raised
    2006-01-07 18:03:56.600 Safari[341] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 18:03:56.600 Safari[341] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 18:03:58 arthur-kegerreis-mac-mini crashdump[343]: Safari crashed
    Jan 7 18:03:58 arthur-kegerreis-mac-mini crashdump[343]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    HELP VIEWER.CRASH.LOG:
    Host Name: arthur-kegerreis-mac-mini
    Date/Time: 2006-01-07 15:31:11.022 -0800
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Help Viewer
    Path: /System/Library/CoreServices/Help Viewer.app/Contents/MacOS/Help Viewer
    Parent: WindowServer [203]
    Version: 3.0.0 (144.1)
    Build Version: 139
    Project Name: HelpViewer
    Source Version: 1440400
    PID: 235
    Thread: 2
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x928e4620
    Thread 0:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x931711e0 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x93170874 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x931706e0 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x9364e904 _DPSNextEvent + 384
    8 com.apple.AppKit 0x9364e5c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.AppKit 0x9364ab0c -[NSApplication run] + 472
    10 com.apple.AppKit 0x9373b618 NSApplicationMain + 452
    11 com.apple.helpviewer 0x00002a90 0x1000 + 6800
    12 com.apple.helpviewer 0x000021c4 0x1000 + 4548
    13 com.apple.helpviewer 0x00002068 0x1000 + 4200
    Thread 1:
    0 libSystem.B.dylib 0x9004d70c fsync + 12
    1 com.apple.Foundation 0x92902c7c _NSWriteBytesToFile + 400
    2 com.apple.Foundation 0x92902ad8 -[NSData writeToFile:atomically:] + 104
    3 com.apple.Foundation 0x92902a30 -[NSFileManager createFileAtPath:contents:attributes:] + 88
    4 com.apple.Foundation 0x929029b4 -[NSFileManager(NSURLExtras) webcreateFileAtPathWithIntermediateDirectories:contents:attributes:directoryAttribu tes:] + 128
    5 com.apple.Foundation 0x929008d0 -[NSURLCache _diskCacheExecuteWrite:] + 348
    6 com.apple.Foundation 0x928f95e8 -[NSURLCache _diskCacheSync] + 256
    7 com.apple.CoreFoundation 0x90771ae0 __CFRunLoopDoTimer + 184
    8 com.apple.CoreFoundation 0x9075e458 __CFRunLoopRun + 1680
    9 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    10 com.apple.Foundation 0x928f1cdc +[NSURLCache _diskCacheSyncLoop:] + 152
    11 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    12 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 Crashed:
    0 com.apple.Foundation 0x928e4620 _NSRaiseError + 264
    1 com.apple.Foundation 0x928e435c +[NSException raise:format:] + 40
    2 com.apple.Foundation 0x92907044 -[NSConcreteFileHandle readDataOfLength:] + 508
    3 com.apple.Foundation 0x92907844 -[NSHTTPCookieDiskStorage(NSInternal) _saveCookies] + 292
    4 com.apple.Foundation 0x929075ec saveTimerCallback + 96
    5 com.apple.CoreFoundation 0x90771ae0 __CFRunLoopDoTimer + 184
    6 com.apple.CoreFoundation 0x9075e458 __CFRunLoopRun + 1680
    7 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    8 com.apple.Foundation 0x928f0b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    9 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    10 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928d8664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928d859c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95422870 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x9077099c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928d0840 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x936eb4dc -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x00000000928e4620 srr1: 0x000000000202f030 vrsave: 0x0000000000000000
    cr: 0x24024442 xer: 0x0000000000000007 lr: 0x00000000928e45f8 ctr: 0x00000000928a645c
    r0: 0x0000000000000000 r1: 0x00000000f0182400 r2: 0x00000000a28a4508 r3: 0x00000000f0181fb0
    r4: 0x0000000000000000 r5: 0x00000000928a5d84 r6: 0x00000000f0182034 r7: 0x00000000000000ff
    r8: 0x00000000f0182020 r9: 0x0000000004dfd3c0 r10: 0x00000000909be648 r11: 0x0000000024024442
    r12: 0x00000000928a645c r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000a28c7720 r18: 0x00000000a28c7720 r19: 0x00000000a28c7720
    r20: 0x0000000000000009 r21: 0x00000000ffffffff r22: 0x0000000005501c78 r23: 0x0000000090a285cc
    r24: 0x0000000000000000 r25: 0x000000000057e000 r26: 0x0000000005916f70 r27: 0x00000000ffffffff
    r28: 0x00000000057eabb0 r29: 0x00000000a28aad28 r30: 0x00000000ffffffff r31: 0x00000000928e4528
    Binary Images Description:
    0x1000 - 0xafff com.apple.helpviewer 3.0.0 (144.1) /System/Library/CoreServices/Help Viewer.app/Contents/MacOS/Help Viewer
    0x4ce5000 - 0x4ce7fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x52fd000 - 0x5303fff com.apple.DictionaryServiceComponent 1.0.0 /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x90210fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90212000 - 0x90265fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x906affff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073b000 - 0x90814fff com.apple.CoreFoundation 6.4.4 (368.18) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085d000 - 0x9085dfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085f000 - 0x90961fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909bb000 - 0x90a3ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a69000 - 0x90ad7fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aee000 - 0x90b00fff libauto.dylib /usr/lib/libauto.dylib
    0x90b07000 - 0x90ddefff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e44000 - 0x90ec4fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0e000 - 0x90f4ffff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f64000 - 0x90f7cfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8c000 - 0x9100dfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91053000 - 0x9107cfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108d000 - 0x9109bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109e000 - 0x91260fff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91363000 - 0x9136cfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91373000 - 0x9139afff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ad000 - 0x913b5fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913ba000 - 0x913dbfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913e1000 - 0x913e9fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913ed000 - 0x9146bfff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a9000 - 0x914a9fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914ab000 - 0x914e3fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fe000 - 0x915cbfff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91620000 - 0x916b3fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916fa000 - 0x917b7fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f5000 - 0x91853fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91881000 - 0x918a5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918b9000 - 0x918defff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918f1000 - 0x91933fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194f000 - 0x91963fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91971000 - 0x919aafff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bf000 - 0x91a85fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad2000 - 0x91ae7fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aec000 - 0x91b08fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0d000 - 0x91b7cfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b93000 - 0x91b97fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b99000 - 0x91bcafff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bce000 - 0x91c11fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c18000 - 0x91c31fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c36000 - 0x91c39fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c3b000 - 0x91c3bfff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3d000 - 0x91d13fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d1b000 - 0x91d3afff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91da6000 - 0x91e0bfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e15000 - 0x91ea7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ec1000 - 0x92451fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92499000 - 0x927a9fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927d6000 - 0x92862fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928a4000 - 0x92acefff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bec000 - 0x92ccafff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cea000 - 0x92dd8fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dea000 - 0x92e08fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e13000 - 0x92e6dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e8b000 - 0x92e8bfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e8d000 - 0x92ea1fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92eb9000 - 0x92ec9fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ed5000 - 0x92eeafff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92efc000 - 0x92f83fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92f97000 - 0x92fa2fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fac000 - 0x92fd9fff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92ff3000 - 0x93003fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9300f000 - 0x93075fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930a6000 - 0x930f8fff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93124000 - 0x93141fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93153000 - 0x93160fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93169000 - 0x9347bfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935c7000 - 0x935d3fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93644000 - 0x93644fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93646000 - 0x93c79fff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94005000 - 0x94074fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940ad000 - 0x94177fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941cb000 - 0x941cbfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941cd000 - 0x94345fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9438f000 - 0x943ccfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x943d4000 - 0x94424fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945c7000 - 0x945d6fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945de000 - 0x945eafff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9462f000 - 0x94647fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95420000 - 0x954acfff com.apple.WebKit 416.11 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95507000 - 0x955fbfff com.apple.JavaScriptCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9564c000 - 0x95950fff com.apple.WebCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95ad5000 - 0x95afefff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9619a000 - 0x961d9fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x99fc4000 - 0x9a108fff com.apple.helpui 144.4 /System/Library/PrivateFrameworks/HelpUI.framework/Versions/A/HelpUI
    SAFARI.CRASH.LOG:
    ===== Display starts at offset 411783 within file of length 542855. ====
    ===== Use File->Reload (Cmd-R) to display more. ====
    sis.framework/Versions/A/LangAnalysis
    0x918b9000 - 0x918defff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918f1000 - 0x91933fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194f000 - 0x91963fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91971000 - 0x919aafff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bf000 - 0x91a85fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad2000 - 0x91ae7fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aec000 - 0x91b08fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0d000 - 0x91b7cfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b93000 - 0x91b97fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b99000 - 0x91bcafff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bce000 - 0x91c11fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c18000 - 0x91c31fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c36000 - 0x91c39fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c3b000 - 0x91c3bfff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3d000 - 0x91d13fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d1b000 - 0x91d3afff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91da6000 - 0x91e0bfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e15000 - 0x91ea7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ec1000 - 0x92451fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92499000 - 0x927a9fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927d6000 - 0x92862fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928a4000 - 0x92acefff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bec000 - 0x92ccafff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cea000 - 0x92dd8fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dea000 - 0x92e08fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e13000 - 0x92e6dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e8b000 - 0x92e8bfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e8d000 - 0x92ea1fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92eb9000 - 0x92ec9fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ed5000 - 0x92eeafff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92efc000 - 0x92f83fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92f97000 - 0x92fa2fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fac000 - 0x92fd9fff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92ff3000 - 0x93003fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9300f000 - 0x93075fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930a6000 - 0x930f8fff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93124000 - 0x93141fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93153000 - 0x93160fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93169000 - 0x9347bfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935c7000 - 0x935d3fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935d8000 - 0x935f9fff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93644000 - 0x93644fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93646000 - 0x93c79fff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94005000 - 0x94074fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940ad000 - 0x94177fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941cb000 - 0x941cbfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941cd000 - 0x94345fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9438f000 - 0x943ccfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x943d4000 - 0x94424fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x944b4000 - 0x944ecfff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9452f000 - 0x9454bfff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9455f000 - 0x945a3fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x945c7000 - 0x945d6fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945de000 - 0x945eafff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9462f000 - 0x94647fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94a8f000 - 0x94bbdfff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94c4f000 - 0x94c5efff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94c66000 - 0x94c93fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94c9a000 - 0x94caafff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94cae000 - 0x94cdcfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94cec000 - 0x94d09fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95420000 - 0x954acfff com.apple.WebKit 416.11 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95507000 - 0x955fbfff com.apple.JavaScriptCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9564c000 - 0x95950fff com.apple.WebCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95ad5000 - 0x95afefff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9a344000 - 0x9a377fff com.apple.Syndication 1.0.2 (42) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a393000 - 0x9a3a3fff com.apple.SyndicationUI 1.0.2 (42) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Host Name: arthur-kegerreis-mac-mini
    Date/Time: 2006-01-07 17:02:49.797 -0800
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Safari
    Path: /Applications/Internet/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [55]
    Version: 2.0.2 (416.12)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4161200
    PID: 218
    Thread: 2
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x928e4620
    Thread 0:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x931711e0 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x93170874 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x931b5ca4 AcquireNextEventInMode + 72
    7 com.apple.HIToolbox 0x9321b130 IsUserStillTracking(MenuSelectData*, unsigned char*) + 252
    8 com.apple.HIToolbox 0x93208370 TrackMenuCommon(MenuSelectData&, unsigned char*) + 756
    9 com.apple.HIToolbox 0x932060bc MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 188
    10 com.apple.HIToolbox 0x93205c7c MenuSelect + 100
    11 com.apple.AppKit 0x93651254 _NSHandleCarbonMenuEvent + 168
    12 com.apple.AppKit 0x9364ec84 _DPSNextEvent + 1280
    13 com.apple.AppKit 0x9364e5c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    14 com.apple.Safari 0x00006ef0 0x1000 + 24304
    15 com.apple.AppKit 0x9364ab0c -[NSApplication run] + 472
    16 com.apple.AppKit 0x9373b618 NSApplicationMain + 452
    17 com.apple.Safari 0x0000265c 0x1000 + 5724
    18 com.apple.Safari 0x00056d1c 0x1000 + 351516
    Thread 1:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928d8664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928d859c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95422870 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 Crashed:
    0 com.apple.Foundation 0x928e4620 _NSRaiseError + 264
    1 com.apple.Foundation 0x928e435c +[NSException raise:format:] + 40
    2 com.apple.Foundation 0x92907044 -[NSConcreteFileHandle readDataOfLength:] + 508
    3 com.apple.Foundation 0x92907844 -[NSHTTPCookieDiskStorage(NSInternal) _saveCookies] + 292
    4 com.apple.Foundation 0x929075ec saveTimerCallback + 96
    5 com.apple.CoreFoundation 0x90771ae0 __CFRunLoopDoTimer + 184
    6 com.apple.CoreFoundation 0x9075e458 __CFRunLoopRun + 1680
    7 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    8 com.apple.Foundation 0x928f0b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    9 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    10 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9004d70c fsync + 12
    1 com.apple.Foundation 0x92902c7c _NSWriteBytesToFile + 400
    2 com.apple.Foundation 0x92902ad8 -[NSData writeToFile:atomically:] + 104
    3 com.apple.Foundation 0x92902a30 -[NSFileManager createFileAtPath:contents:attributes:] + 88
    4 com.apple.Foundation 0x929029b4 -[NSFileManager(NSURLExtras) webcreateFileAtPathWithIntermediateDirectories:contents:attributes:directoryAttribu tes:] + 128
    5 com.apple.Foundation 0x929008d0 -[NSURLCache _diskCacheExecuteWrite:] + 348
    6 com.apple.Foundation 0x928f95e8 -[NSURLCache _diskCacheSync] + 256
    7 com.apple.CoreFoundation 0x90771ae0 __CFRunLoopDoTimer + 184
    8 com.apple.CoreFoundation 0x9075e458 __CFRunLoopRun + 1680
    9 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    10 com.apple.Foundation 0x928f1cdc +[NSURLCache _diskCacheSyncLoop:] + 152
    11 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    12 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928d0840 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a3469ec -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x9077099c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x00000000928e4620 srr1: 0x000000000202f030 vrsave: 0x0000000000000000
    cr: 0x24024422 xer: 0x0000000000000007 lr: 0x00000000928e45f8 ctr: 0x00000000928a645c
    r0: 0x0000000000000000 r1: 0x00000000f0182400 r2: 0x00000000a28a4508 r3: 0x00000000f0181fb0
    r4: 0x0000000000000000 r5: 0x00000000928a5d84 r6: 0x00000000f0182034 r7: 0x00000000000000ff
    r8: 0x00000000f0182020 r9: 0x00000000053daea0 r10: 0x00000000909be648 r11: 0x0000000024024422
    r12: 0x00000000928a645c r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000a28c7720 r18: 0x00000000a28c7720 r19: 0x00000000a28c7720
    r20: 0x0000000000000012 r21: 0x00000000ffffffff r22: 0x00000000053da678 r23: 0x0000000090a285cc
    r24: 0x0000000000000000 r25: 0x0000000000505000 r26: 0x0000000000412d60 r27: 0x00000000ffffffff
    r28: 0x00000000059bab20 r29: 0x00000000a28aad28 r30: 0x00000000ffffffff r31: 0x00000000928e4528
    Binary Images Description:
    0x1000 - 0xd9fff com.apple.Safari 2.0.2 (416.12) /Applications/Internet/Safari.app/Contents/MacOS/Safari
    0x548b000 - 0x548dfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x54be000 - 0x54c4fff com.apple.DictionaryServiceComponent 1.0.0 /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x90210fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90212000 - 0x90265fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x906affff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073b000 - 0x90814fff com.apple.CoreFoundation 6.4.4 (368.18) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085d000 - 0x9085dfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085f000 - 0x90961fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909bb000 - 0x90a3ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a69000 - 0x90ad7fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aee000 - 0x90b00fff libauto.dylib /usr/lib/libauto.dylib
    0x90b07000 - 0x90ddefff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e44000 - 0x90ec4fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0e000 - 0x90f4ffff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f64000 - 0x90f7cfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8c000 - 0x9100dfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91053000 - 0x9107cfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108d000 - 0x9109bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109e000 - 0x91260fff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91363000 - 0x9136cfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91373000 - 0x9139afff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ad000 - 0x913b5fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913ba000 - 0x913dbfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913e1000 - 0x913e9fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913ed000 - 0x9146bfff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a9000 - 0x914a9fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914ab000 - 0x914e3fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fe000 - 0x915cbfff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91620000 - 0x916b3fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916fa000 - 0x917b7fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f5000 - 0x91853fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91881000 - 0x918a5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918b9000 - 0x918defff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918f1000 - 0x91933fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194f000 - 0x91963fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91971000 - 0x919aafff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bf000 - 0x91a85fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad2000 - 0x91ae7fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aec000 - 0x91b08fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0d000 - 0x91b7cfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b93000 - 0x91b97fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b99000 - 0x91bcafff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bce000 - 0x91c11fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c18000 - 0x91c31fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c36000 - 0x91c39fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c3b000 - 0x91c3bfff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3d000 - 0x91d13fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d1b000 - 0x91d3afff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91da6000 - 0x91e0bfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e15000 - 0x91ea7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ec1000 - 0x92451fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92499000 - 0x927a9fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927d6000 - 0x92862fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928a4000 - 0x92acefff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bec000 - 0x92ccafff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cea000 - 0x92dd8fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dea000 - 0x92e08fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e13000 - 0x92e6dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e8b000 - 0x92e8bfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e8d000 - 0x92ea1fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92eb9000 - 0x92ec9fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ed5000 - 0x92eeafff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92efc000 - 0x92f83fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92f97000 - 0x92fa2fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fac000 - 0x92fd9fff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92ff3000 - 0x93003fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9300f000 - 0x93075fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930a6000 - 0x930f8fff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93124000 - 0x93141fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93153000 - 0x93160fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93169000 - 0x9347bfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935c7000 - 0x935d3fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935d8000 - 0x935f9fff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93644000 - 0x93644fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93646000 - 0x93c79fff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94005000 - 0x94074fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940ad000 - 0x94177fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941cb000 - 0x941cbfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941cd000 - 0x94345fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9438f000 - 0x943ccfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x943d4000 - 0x94424fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x944b4000 - 0x944ecfff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9452f000 - 0x9454bfff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9455f000 - 0x945a3fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x945c7000 - 0x945d6fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945de000 - 0x945eafff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9462f000 - 0x94647fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94a8f000 - 0x94bbdfff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94c4f000 - 0x94c5efff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94c66000 - 0x94c93fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94c9a000 - 0x94caafff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94cae000 - 0x94cdcfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94cec000 - 0x94d09fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95420000 - 0x954acfff com.apple.WebKit 416.11 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95507000 - 0x955fbfff com.apple.JavaScriptCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9564c000 - 0x95950fff com.apple.WebCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95ad5000 - 0x95afefff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9a344000 - 0x9a377fff com.apple.Syndication 1.0.2 (42) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a393000 - 0x9a3a3fff com.apple.SyndicationUI 1.0.2 (42) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Host Name: arthur-kegerreis-mac-mini
    Date/Time: 2006-01-07 17:25:51.816 -0800
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Safari
    Path: /Applications/Internet/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [81]
    Version: 2.0.2 (416.13)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4161300
    PID: 274
    Thread: 2
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x928e7620
    Thread 0:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x931741e0 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x93173874 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x931736e0 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x93651904 _DPSNextEvent + 384
    8 com.apple.AppKit 0x936515c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.Safari 0x00007910 0x1000 + 26896
    10 com.apple.AppKit 0x9364db0c -[NSApplication run] + 472
    11 com.apple.AppKit 0x9373e618 NSApplicationMain + 452
    12 com.apple.Safari 0x0000307c 0x1000 + 8316
    13 com.apple.Safari 0x00057758 0x1000 + 354136
    Thread 1:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928db664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928db59c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95426690 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928cc6d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 Crashed:
    0 com.apple.Foundation 0x928e7620 _NSRaiseError + 264
    1 com.apple.Foundation 0x928e735c +[NSException raise:format:] + 40
    2 com.apple.Foundation 0x9290a044 -[NSConcreteFileHandle readDataOfLength:] + 508
    3 com.apple.Foundation 0x9290a844 -[NSHTTPCookieDiskStorage(NSInternal) _saveCookies] + 292
    4 com.apple.Foundation 0x9290a5ec saveTimerCallback + 96
    5 com.apple.CoreFoundation 0x90771aec __CFRunLoopDoTimer + 184
    6 com.apple.CoreFoundation 0x9075e464 __CFRunLoopRun + 1680
    7 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    8 com.apple.Foundation 0x928f3b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    9 com.apple.Foundation 0x928cc6d4 forkThreadForFunction + 108
    10 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928f4cdc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x928cc6d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x907709a8 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928d3840 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a3709ec -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x928cc6d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x00000000928e7620 srr1: 0x000000000202f030 vrsave: 0x0000000000000000
    cr: 0x24024442 xer: 0x0000000000000007 lr: 0x00000000928e75f8 ctr: 0x00000000928a945c
    r0: 0x0000000000000000 r1: 0x00000000f0182400 r2: 0x00000000a28a7508 r3: 0x00000000f0181fb0
    r4: 0x0000000000000000 r5: 0x00000000928a8d84 r6: 0x00000000f0182034 r7: 0x00000000000000ff
    r8: 0x00000000f0182020 r9: 0x00000000053db4d0 r10: 0x00000000909be648 r11: 0x0000000024024442
    r12: 0x00000000928a945c r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000a28ca720 r18: 0x00000000a28ca720 r19: 0x00000000a28ca720
    r20: 0x000000000000000b r21: 0x00000000ffffffff r22: 0x00000000053daca8 r23: 0x0000000090a285cc
    r24: 0x0000000000000000 r25: 0x0000000005981000 r26: 0x0000000005a1a350 r27: 0x00000000ffffffff
    r28: 0x0000000005a19940 r29: 0x00000000a28add28 r30: 0x00000000ffffffff r31: 0x00000000928e7528
    Binary Images Description:
    0x1000 - 0xdafff com.apple.Safari 2.0.2 (416.13) /Applications/Internet/Safari.app/Contents/MacOS/Safari
    0x54a3000 - 0x54a5fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x568b000 - 0x5691fff com.apple.DictionaryServiceComponent 1.0.0 /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x90210fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90212000 - 0x90265fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x906affff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073b000 - 0x90814fff com.apple.CoreFoundation 6.4.4 (368.25) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085d000 - 0x9085dfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085f000 - 0x90961fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909bb000 - 0x90a3ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a69000 - 0x90ad7fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aee000 - 0x90b00fff libauto.dylib /usr/lib/libauto.dylib
    0x90b07000 - 0x90ddefff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e44000 - 0x90ec4fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0e000 - 0x90f4ffff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f64000 - 0x90f7cfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8c000 - 0x9100dfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91053000 - 0x9107cfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108d000 - 0x9109bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109e000 - 0x91260fff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91363000 - 0x9136cfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91373000 - 0x9139afff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ad000 - 0x913b5fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913ba000 - 0x913dbfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913e1000 - 0x913e9fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913ed000 - 0x9146bfff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a9000 - 0x914a9fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914ab000 - 0x914e3fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fe000 - 0x915cbfff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91620000 - 0x916b3fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916fa000 - 0x917b7fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f5000 - 0x91853fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91881000 - 0x918a5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis

    Sure enough, the cookies file removal got Help & Safari running again. Thanks so much!
    I think the font problem is a duplicate that wasn't resolved in Font Book. It's still displaying incorrectly on the Apple Home page. I'm not sure why changing Safari preferences for the display font to another one isn't fixing it. Tried clearingh! the cache too, that didn't make any difference.
    Does anybody know if there's a problem with setting the font prefs in Safari?
    I've seen that Font Book has duplication resolution problems, but that's another topic.
    There was a similar preferences & cookie problem with Opera, and when I removed that it worked too.
    One last related question:
    The help viewer linked me to what seemed to be a web page with instructions for more advanced Safari repair issues, including the sequence of files to remove in the Library folder. Does anybody know the URL for that? I'd like to print a copy. Or know specifically which files should be removed so I don't toss anything that could cripple it.
    Thanks!
    Mac Mini Mac OS X (10.4.3)

  • Korean Language Fonts?

    I recently composed a notice in Word2007, used Acrobat 9 to convert to PDF and posted the file on my webpage.  This is not the first time I have done this, but this time about 5 of my visitors have emailed me to complain that they get a notification that "Korean language fonts need to be installed for this document to display properly", or words to that effect.  When I check from my desk (Win 7/Firefox 3) I see no notice.  From my son's laptop (Win XP/Firefox 3), I get the notice, accompanied by a "Download Now" button.  Visitors using Safari and Int Explorer get the notice but no download option, just a blank file.
    This is a new quirk - where is the need for Korean fonts coming from?  The document is in English.  How do I make this document accessible for all visitors? The "Document > Properties" windows shows nothing about non-English or other unusual fonts.

    I just realized that all the fonts listed are ANSI-encoded, except ArielUnicodeMS, which is encoded as "KSCms-UHC-H" whatever the heck that is.  Might this appear to Acrobat as a foreign font?

  • Using a foreign language with the Java I/O, and saving to flat file.

    I want to use a foreign language in my program, in particular, russian. I want to be able to input the russian text into a GUI and then save the data in a flat file as well as retrieve it again. I am able to save some type of data to the flat file but it is unreadable. Question marks or some other unreadable characters appear instead.
    I am also not able to write in a foreign font. Can someone give me some advice for how to input a foreign language into with a GUI, save the information in a flat file, and retrieve it again.

    If you have got a String in Java somehow regardless of interior encoding mode, you can write it in a text file with an encoding you would like (e.g., UTF8).
    //import java.io.*;
    String str = "ABCEDFG";
    try{
       BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("out.txt"),"UTF8"));
       bw.write(str);
       bw.close();
    }catch(IOException ioe){
        //process
    }

  • How can I clean up fonts?

    I recently purchased my first Mac 10.8. There are so many fonts. I know there are some that I need and that's indicated. But what about all the foreign fonts that they say are system fonts? How can I clean my fonts up and get rid of excess? Thanks

    If you do not need  all of the other OS X system languages and language fonts, you can try an app called
    Monolingual.
    This app can remove any languages and language fonts that you do not need or use.
    You launch the app and check off the languages that you want the app to delete from your system.
    You will find that it doesn't remove a lot of space, maybe between 1- 2 GBs of hard drive space.
    https://www.macupdate.com/app/mac/7758/monolingual

Maybe you are looking for

  • Search Term Issues when passed as Parameters in Opening a PDF file in Browser (Updated)

    Hi everyone, I am wondering if there is a solution to the following issue. We are working with PDF files that have been OCRed (invisible text layer). We use a search engine to search the PDFs for terms. We then pass the search terms as a parameter to

  • Ovi store doesn't accept my login

    I have got a C6-01 phone and since i bought it when i try to login in ovi store it says "impossible to connect, try later". Before i had a nokia 5800express musik and ovi store worked, i checked my account (nickname and pass) and they're ok, can some

  • How to attach an Excel document with the Workflow notification?

    Hi, I need to pass an Excel document through workflow process in several notification nodes. Do you have any demonstration example which shows how to implement it? I found some threads like this, but nobody send me the example. I think I need the exa

  • IDVD Quitting During/After Initial Burning

    I'm am having random problems burning projects. I just successfully burned a project that had only 1 menu and 1 QT movie w/o chapters (20 minutes long) but iDVD quit immediately after. A real pain as i need to make multiple copies and now have to wai

  • Advise on fsg report

    Hello financial gurus Our client is having trouble running the standard fag report because the number of columns they have is more than 100 and the standard report therefore fails. They have asked us to redo the report in discoverer. Is it possible t