Changing Dictionaries

Hi there
I can't work out how to change the default dictionary in Pages 06. Currently its set to US English, I want to change to British English. I go to Edit / Spelling - but there is no option to change the dictionary language
Do I need to download something?
Thanks!!

Open the inspector, change to the text tab, click the more sub-tab and in the language popup you should be able to change to British English.
If you want to use this constantly you should consider changing your International System Preference to British English or save your pages document as a template.

Similar Messages

  • Pointer to a class?

    I have a class Dictionary
    public class Dictionary
    private HashMap<String, ArrayList<String>> dictionary;
    private HashMap<String, ArrayList<Details>> synset;
    public Dictionary()
    dictionary = new HashMap<String, ArrayList<String>>();
    synset = new HashMap<String, ArrayList<Details>>();
    //some methods
    and a class Details
    public class Details
    private String word;
    private String type;
    private String meaning;
    private String w_num;
    private String sense_num;
    private String tag_count;
    private ArrayList<String> hyponyms;
    private ArrayList<String> meronyms;
    public Details(String word, String type, String meaning, String w_num, String sense_num, String tag_count)
    this.word = word;
    this.type = type;
    this.meaning = meaning;
    this.w_num = w_num;
    this.sense_num = sense_num;
    this.tag_count = tag_count;
    hyponyms = new ArrayList<String>();
    meronyms = new ArrayList<String>();
    The dictionary class reads a file and creates Details objects. I have a method which allows me to enter a word into the dictionary HashMap which gives an id. I can put this into the synset HashMap to retrieve it's detail object. This can is passed to the Details class where a toString() method prints the details. A detail object has two array lists, hyponyms and meronyms (related words) which give an id.
    What I want to do is pass the hyponym and meronym id's back to the synset HashMap in the dictionary class and retrieve the details. It is possible by using a pointer to the synset hashmap in the Detail constructer but I don't think the Detail class should be able to access the HashMaps at this level. I want a pointer to the dictionary class itself so I can access the HashMaps using defined accessor methods. Can anyone suggest how to do this?

    warnerja wrote:
    georgemc wrote:
    Details details = new Details(dictionary); // note that Details must have a constructor that takes a Dictionary... or the Details class could provide a property which can be set thru means other than via a constructor. georgemc was giving you an example, but I just want the OP to know in case it isn't clear, that this is not the only way.
    Details could have a method named "setDictionary" which accepts a Dictionary object, and you pass yours to it, and it keeps a reference so that it can invoke the methods when it needs to.Absolutely. In fact, if you envisage changing dictionaries at runtime, you would be well advised to provide this setter method. If a Details object must have a Dictionary to do its work, I'd still pass it in via a constructor, but there aren't any rules around this

  • InDesign CC spell check is not working at all

    I have been using InDesign for around a month now and now my spell check is not working at all. I have tried replacing preferences, changed dictionaries, created new documents with placeholder text and spell check does nothing at all with all of these things. Please Help

    Not all locales come with a dictionary installed for licensing reasons.<br />
    If you do not have the en-US locale then check that you have a dictionary installed (Tools > Add-ons > Extensions) and selected.<br />
    <br />
    You can see which dictionary is selected if you right-click in a text area and open the Languages submenu.<br />
    Also make sure that [X]"Check Spelling" in the right-click context menu has a tick.<br />
    You can also try to toggle the "Check Spelling" item off and on again.<br />
    <br />
    See http://kb.mozillazine.org/Spell_checking and [[Using the spell checker]]<br />
    See also http://kb.mozillazine.org/Dictionaries<br />

  • How to update a large (over 4 million item) List(Of Byte) quickly by altering indexes contained in a Dictionary(Of Integer, Byte) where the Dictionaries keys are the indexes in the List(Of Byte) that need to be changed to the values for those indexes?

       I'm having some difficulty with transferring images from a UDP Client to a UDP Server. The issue is receiving the bytes necessary to update an original image sent from the Client to the Server and updating the Servers List(Of Byte) with the
    new bytes replacing bytes in that list. This is a simplex connection where the Sever receives and the Client sends to utilize the least amount of bandwidth for a "Remote Desktop" style application where the Server side needs image updates of whatever
    occurs on the Client desktop.
       So far I can tranfer images with no issue. The images can be be any image type (.Bmp, .Gif, .JPeg, .Png, etc). I was working with sending .JPeg's as they appear to be the smallest size image when a Bitmap is saved to a memory stream as type
    .JPeg. And then I am using GZip to compress that byte array again so it is much smaller. However on a loopback on my NIC the speed for sending a full size screen capture is not very fast as the Server updates fairly slowly unless the Clients screen capture
    Bitmap is reduced in size to about 1/3'd of the original size. Then about 12000 bytes or less are sent for each update.
       Due to .JPeg compression I suppose there is no way to get the difference in bytes between two .JPegs and only send those when something occurs on the desktop that alters the desktop screen capture image. Therefore I went to using .Bmp's as each
    .Bmp contains the same number of bytes in its array regardless of the image alterations on the desktop. So I suppose the difference in bytes from a second screen capture and an inital screen capture are what is different in the second image from the initial
    image.
       What I have done so far is save an initial Bitmap of a screen capture using a memory stream and saving as type .Bmp which takes less than 93 milliseconds for 4196406 bytes. Compressing that takes less than 118 milliseconds to 197325 bytes for
    the current windows on the desktop. When that is done PictureBox1 is updated from nothing to the captured image as the PictureBox's background image with image layout zoom and the PictureBox sized at 1/2 my screens width and 1/2 my screens height.
       Then I save a new Bitmap the same way which now contains different image information as the PictureBox is now displaying an image so its back color is no longer displayed (solid color Aqua) and the cursor has moved to a different location. The
    second Bitmap is also 4196406 in bytes and compressed it was 315473 bytes in size.
       I also just found code from this link Converting a Bitmap to a Byte Array (and Byte Array to Bitmap) which gets a byte array
    directly from a Bitmap and the size of that is 3148800 for whatever is full screen captured on my laptop. So I should be able to work with smaller byte arrays at some point.
       The issue I'm having is that once the Client sends an image of the desktop to the Server I only want to update the server with any differences occuring on the Clients desktop. So what I have done is compare the first screen captures bytes (stored
    in a List(Of Byte)) to the second screen captures bytes (stored in a List(Of Byte)) by using a For/Next for 0 to 4196405 where if a byte in the first screen captures List is not equal to a byte in the second screen captures List I add the index and byte of
    the second screen captures list to a Dictionary(Of Integer, Byte). The Dictionary then only contains the indexes and bytes that are different between the first screen capture and second screen capture. This takes about 125 milliseconds which I think is pretty
    fast for 4196406 byte comparison using a For/Next and adding all the different bytes and indexes for each byte to a Dictionary.
        The difference in Bytes between the inital screen capture and the second screen capture is 242587 as an example which changes of course. For that amount of bytes the Dictionary contains 242587 integers as indexes and 242587 bytes as different
    bytes totaling 485174 bytes for both arrays (keys, values).  Compressed the indexes go from 242587 to 43489 bytes and the values go from 242587 to 34982 bytes. Which means I will have to send 78, 481 bytes from the Client to the Server to update the display
    on the server. Quite smaller than the original 4196406 bytes of the second Bitmap saved to type .Bmp or the compressed size of that array which was 315473 bytes. Plus a few bytes I add as overhead so the server knows when an image array ends and how many packets
    were sent for the array so it can discard complete arrays if necessary since UDP is lossfull although probably not so much in current networks like it may originally have been when the internet started.
        In reality the data from the Client to the Server will mostly be the cursor as it moves and updating the Server image with only a few hundred bytes I would imagine at a time. Or when the cursor selects a Button for example and the Buttons
    color changes causing those differences in the original screen capture.
       But the problem is if I send the Dictionaries Indexes and Bytes to the Server then I need to update the original Bitmap List(Of Byte) on the server by removing the Bytes in the received informations Index locations array from the Servers Bitmap
    List(Of Byte) and replacing those Bytes with the Bytes in the received informations Byte array. This takes so long using a For/Next for however many indexes are in the received informations Index array to update the Bitmap List(Of Byte) on the server using
    "Bmp1Bytes.RemoveAt(Index As Integer)" followed by "Bmp1Bytes.Insert(Index As Integer, Item As Byte)" in the For/Next.
        I've tried various For/Next statements including using a new List(Of Byte) with If statements so If the the integer for the For/Next ='s the Key in a Dictionary(Of Integer, Byte) using a Counter to provide the Dictionaries Key value then
    the Dictionaries byte value will be added to the List(Of Byte) and the counter will increas by one Else the List(Of Byte) adds the original "Bmp1Bytes" byte at that index to the new List(Of Byte). This takes forever also.
       I also tried the same For/Next adding to a new Dictionary(Of Integer, Byte) but that takes forever too.
       I think I could use RemoveRange and AddRange to speed things up. But I don't know how to retrieve a contiguous range of indexes in the received indexes that need to be updated in the servers "Bmp1Bytes" List(Of Byte) from the received
    array of indexes and bytes which are in a Dictionary(Of Integer, Byte).  But I believe this would even be slower than some realistic method for replacing all Bytes in a List(Of Byte) when I have the indexes that need to be replaced and the bytes to replace
    them with.
       Even if I just used AddRange on a new List(Of Byte) to add ranges of bytes from the original "Bmp1Bytes" and the changes from the Dictionary(Of Integer, Byte) I think this would be rather slow. Although I don't know how to do that
    by getting contiguous ranges of indexes from the Dictionaries keys.
       So I was wondering if there is some method perhaps using Linq or IEnumerable which I've been unable to figure anything out which could do this.
       I do have some copy and pasted code which I don't understand how it works that I am using which I would guess could be altered for doing something like this but I can't find information that provides how the code works.  Or even if I did
    maybe I can't understand it. Like the code below which is extremely fast.
       Dim strArray() As String = Array.ConvertAll(Of Integer, String)(BmpComparisonDict.Keys.ToArray, Function(x) x.ToString())
    La vida loca

    Monkeyboy,
    That was quite a bit to read, but still a bit unclear. Could you put a specific list of goals/questions, asked in the smallest possible form?
    It seems like either you're making a program that monitors activity on your computer, or you're writing some kind of remote pc app.
    When you do get your bytes from using lockbits, keep in mind all the files header info would be lost. I think retaining the header info is worth the extra bytes.
    The other, thing: I'm not sure if you're taking 32bpp screen shots, but also keep in mind that the "whole desktop" is the final destination for blended graphics, if that makes sense. What I mean is that there is no need to capture an "alpha"
    channel for a desktop screenshot, as alpha would always be 255, this could save you 1 byte per pixel captured... Theres nothing "behind" the desktop, therefore no alpha, and every window shown above the desktop is already blended. I suggest using
    24Bpp for a full screen capture.
    Your X,Y information for the mouse could be stored as UINT16, this would save you a measly 2 bytes per location update/save.
    When you update your byte arrays, maybe you can turn the array into a stream and write to whatever index, however many bytes, that should prevent a "Shift" of bytes, and instead overwrite any bytes that "get in the way".
    ex
    Dim example As String = "This is an example."
    Dim insertString As String = "was"
    Dim insertBytes As Byte() = System.Text.Encoding.ASCII.GetBytes(insertString)
    Dim bytes As Byte() = System.Text.Encoding.ASCII.GetBytes(example)
    Dim modifiedBytes As Byte() = {}
    Using ms As New System.IO.MemoryStream(bytes)
    ms.Position = 5
    ms.Write(insertBytes, 0, 3)
    modifiedBytes = ms.ToArray
    End Using
    Dim newString As String = System.Text.Encoding.ASCII.GetString(modifiedBytes)
    'Notice how below there isn't the word "is" anymore, and that there isn't a
    'space.
    'This demonstrates that you overwrite existing data, versus shifting everything to
    'the right.
    'Returns: This wasan example.
    MsgBox(newString)
    “If you want something you've never had, you need to do something you've never done.”
    Don't forget to mark
    helpful posts and answers
    ! Answer an interesting question? Write a
    new article
    about it! My Articles
    *This post does not reflect the opinion of Microsoft, or its employees.
    Well it's too much to read. I was really tired when I wrote it. Even the below is too much to read but perhaps gets the point across of what I would like to do which I think
    Joel Engineer may have answered but I'm not sure. As I'm still too tired to understand that yet and research what he said in order to figure it out yet.
    But maybe the code below can provide the concept of the operation with the comments in it. But seeing as how I'm still tired it may be confused.
    Option Strict On
    Imports System.Windows.Forms
    Imports System.IO
    Imports System.IO.Compression
    Imports System.Drawing.Imaging
    Imports System.Runtime.InteropServices
    Public Class Form1
    Dim Bmp1Bytes As New List(Of Byte)
    Dim Bmp1BytesCompressed As New List(Of Byte)
    Dim Bmp2Bytes As New List(Of Byte)
    Dim BmpComparisonDict As New Dictionary(Of Integer, Byte)
    Dim BmpDifferenceIndexesCompressed As New List(Of Byte)
    Dim BmpDifferenceBytesCompressed As New List(Of Byte)
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    SomeSub()
    End Sub
    Private Sub SomeSub()
    ' Pretend this code is in UDP Client app. A screen capture is performed of the desktop. Takes about 90 milliseconds.
    Bmp1Bytes.Clear()
    Using BMP1 As New Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height)
    Using g1 As Graphics = Graphics.FromImage(BMP1)
    g1.CopyFromScreen(0, 0, 0, 0, BMP1.Size)
    Cursor.Draw(g1, New Rectangle(Cursor.Position.X, Cursor.Position.Y, Cursor.Size.Width, Cursor.Size.Height))
    Using MS As New MemoryStream
    BMP1.Save(MS, System.Drawing.Imaging.ImageFormat.Bmp)
    Bmp1Bytes.AddRange(MS.ToArray)
    End Using
    End Using
    End Using
    Bmp1BytesCompressed.AddRange(Compress(Bmp1Bytes.ToArray))
    ' UDP Client app sends Bmp1BytesCompressed.ToArray to UDP Server which is the entire image of the desktop that the UDP
    ' Client is on. This image takes awhile to send since compressed it is about 177000 bytes from over 4000000 bytes.
    ' I will be using different code just to get the bytes from the actual Bitmap in the future. That is not important for now.
    ' Pretend the UDP Server has received the bytes, decompressed the array received into a List(Of Byte) and is displaying
    ' the image of the UDP Clients desktop in a PictureBox.
    ' Now the image on the UDP Clients desktop changes due to the mouse cursor moving as an example. Therefore a new Bitmap
    ' is created from a screen capture. This takes about 90 milliseconds.
    Bmp2Bytes.Clear()
    Using BMP2 As New Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height)
    Using g1 As Graphics = Graphics.FromImage(BMP2)
    g1.CopyFromScreen(0, 0, 0, 0, BMP2.Size)
    Cursor.Draw(g1, New Rectangle(Cursor.Position.X, Cursor.Position.Y, Cursor.Size.Width, Cursor.Size.Height))
    Using MS As New MemoryStream
    BMP2.Save(MS, System.Drawing.Imaging.ImageFormat.Bmp)
    Bmp2Bytes.AddRange(MS.ToArray)
    End Using
    End Using
    End Using
    ' Now I have the original images bytes in Bmp1Bytes and the new images bytes in Bmp2Bytes on the UDP Client. But I don't
    ' want to send all of the bytes in Bmp2Bytes to the UDP Server. Just the indexes of and the bytes that are different in
    ' Bmp2Bytes from Bmp1Bytes.
    ' This takes less than 100 milliseconds for what I've tested so far where over 500000 bytes in Bmp2Bytes are different
    ' than the bytes in Bmp1Bytes. Usually that amount would be much less. But during testing I was displaying the image
    ' from Bmp1 bytes in a PictureBox so a large amount of data would change between the first screen shot, the PictureBox
    ' then displaying an image on the same PC and then the second screen shot.
    BmpComparisonDict.Clear()
    For i = 0 To Bmp1Bytes.Count - 1
    If Bmp1Bytes(i) <> Bmp2Bytes(i) Then
    BmpComparisonDict.Add(i, Bmp2Bytes(i))
    End If
    Next
    ' So now I have all the difference bytes and their indexes from Bmp2Bytes in the BmpComparisonDict. So I compress
    ' the indexes into on List and the Bytes into another List.
    BmpDifferenceIndexesCompressed.Clear()
    BmpDifferenceBytesCompressed.Clear()
    BmpDifferenceIndexesCompressed.AddRange(Compress(BmpComparisonDict.Keys.SelectMany(Function(d) BitConverter.GetBytes(d)).ToArray()))
    BmpDifferenceBytesCompressed.AddRange(Compress(BmpComparisonDict.Values.ToArray))
    ' Now pretend the UDP Client has sent both those arrays to the UDP Server which has added both decompressed arrays
    ' to a Dictionary(Of Integer, Byte). And the server has the original image decompressed bytes received in a List
    ' called Bmp1Bytes also.
    ' This is where I am stuck. The UDP Server has the Dictionary. That part was fast. However there is no
    ' fast method I have found for creating a new List(Of Byte) where bytes in the originally received List(Of Byte) that
    ' do not have to be altered are placed into a new List(Of Byte) except for the indexes listed in the
    ' Dictionary(Of Integer, Byte) that need to be placed into the appropriate index locations of the new List(Of Byte).
    ' The below example for doing so is exceptionally slow. Pretend UpdateDictionary has all of the decompressed indexes
    ' and bytes received by the UDP Server for the update contained within it.
    Dim UpdateDictionary As New Dictionary(Of Integer, Byte)
    Dim UpdatedBytes As New List(Of Byte)
    Dim Counter As Integer = 0
    For i = 0 To Bmp1Bytes.Count - 1
    If i = UpdateDictionary.Keys(Counter) Then ' Provides the index contained in the Keys for the Dictionary
    UpdatedBytes.Add(UpdateDictionary.Values(Counter))
    Counter += 1
    If Counter > UpdateDictionary.Count - 1 Then Counter = 0
    Else
    UpdatedBytes.Add(Bmp1Bytes(i))
    End If
    Next
    ' So what I'm trying to do is find an extremely fast method for performing something similar to what the
    ' above operation performs.
    End Sub
    Private Function Compress(BytesToCompress() As Byte) As List(Of Byte)
    Dim BytesCompressed As New List(Of Byte)
    Using compressedStream = New MemoryStream()
    Using zipStream = New GZipStream(compressedStream, CompressionMode.Compress)
    zipStream.Write(BytesToCompress, 0, BytesToCompress.Count)
    zipStream.Close()
    BytesCompressed.AddRange(compressedStream.ToArray)
    End Using
    End Using
    Return BytesCompressed
    End Function
    Private Function Decompress(BytesToDecompress() As Byte) As List(Of Byte)
    Dim BytesDecompressed As New List(Of Byte)
    Using DecompressedStream = New MemoryStream()
    Using zipStream = New GZipStream(DecompressedStream, CompressionMode.Decompress)
    zipStream.Write(BytesToDecompress, 0, BytesToDecompress.Count)
    zipStream.Close()
    BytesDecompressed.AddRange(DecompressedStream.ToArray)
    End Using
    End Using
    Return BytesDecompressed
    End Function
    End Class
    La vida loca

  • Can Firefox guess the input language being used and change spelling dictionaries automatically?

    I have three input languages and their dictionaries enabled in Firefox. However, when I start typing in Spanish, the whole text will be underlined as having spelling mistakes because if the dictionary is set to English. I am constantly writing in either English, Spanish, and/or French, and find it annoying to have to change the dictionary manually. Is there a way that Firefox can detect the input language being used and change the dictionary automatically?

    Try the [https://addons.mozilla.org/en-US/firefox/addon/3414/ Dictionary Switcher] add-on.

  • Can I change the order of dictionaries in the right click menu?

    Hi
    This is a minor issue but I just wondered if it is possible to change the order of appearance of dictionaries in the right click menu in Firefox. I switch between Danish, English, German (Switzerland), and German (Germany) - in this order of importance - but the order in the right click menu is English, German (Germany), Danish, and German (Switzerland).
    I tried installing them in the right order but that does not seem to have an effect.
    Thank you

    Not a default feature in Firefox. That is a feature of the [https://addons.mozilla.org/en-US/firefox/addon/search-in-google-scholar/?src=search Google Scholar 1.0.2 extension] I would guess. No information is provided by the developer on the download page and no support site or contact information was provided here - https://addons.mozilla.org/en-US/firefox/user/vpiras/
    Have you looked in the Add-ons Manager to see if there is an '''Options''' button for that Extension?

  • How can I change or add more dictionaries to Apples built-in dictionary?

    Hi,
    I have recently up-dated to Mavericks and I just realized that my dictionary has changed from English to Spanish. I am in Spain but previous to updating tho OS i had and used the dictionary in English. Unfortunately I don't seem to have this as an option no more. Is there any way I can get that back?
    Thank you guys in advance for any possible help you may give me.

    Hey el_loco,
    I found the following info from another discussion:
    Did you go to Dictionary.app/Preferences and check the box for the English dictionary and uncheck the box for the Spanish one?
    via: https://discussions.apple.com/thread/4176243
    So I'd suggest going to the Dictionary app, its Preferences, and see if you can change the option there.
    Welcome to Apple Support Communities!
    Have a good one,
    Delgadoh

  • I would like to change or ad some dictionaries to my mac

    I have "Mac OSX version 10.7.3" and have already like everyone one dictionnaire installed on my Mac when I bought it.
    But I would like to ad some other dictionnairies for example: dutch or French ones!
    Is there somebody who have an idea how to fix it.
    Thx

    Searching around turned up this Expand Mac’s Dictionary App by Adding Additional Languages among others.
    Never tried it but a number of users reference this so it could be worth a shot.
    good luck, post back if you try it.

  • How does one change the dictionary default from Portuguese to English?

    In one of the upgrades, instead of defaulting to English, my spellchecker instead defaults to Portuguese, which is the first language listed (also have French and Spanish). So every time I open Firefox, I have to change back to English.

    I've had this problem for over a year. I have three dictionaries installed, but when opening a text box i.e. on a web page where text may be entered e.g. to create email or fill a form on line, 90+% of the words are red-wavy underlined because the dictionary in use is not my native language, but one I may occasionally try to use when I must...which is rarely.
    Firefox NEEDS to have a setting for the Default Spell-Check Language, and it doesn't have one.
    Unfortunately, I stopped coding some thirty years ago, and would love to do the fix, but I've simply been ignorant too long and must beg this of the fine developer crew out there.

  • View related services for Dictionaries

    View related services for Dictionaries
    It would be handy to see what services are using a dictionary when you're considering changing the dictionary - to prevent loss of services.  Occassionally changes are required and if you have a lot of services, it can get pretty difficult to manage.

    There is a built in report in the reporting module called "Services By Dictionary" (Service Design Details group) that will give you what you're looking for.  I agree though that it would be handy to have this built into Service Designer the same way it is for keywords, scripts, etc.

  • Cocoa Bindings don't update UI when Model changes?

    Has anyone found a solution to this problem? I read all the Troubleshooting info at Apple and just about wore out the KVC/KVO and Cocoa Bindings documentation.
    I've got one TableView that updates fine, and two others that don't when the Model is modified.
    The Model: class VoterController, the variable is an NSMutableArray "playerArray" that contains 7 NSMutableDictionaries, read in from an XML plist. I set the @property and the @synthesize for it. You can't bind a Model, so no bindings for the array.
    The View: an NSTableView with one column. The column is bound to the voterController listed below.
    Column Binding:
    Bind To: voterController
    Controller Key: arrangedObjects
    Model Key Path: playerName (a key in each dictionary)
    The Controller: an NSTableViewController, class NSTableViewController.
    Bindings for this controller:
    Bind To: mainController
    Model Key Path: playerArray (the NSMutableArray)
    Controller "mainController":
    A simple NSObject (not an Object Controller despite the name) that has its class set as "VoterController", which is the class of the Model object (the array of dictionaries).
    Now the thing that has me stumped is that this NSTableView reads the Model data fine but does not respond to changes in it. In other words, if I delete one of the array elements, it does not show up in the View until I re-launch the app and it reads the changed XML from disk.
    Even more strange, I have another tableView that DOES dynamically change as I change values for any of the keys in the dictionaries that are the elements of the array. This working tableView has the bindings for each of its 5 columns as follows:
    Bind To:voterController
    Controller Key: arrangedObjects
    Model Key Path: playerName, voteCount, role, etc. for each column. Each of these is a key in the dictionaries. If I change programmatically any of the values of these keys, they are immediately changed in the View.
    Apple says the most common reason for Views not updating is non-KVO compliance in the model property. I have the array @property and @synthesize compiler directives, and one View updates and another does not, on the same controller.
    I dunno - I don't expect a solution but any tips I will rush off and try. Thanks in advance.

    "Is this because VIs which use ConfigData_v1.ctl were not loaded into memory at the time when I made the change to the typedef?"
    In short: Yes. Only the callers in memory are updated.
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."

  • Mail.app crashes while trying to change layout

    Mail 2.0.5 crashes every time I try to change the layout of the "new message" window.
    When I'm going to create a new message you can see on the left side of the "account" line a symbol (three little lines and an arrow down). With this option field you can show/hide the lines for "BCC"-recipients an "Reply-To". And you can choose to show/hide several other buttons/symbols when clicking on "modify" (I'm using the german version which shows the word "Anpassen".
    When I try to reach these advanced options mail immediately crashes. The crash log is quite long.
    Does anyone hav an idea?
    Thanks a lot.
    Wolfgang
    Date/Time: 2005-11-27 20:48:48.356 +0100
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [65]
    Version: 2.0.5 (746)
    Build Version: 2
    Project Name: MailViewer
    Source Version: 7460000
    PID: 205
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x9074ef80 CFDictionaryGetValue + 56
    1 com.apple.AppKit 0x93754030 -[NSViewAnimation _drawView:] + 116
    2 com.apple.AppKit 0x936c5ae8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 148
    3 com.apple.AppKit 0x936c8930 _recursiveDisplayInRect2 + 84
    4 com.apple.CoreFoundation 0x9076c954 CFArrayApplyFunction + 416
    5 com.apple.AppKit 0x936c5cfc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    6 com.apple.AppKit 0x936c51b0 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    7 com.apple.AppKit 0x936c5778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    8 com.apple.AppKit 0x936c5778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    9 com.apple.AppKit 0x936e5e14 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 192
    10 com.apple.AppKit 0x936bee24 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    11 com.apple.AppKit 0x936b4118 -[NSView displayIfNeeded] + 248
    12 com.apple.AppKit 0x936b3f88 -[NSWindow displayIfNeeded] + 180
    13 com.apple.AppKit 0x936b3e34 _handleWindowNeedsDisplay + 200
    14 com.apple.CoreFoundation 0x9075cccc __CFRunLoopDoObservers + 352
    15 com.apple.CoreFoundation 0x9075cf6c __CFRunLoopRun + 420
    16 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    17 com.apple.HIToolbox 0x931831e0 RunCurrentEventLoopInMode + 264
    18 com.apple.HIToolbox 0x931827ec ReceiveNextEventCommon + 244
    19 com.apple.HIToolbox 0x931826e0 BlockUntilNextEventMatchingListInMode + 96
    20 com.apple.AppKit 0x93680904 _DPSNextEvent + 384
    21 com.apple.AppKit 0x936805c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    22 com.apple.AppKit 0x937a73c8 _NSUnhighlightCarbonMenu + 164
    23 com.apple.AppKit 0x9377bff4 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 132
    24 com.apple.AppKit 0x937a4ae0 _NSPopUpCarbonMenu2 + 2480
    25 com.apple.AppKit 0x937a4120 _NSPopUpCarbonMenu1 + 44
    26 com.apple.AppKit 0x937a40dc -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:] + 224
    27 com.apple.AppKit 0x937a3d7c -[NSPopUpButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 1184
    28 com.apple.AppKit 0x9373ae58 -[NSControl mouseDown:] + 536
    29 com.apple.AppKit 0x936dc660 -[NSWindow sendEvent:] + 4616
    30 com.apple.mail 0x00152260 0x1000 + 1380960
    31 com.apple.AppKit 0x936856f4 -[NSApplication sendEvent:] + 4172
    32 com.apple.mail 0x000e6290 0x1000 + 938640
    33 com.apple.AppKit 0x9367cb30 -[NSApplication run] + 508
    34 com.apple.AppKit 0x9376d618 NSApplicationMain + 452
    35 com.apple.mail 0x00002888 0x1000 + 6280
    36 com.apple.mail 0x000a4da0 0x1000 + 671136
    Thread 1:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928ea664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928ea59c -[NSRunLoop run] + 76
    6 com.pgp.framework.PGP 0x35001a18 -[CPGPnotificationTask run] + 284 (icplusplus.c:27)
    7 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928ea664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928ea59c -[NSRunLoop run] + 76
    6 com.apple.MessageFramework 0x9a98ba0c +[_NSSocket _runIOThread] + 92
    7 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x9076f99c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92902b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92903cdc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928ea664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928ea59c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x9596e870 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000009074ef80 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042444 xer: 0x0000000000000000 lr: 0x000000009074ef50 ctr: 0x000000009074ef48
    r0: 0x0000000000404ad0 r1: 0x00000000bfffcc50 r2: 0x00000000a073a274 r3: 0x0000000000000000
    r4: 0x000000000548de40 r5: 0x00000000a0004168 r6: 0xffffffffffffffff r7: 0x0000000000000000
    r8: 0x0000000000000000 r9: 0x000000000000000c r10: 0x0000000000000081 r11: 0x00000000a367b724
    r12: 0x000000009074ef48 r13: 0x0000000000000000 r14: 0x00000000bfffd000 r15: 0x0000000000000001
    r16: 0x00000000004d4b00 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000a36b50ec r21: 0x00000000a36b5a54 r22: 0x00000000bfffcf30 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x0000000000000001
    r28: 0x000000000548de40 r29: 0x000000000548de58 r30: 0x0000000000000000 r31: 0x000000009074ef50
    Binary Images Description:
    0x1000 - 0x198fff com.apple.mail 2.0.5 (746) /Applications/Mail.app/Contents/MacOS/Mail
    0x3f9000 - 0x3fbfff com.unsanity.menuextraenabler Menu Extra Enabler version 1.0.1 (1.0.1) /Users/wolfgang/Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
    0x653000 - 0x657fff com.fsb.SafariBlock ??? (1.0) /Users/wolfgang/Library/InputManagers/SafariBlock/SafariBlock.bundle/Contents/M acOS/SafariBlock
    0x6fc000 - 0x701fff net.spamcop.Mail SpamCop version 1.3.2 (1.3.2) /Users/wolfgang/Library/Mail/Bundles/SpamCop.mailbundle/Contents/MacOS/SpamCop
    0x733000 - 0x736fff com.c-command.spamsieve.mailplugin ??? (1.2) /Users/wolfgang/Library/Mail/Bundles/SpamSieve.mailbundle/Contents/MacOS/SpamSi eve
    0x73b000 - 0x75efff PGPmailTiger PGP Desktop 9.0.3 (Build 2932) /Library/Mail/Bundles/PGPmailTiger.mailbundle/Contents/MacOS/PGPmailTiger
    0x5068000 - 0x507bfff com.apple.Mail.Syncer 1.0.5 (746.2) /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x514e000 - 0x5154fff com.apple.DictionaryServiceComponent 1.0.0 /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x51e5000 - 0x51e7fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6d22000 - 0x6d4cfff com.apple.security.dotmacdl 1.1 (25420) /System/Library/Security/dotmacdl.bundle/Contents/MacOS/dotmacdl
    0x6d74000 - 0x6d91fff com.apple.security.ldapdl 1.0 (8) /System/Library/Security/ldapdl.bundle/Contents/MacOS/ldapdl
    0x31000000 - 0x310f3fff com.pgp.framework.PGPclient PGP Desktop 9.0.3 (Build 2932) /Library/Frameworks/PGPclient.framework/Versions/A/PGPclient
    0x32000000 - 0x32068fff PGPproxy /Library/Frameworks/PGPproxy.framework/Versions/A/PGPproxy
    0x34000000 - 0x3402afff com.pgp.framework.PGPui PGP Desktop 9.0.3 (Build 2932) (3.5.3) /Library/Frameworks/PGPui.framework/Versions/A/PGPui
    0x35000000 - 0x351e0fff com.pgp.framework.PGP 3.5.3 /Library/Frameworks/PGP.framework/Versions/A/PGP
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x9020ffff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90211000 - 0x90264fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90291000 - 0x90342fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90371000 - 0x906aefff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073a000 - 0x90813fff com.apple.CoreFoundation 6.4.4 (368.18) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085c000 - 0x9085cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085e000 - 0x90960fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909ba000 - 0x90a3efff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a68000 - 0x90ad6fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aed000 - 0x90afffff libauto.dylib /usr/lib/libauto.dylib
    0x90b06000 - 0x90dddfff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e43000 - 0x90ec3fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0d000 - 0x90f4efff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f63000 - 0x90f7bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8b000 - 0x9100cfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91052000 - 0x9107bfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108c000 - 0x9109afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109d000 - 0x9125ffff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91362000 - 0x9136bfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91372000 - 0x91399fff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ac000 - 0x913b4fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913b9000 - 0x913d9fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913df000 - 0x913e7fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913eb000 - 0x91469fff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a7000 - 0x914a7fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914a9000 - 0x914e1fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fc000 - 0x915c9fff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9161e000 - 0x916b1fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916f8000 - 0x917b5fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f3000 - 0x91851fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9187f000 - 0x918a3fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918b7000 - 0x918dcfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918ef000 - 0x91931fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194d000 - 0x91961fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9196f000 - 0x919a8fff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bd000 - 0x91a83fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad0000 - 0x91ae5fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aea000 - 0x91b06fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0b000 - 0x91b7afff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b91000 - 0x91b95fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b97000 - 0x91bc8fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bcc000 - 0x91c0ffff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c16000 - 0x91c2ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c34000 - 0x91c37fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c39000 - 0x91c39fff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3b000 - 0x91d25fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d2d000 - 0x91d4cfff 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
    0x91db8000 - 0x91e1dfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e27000 - 0x91eb9fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ed3000 - 0x92463fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924ab000 - 0x927bbfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927e8000 - 0x92874fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928b6000 - 0x92ae0fff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bfe000 - 0x92cdcfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cfc000 - 0x92deafff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dfc000 - 0x92e1afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e25000 - 0x92e7ffff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e9d000 - 0x92e9dfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e9f000 - 0x92eb3fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ecb000 - 0x92edbfff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ee7000 - 0x92efcfff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f0e000 - 0x92f95fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92fa9000 - 0x92fb4fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fbe000 - 0x92febfff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93005000 - 0x93015fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93021000 - 0x93087fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930b8000 - 0x9310afff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93136000 - 0x93153fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93165000 - 0x93172fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9317b000 - 0x9348dfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935d9000 - 0x935e5fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935ea000 - 0x9360bfff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93676000 - 0x93676fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93678000 - 0x93cabfff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94037000 - 0x940a6fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940df000 - 0x941a9fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941fd000 - 0x941fdfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941ff000 - 0x94377fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x943c1000 - 0x943fefff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94406000 - 0x94456fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94496000 - 0x944d9fff com.apple.bom 8.0 (85) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94560000 - 0x9457cfff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94590000 - 0x945d4fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x945f8000 - 0x94607fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9460f000 - 0x9461bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94660000 - 0x94678fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94ac0000 - 0x94beefff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94c80000 - 0x94c8ffff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94c97000 - 0x94cc4fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94ccb000 - 0x94cdbfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94cdf000 - 0x94d0dfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94d1d000 - 0x94d3afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9596c000 - 0x959f8fff com.apple.WebKit 416.11 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95a53000 - 0x95b47fff com.apple.JavaScriptCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95b98000 - 0x95e9cfff com.apple.WebCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96021000 - 0x9604afff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96052000 - 0x960cbfff com.apple.syncservices 2.1 (182) /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x9637e000 - 0x96380fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x96383000 - 0x963b5fff com.apple.PDFKit 1.0.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9738b000 - 0x973aafff com.apple.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97a1b000 - 0x97a40fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x9842c000 - 0x9843afff com.apple.DMNotification 1.0.2 (29) /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x98645000 - 0x986ddfff com.apple.QuartzComposer 1.1.1 (30.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9872e000 - 0x9872efff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x988f7000 - 0x9890ffff com.apple.slideshow 1.0.3 (1.0) /System/Library/PrivateFrameworks/Slideshow.framework/Versions/A/Slideshow
    0x98e28000 - 0x98e94fff com.apple.ISSupport 1.0.3 (13) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x98eba000 - 0x98ed6fff com.apple.DotMacSyncManager 1.0.2 (47) /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x99516000 - 0x99557fff com.apple.PAPICommon 2.2 (117) /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x9a959000 - 0x9a963fff com.apple.IMFramework 3.1 (407) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a96d000 - 0x9aac3fff com.apple.MessageFramework 2.0.5 (746.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Model: PowerMac7,2, BootROM 5.1.4f0, 2 processors, PowerPC 970 (2.2), 2 GHz, 2.5 GB
    Graphics: ATI Radeon 9600 Pro, ATY,RV350, AGP, 64 MB
    Memory Module: DIMM0/J11, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J12, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM2/J13, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM3/J14, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM4/J41, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM5/J42, 512 MB, DDR SDRAM, PC3200U-30330
    Modem: MicroDash, Euro, V.92, 1.0F, APPLE VERSION 2.6.6
    Bluetooth: Version 1.6.6f22, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Ethernet (integriert), Ethernet, en0
    Serial ATA Device: ST3160023AS, 149.05 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-106D,
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Trackball, Logitech, Up to 1.5 Mb/sec, 100 mA
    USB Device: USB-PS/2 Optical Mouse, Logitech, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Studio Display, , Up to 1.5 Mb/sec, 500 mA
    USB Device: XSKey, Emagic GmbH, Up to 1.5 Mb/sec, 500 mA
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: USB Device, , Up to 12 Mb/sec, 500 mA
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec
    Dual G5 2 GHz   Mac OS X (10.4.2)  

    Problem is now known by Apple. See http://docs.info.apple.com/article.html?artnum=303604

  • How do I change the default language for the spell checker? - solved, sort of...

    As the previous thread was closed without actual resolution - https://support.mozilla.org/en-US/questions/941350?esab=a&s=&r=0&as=s
    I managed to solve this on my end by just reinstalling firefox using the localisation of the default dictionary language i wanted from here - http://www.mozilla.org/en-US/firefox/all/
    A bit of a shame that the main download page doesnt select the geographically relevant localisation for you and even more so that changing the default language for the in built spell checker is so kak. oh well.

    Right-click a web form on any web page.
    Languages > Add Dictionaries
    *Install the Language pack
    You can look here for dictionaries:
    * http://addons.mozilla.org/firefox/language-tools/
    * http://kb.mozillazine.org/Spell_checking
    *http://kb.mozillazine.org/Dictionaries
    *http://support.mozilla.org/kb/Using+the+spell+checker
    Right-click a web form on any web page.
    Languages > Add Dictionaries
    *Install the Language pack

  • MS Word changes spelling language - how to fix, how to stop.  (Macbook Pro. Maverick OSX)

    My macbook in MS word and Pages changes language spelling dictionaries to some unknown langauge (to me), and I am unable to switch back to U.S. English.
    I have checked the Global/macbook settings and its correctly set for English.
    But in MS Word, I am not given the choice.
    I see many have had similar problems in the user groups, but I don't see the solution that applies to me.
    Any suggestions?
    Juba Mac

    MS Word and Pages use totally different spellcheck systems.
    For Pages, you set the language Edit > Spelling and Grammar > Show Spelling and Grammar
    For Word, you set it in Tools > Language

  • Pages 09 won't let me change spelling dictionary from French to English!

    Pages 09 won't let me change spelling dictionary from French to English!
    I'm writing a syllabus for class and the spellcheck is stuck in French - for the life of me I can't change it.  The dictionary menu doesn't show up ANYWHERE.  Is this a bug?  is there a fix?

    tohubohu wrote:
      The dictionary menu doesn't show up ANYWHERE. 
    You really don't see Inspector > Text > More > Language with a choice of dictionaries?

Maybe you are looking for