Error on Applescript

Hi, i have this statment in my Applescript:
move "/Users/albertoantenucci/Downloads/cccsono.rtfd" to "/Users/albertoantenucci/Dropbox/io/di tutto/ricette"
and i receive the error:
Can't make "/Users/albertoantenucci/Downloads/cccsono.rtfd" into reference type.
Where is the error?

Here:
tell application "Finder"
move file "Macintosh HD:Users:albertoantenucci:Downloads:cccsono.rtfd" to folder "Macintosh HD:Users:albertoantenucci:Dropbox:io:di tutto:ricette"
end tell
(99939)

Similar Messages

  • Error in applescript to fix dates with GMT shift

    Hello,
    I am attempting to fix a problem with importing OFX files from the bank's website. Therein, dates are stored this way:
    <DTPOSTED>20110106000000[+9.0:JST]
    The time zone indicator causes Numbers to incorrectly compensate dates, resulting in one day earlier than the correct date to be displayed. Removing [+9.0:JST] fixes the problem, but that is tedious to fix many entries. Thus I thought to write an applescript to fix this issue.
    This is the script I wrote:
    tell application "Numbers"
    tell document 1
    set currentSheet to 0
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of (tables whose selection range is not missing value)
    end tell
    if x is not 0 then
    set the currentSheet to i
    exit repeat
    end if
    end repeat
    tell sheet currentSheet
    set the currentTable to the first table whose selection range is not missing value
    tell the currentTable
    repeat with theCell in every cell in selection range
    set theValue to value of theCell
    set theNewValue to ((theValue) + (time to GMT)) as date
    set value of cell theCell to ((date string of theNewValue) as date)
    end repeat
    end tell
    end tell
    end tell
    end tell
    However this error occurs:
    error "Can’t make "2011.1.09" into type date." number -1700 from "2011.1.09" to date
    It appears there are problems with how Numbers 2009 deals with date formats, but I have not been able to understand how to make this work.
    The English discussions forum seems more active than the Japanese, so I am asking here hoping someone can help. Thank you in advance.

    Hello Hiroto
    (1) Best wishes fro the new year my friend
    (2)
    To get your script running I had to edit it this way :
    For Numbers '09, which has specific defect in getting date value from cell by AppleScript.
    tell application "Numbers"
    tell document 1
    -- omitted (same as the original)
    tell sheet 1 --currentSheet
    -- omitted (same as the original)
    tell table 1 --currentTable
    repeat with theCell in (get every cell of selection range)
    set theCell to theCell's contents
    set value of theCell to (((value of theCell) + (my get_diff2UTC())) as string) -- [2]
    end repeat
    end tell
    end tell
    end tell
    end tell
    [1] Due to Numbers' AppleScript's defect, when getting date value of cell by AppleScript,
    the retrieved date is in local time calculated as follows :
    <retieved date value> = <stored date value> + <time to UTC>
    [2] When setting date value of cell by AppleScript, the stored value is the same as the source value.
    on get_diff2UTC()
    return -(time to GMT)
    end get_diff2UTC
    The handler is due to a Snow Leopard new feature
    When we trigger a command belonging to an other sdef than the one of the application owning the block we get an error.
    Some times this one doesn't hurt, sometimes it does.
    Here, calling time to GMT in the tell Numbers block generate an error which doesn't hurt but I dislike this kind of thing and decided to trigger it from the outside of the block.
    Here is the log report when triggering time to GMT from the tell Numbers block :
    tell application "Numbers"
    get every cell of selection range of table 1 of sheet 1 of document 1
    --> {cell "B2" of table "Tableau 1" of sheet "Feuille 1" of document "Sans titre"}
    time to GMT
    --> error number -10004
    end tell
    tell application "AppleScript Editor"
    time to GMT
    --> 3600
    end tell
    tell application "Numbers"
    get value of cell "B2" of table "Tableau 1" of sheet "Feuille 1" of document "Sans titre"
    --> date "vendredi 14 janvier 2011 14:52:10"
    set value of cell "B2" of table "Tableau 1" of sheet "Feuille 1" of document "Sans titre" to "vendredi 14 janvier 2011 13:52:10"
    end tell
    Now, here is the log report when I use the handler :
    tell application "Numbers"
    get every cell of selection range of table 1 of sheet 1 of document 1
    --> {cell "B2" of table "Tableau 1" of sheet "Feuille 1" of document "Sans titre"}
    end tell
    tell application "AppleScript Editor"
    time to GMT
    --> 3600
    end tell
    tell application "Numbers"
    get value of cell "B2" of table "Tableau 1" of sheet "Feuille 1" of document "Sans titre"
    --> date "vendredi 14 janvier 2011 14:52:10"
    set value of cell "B2" of table "Tableau 1" of sheet "Feuille 1" of document "Sans titre" to "vendredi 14 janvier 2011 13:52:10"
    end tell
    Yvan KOENIG (VALLAURIS, France) vendredi 14 janvier 2011 15:56:45

  • "Can't get folder 'a'" Error with Applescript

    Here is my complete applescript application. I am supposed to select a series folder, and it goes into the folder and for each season folder does something inside, including grabbing the name of the season folder. But it keep throwing an error on the line set folderName to name of folder aFolder saying it can't get name of folder "a", but the only folders inside the folder I select are Season 1, Season 2, and Season 3. Additionally, looking at the replies part of the script editor it looks like it does "M" first with no errors, and they goes to "a". I have no idea where this is coming from so help me if you can. Disregard the weird formatting, copying everything from the script editor into here messed everything up. Thanks.
    set seriesFolder to (choose folder with prompt "Select TV Series Folder") as text
    tell application "Finder" to set tvName to "list of " & (name of folder seriesFolder as text) & " episodes"
    openWebpage(tvName)
    repeat with aFolder in seriesFolder
      tell application "Finder"
      set folderName to name of folder aFolder
      set whichFile to every file of folder aFolder
      sort whichFile by name
      end tell
      set sNumber to "0" & ((characters -1 thru -1 of folderName) as string)
      set epNum to 1
      repeat with aFile in whichFile
      if epNum is less than 10 then
      set ifZero to "0"
      else
      set ifZero to ""
      end if
      set textBox to "What is episode title for S" & (sNumber as string) & "E" & ifZero & epNum & "?"
      tell application "Finder"
      set filename to name of aFile
      set nameEnding to ((characters -4 thru -1 of filename) as string)
      display dialog textBox default answer ""
      set text_returned to text returned of result
      set name of aFile to "S" & (sNumber as string) & "E" & ifZero & (epNum as string) & " - " & text_returned & nameEnding
      end tell
      set epNum to epNum + 1
      end repeat
    end repeat
    on openWebpage(input)
      set seriesName to input
      set needle to " "
      set replacement to "+"
      set searchName to search_replace(seriesName, needle, replacement)
      set address to "http://www.en.wikipedia.org/w/index.php?search=" & searchName & "&title=Special%3ASearch&go=Go"
      tell application "Safari" to open location address
    end openWebpage
    on search_replace(seriesName, needle, replacement)
      set old_delimiters to AppleScript's text item delimiters
      set AppleScript's text item delimiters to needle
      set temp_list to every text item of seriesName
      set AppleScript's text item delimiters to replacement
      set return_value to temp_list as text
      set AppleScript's text item delimiters to old_delimiters
      return return_value
    end search_replace

    Try replacing the beginning of the script with:
    set seriesFolder to (choose folder with prompt "Select TV Series Folder")
    tell application "Finder"
    set tvName to "list of " & (name of folder seriesFolder as text) & " episodes"
    tell me to openWebpage(tvName)
    repeat with aFolder in (get folders of seriesFolder)
    set folderName to name of aFolder
    (109908)

  • Error with AppleScript - integer?

    Hello, I have been making a simple script for my sister, but it does not work. It calls for an integer? I did not specify it in my program, but it calls it anyway...?
    My Script:
    activate
    display dialog "Click Start to start importing your own kindle books!" with title "Kindle Book Uploader by Jeremy Zhang" buttons {"Cancel", "Start"} default button "Start"
    property documentFolder : "documents"
    tell application "Finder" to (get name of every disk whose ejectable is true)
    try
              set kindleLocation to ¬
                        ((choose from list result with prompt "Select your Kindle from the list:") as text)
    end try
    try
              set bookFiles to ¬
                        ((choose file with prompt ¬
                                  "Select kindle files to import:" of type {"public.html", "public.rtf", "com.microsoft.word.doc", "public.data.mobi", "public.plain-text", "com.adobe.pdf"} with multiple selections allowed) as text)
    end try
    display dialog "Please wait while the application copies the kindle books..." with title "Kindle Book Uploader by Jeremy Zhang"
    tell application "Finder"
              if not (exists folder documentFolder of kindleLocation) then
      make new folder at kindleLocation with properties {name:documentFolder}
              end if
    end tell
    set fullKindlePath to POSIX path of (kindleLocation as alias) & "documents"
    tell application "Finder"
    move (bookFiles) to fullKindlePath
    end tell
    display dialog "Process has been done! Please eject your kindle and the files will be on the home screen of your Kindle." with title "Kindle Book Uploader by Jeremy Zhang"
    And the result from running it:
    tell current application
    activate
    end tell
    tell application "AppleScript Editor"
    display dialog "Click Start to start importing your own kindle books!" with title "Kindle Book Uploader by Jeremy Zhang" buttons {"Cancel", "Start"} default button "Start"
      --> {button returned:"Start"}
    end tell
    tell application "Finder"
    get name of every disk whose ejectable = true
      --> {"JEREMY DISK"}
    end tell
    tell application "AppleScript Editor"
    choose from list {"JEREMY DISK"} with prompt "Select your Kindle from the list:"
      --> {"JEREMY DISK"}
    choose file with prompt "Select kindle files to import:" of type {"public.html", "public.rtf", "com.microsoft.word.doc", "public.data.mobi", "public.plain-text", "com.adobe.pdf"} with multiple selections allowed
      --> {alias "Macintosh HD:Users:JeremyZhang:Downloads:5 ETS SAT S.pdf"}
    display dialog "Please wait while the application copies the kindle books..." with title "Kindle Book Uploader by Jeremy Zhang"
      --> {button returned:"OK"}
    Result:
    error "Can’t make \"documents\" into type integer." number -1700 from "documents" to integer
    What am I doing wrong? Can you please correct me?
    AppleScript Editor V: 2.5 (138)
    AppleScript 2.2.3

    Hello
    Immediate cause of the error is that you're using kindleLocation, which is string, as a Finder object.
    Replace this block:
    tell application "Finder"
        if not (exists folder documentFolder of kindleLocation) then
            make new folder at kindleLocation with properties {name:documentFolder}
        end if
    end tell
    with this:
    tell application "Finder"
        if not (exists folder documentFolder of disk kindleLocation) then
            make new folder at disk kindleLocation with properties {name:documentFolder}
        end if
    end tell
    Other than that,
    - bookFiles must be list of aliases but you're coercing it to text,
    - you should use "duplicate" instead of "move" to copy files,
    - inadvertent try blocks will make it hard to debug the script,
    - you need special code to handle user cancel in "choose from list" command.
    Here's a cleanup version of your original script:
    property documentFolder : "documents"
    activate
    display dialog "Click Start to start importing your own kindle books!" with title "Kindle Book Uploader by Jeremy Zhang" buttons {"Cancel", "Start"} default button "Start"
    tell application "System Events" to set edisks to name of disks whose ejectable is true
    set kindle to choose from list edisks with prompt "Select your Kindle from the list:"
    if kindle = false then error number -128 -- user cancel
    set kindle to kindle's item 1
    set bookFiles to choose file with prompt ("Select kindle files to import:") ¬
        of type {"public.html", "public.rtf", "com.microsoft.word.doc", "public.data.mobi", "public.plain-text", "com.adobe.pdf"} ¬
        with multiple selections allowed
    display dialog "Please wait while the application copies the kindle books..." with title "Kindle Book Uploader by Jeremy Zhang"
    tell application "Finder"
        if not (exists folder documentFolder of disk kindle) then
            make new folder at disk kindle with properties {name:documentFolder}
        end if
        duplicate bookFiles to (kindle & ":" & documentFolder) as alias --with replacing
    end tell
    display dialog "Process has been done! Please eject your kindle and the files will be on the home screen of your Kindle." with title "Kindle Book Uploader by Jeremy Zhang"
    Cheers,
    H

  • CS5 error ? Applescript corner effect

    Hello to all
    I am using a CS2 applescript under CS5 using the compatibility feature version script preference 4.0. Indesign CS5 does not accept the following property when drawing a rectangle
    "corner effect: rounded corner"
    I got the syntax error : Expected “,” or “}” but found identifier.
    This script works fine when used under CS2.
    How is it possible to fix this problem?
    Thanks
    Jean-Claude

    Hello Muppet Mark
    Thank you for your answer, but changing in a list does not fix the problem, it seems that the word "effect" is not recognized.
    set propSS_rond to {corner effect:{rounded corner,rounded corner,rounded corner,rounded corner}, corner radius:5, geometric bounds:{}, fill color:FILL, fill tint:FILL_TINT, stroke weight:1, stroke color:STROKE, stroke tint:STROKE_TINT}
    If I used the CS5 applescript language as "bottom right corner option", this time it is not recognized as I am working in CS2 compatibility.
    Best regards
    Jean-Claude

  • Error using Applescript to move subfolders

    I am trying to move subfolders of a user selected folder to another folder, via Applescript, but this fails with "*Finder got an error: Can't make {alias "Macintosh HD:Users:Me:Data:Folder1:","Example Subfolder"} into type point.* "
    Obviously "Example Subfolder" is just a subfolder in the directory I select. I assume I'm doing something wrong in the set source_folder line? The code is as as follows:
    set folderSelected to choose folder "Select a folder"
    tell application "Finder"
    set listOfFolders to every folder of folderSelected
    end tell
    repeat with aFolder in listOfFolders
    set tempname to the name of aFolder
    tell application "Finder"
    display dialog "Folder named " & tempname
    set source_folder to folderSelected & tempname
    set destination_folder to folder "Macintosh HD:Users:Me:Data:Folder1"
    display dialog "Destination folder is " & destination_folder
    move folder source_folder to destination_folder
    end tell
    end repeat

    My script has moved on a bit, and I'm using it for an alternative purpose now, but I've hit a different issue. The script below creates the folder named 1, but then the dialog box states the Destination folder is "M" - not sure why?
    set folderSelected to choose folder "Select a folder"
    tell application "Finder"
    set folder_num to 1
    set maxFolderSize to 680
    set listOfFolders to every folder of folderSelected
    make new folder at "Macintosh HD:Users:Darrell:Music" with properties {name:folder_num}
    repeat with aFolder in listOfFolders
    display dialog "Found a folder named " & (name of aFolder)
    set destination_folder to folder folder_num of "Macintosh HD:Users:Darrell:Music"
    display dialog "Destination folder is " & destination_folder
    set Posix_DestinationPath to quoted form of POSIX path of (destination_folder as text)
    set the_destinationscript to "du -ks " & Posix_DestinationPath & "| awk '{print $1}'"
    set the_destinationsize to do shell script the_destinationscript
    --used for debugging, so outcommented
    (* display dialog "The destination folder is " & the_destinationsize / 1024 & " MB in size" *)
    set Posix_SourcePath to quoted form of POSIX path of (aFolder as text)
    set the_sourcescript to "du -ks " & Posix_SourcePath & "| awk '{print $1}'"
    set the_sourcesize to do shell script the_sourcescript
    --used for debugging, so outcommented
    (* display dialog "The source folder is " & the_sourcesize / 1024 & " MB in size" *)
    if (the_sourcesize + the_destinationsize) / 1024 > maxFolderSize then
    display dialog "Total size is " & (the_sourcesize + the_destinationsize) / 1024
    display dialog "Destination folder full"
    set folder_num to folder_num + 1
    make new folder at "Macintosh HD:Users:Darrell:Music" with properties {name:folder_num}
    set destination_folder to folder folder_num of "Macintosh HD:Users:Darrell:Music"
    move aFolder to destination_folder
    else
    move aFolder to destination_folder
    end if
    end repeat
    end tell

  • ICal UID error in applescript

    When I try and use the unique uid I get a 4 error when
    So this applescript errors:
    tell application "iCal"
    tell calendar "work"
    tell event "5C00DC4E-61A2-4333-9933-CCF56D26B232"
    get summary
    end tell
    end tell
    end tell
    Of course that UID exist in my iCal
    I made a work around, but its slow when there is a lost of events
    set UID_List to {} as list
    set Search_UID to "5C00DC4E-61A2-4333-9933-CCF56D26B232" -- or any UID you like
    tell application "iCal"
    tell calendar "work" -- or any calendar of your choice
    tell every event
    set UID_List to uid
    end tell
    set event_ID to 0
    repeat with i from 1 to (count of UID_List)
    if item i of UID_List is Search_UID then
    set event_ID to i
    end if
    end repeat
    end tell
    end tell
    if event_ID is not 0 then
    tell application "iCal"
    tell calendar "work"
    tell event event_ID
    get summary
    end tell
    end tell
    end tell
    end if
    Can apple sort this bug? Or is there another way of IDing and calling an event?

    Hi Bevan,
    The following works for me. You also don't need to know which event the calendar is in.
    set myUID to "5C00DC4E-61A2-4333-9933-CCF56D26B232"
    tell application "iCal"
    -- The next line returns a list with one item per calendar. Only one item should contain an event reference. The rest should contain 'missing value'.
    set myCalsEventList to events of calendars whose uid is myUID
    -- Loop through the items in the list
    repeat with myEvent in items of myCalsEventList
    -- Check this item does not contain 'missing value'. To avoid errors being returned about the event reference, make the item into a list. Perhaps there is a better way to check for 'missing value'?
    if (myEvent as list) does not contain missing value then
    -- Get info about the event.
    get summary of myEvent
    end if
    end repeat
    end tell
    Best wishes
    John M

  • "Error executing AppleScript in Display Set"

    Keep getting this message when opening a new window. I am running 10.8.4 on a an Intel iMac. Any ideas on how to fix?

    It sounds like you have a Folder Action set on your home directory, and that Action has an error.
    The big question is whether you know/want/expect there to be a Folder Action - I'd suspect that if you put it there you would know how to find/fix the problem.
    If you want the Folder Action you'll need to edit the script to fix the error. If you don't want it, Ctrl-click on your home directory in the Finder and choose Folder Actions Setup... from the Services menu.

  • How to write an applescript and ignore errors

    I'm writing an applescript that uses a shell command that will always return an error. Applescript stops as soon as the error occurs. I want the applescript to continue running. How should I tell Applescript to ignore errors?

    The basic construct is a try/end try block which runs your own code when an error occurs rather than stopping your script.
    An alternative when using do shell script is to suppress stdout and stderr so that errors are not returned to the application. Which you can do by appending ' > /dev/null 2>&1 &' to the end of the shell command.
    Note, though, that your command will not work as written because 'choose folder' will return an alias object which can not be passed to a shell command as-is. Shell commands require unix-style paths for all file/folder parameters. Fortunately, AppleScript makes this easy by providing a POSIX path command which will convert an alias to a unix path. Additionally, since Mac paths can commonly include spaces and other non-shell safe characters, you may want to quote the path, too, like:
    <pre class=command>set shell_script to "usr/local/bin/readpst -o " & quoted form of POSIX path of mbox_output & " " & pst_input & " > /dev/null 2>&1 &"</pre>

  • No sound -- AppleScript error

    I don't have sound on my iMac G5 running OS 10.5.8
    This problem just developed recently, but I think it relates to a little program I installed a long time ago called psst! (it's supposed to make the startup chime quieter) I also recently installed a newer version of Finale (Finale 2011) that I was using to play midi sounds through my internal speaker.
    When I shut the computer down I see a error message with an icon from psst. The error reads:
    AppleScript Error
    Can't make missing value into type integer. (-1700)
    I tried turning off psst!, but I can't because the same error message comes up. I tried removing Psst! to the trash, but that didn't help. I installed a new version of Psst! and that didn't fix the problem either.

    Turns out that I found the answer to this question in an iMac G5 discussion. It appears that I was correct in assuming a program messed up my sound settings. When that happens, the easiest and quickest way to return them to normal is to open up and use Garage Band and have it make some sound. At least, that just worked for me! I guess Garage Band takes charge and puts things in their proper places.

  • How would I fix this AppleScript error?

    So I'm trying to do a square root so lets use the example of:
    set x to -11
    set y to -11 ^ (1 / 2)
    It then returns error number -2702, how would I fix this error?

    AppleScript can't recognize or use imaginary numbers. If you need to use these, use a program which can.
    (66383)

  • Errors when trying to use video

    I have been having trouble with iChat for some time. I only try to use it with my parents - who are also on a Mac.
    We used it previously and it was fine and worked. It then suddenly stopped working.
    I was recently home for a visit and took my MacBook. We checked all the settings on both computers to ensured they matched (my father paid for the Apple Support and they have taken him through a test account with default iChat settings that were apparently supposed to resolve the issue). It worked while I was in their house. But now that I'm home - it again isn't functioning.
    We have also tried switching ports to 5191 in case our service provider was blocking port 5190 - but that also didn't appear to work.
    We also are both using .Mac accounts for iChat.
    My parents are operating a:
    The Imac is hard wired to a Linksys 5-port 10/100 Workgroup Switch. There is no data plate that specifies model/ part #, Serial #, but there a sticky that says:
    R91303B01005 FB1040 M. The router is hardwired to the Bell Canada modem is a Siemens Speedstream 4200 Ethernet/USB ADSL modem part number 060-D242=A65.
    I am operating a:
    Macbook which is plugged into a Siemens Speedstream 4200 Ethernet/USB modem provided through Alliant(Bell). I also have tried through a wireless signal, which goes through a D-Link 802.11g, 2.4 Ghz router.
    An example of my error message is below - followed by an example of my parents.
    OS Version: 10.5.2 (Build 9C7010)
    Report Version: 4
    iChat Connection Log:
    2008-05-21 19:50:16 -0300: AVChat started with ID 1621592738.
    2008-05-21 19:50:16 -0300: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2008-05-21 19:50:17 -0300: 0x16d27a80: State change from AVChatNoState to AVChatStateInvited.
    2008-05-21 19:50:42 -0300: 0x16d27a80: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-05-21 19:50:42 -0300: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-05-21 19:51:03 -0300: 0x16d27a80: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-21 19:51:03 -0300: 0x16d27a80: Error -8 (Did not receive a response from 0x16d27a80.)
    2008-05-21 19:51:03 -0300: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-21 19:51:03 -0300: [email protected]: Error -8 (Did not receive a response from 0x16d27a80.)
    Video Conference Error Report:
    34.511911 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    36.512780 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    0.889505 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    26.378461 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    26.386630 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    32.510000 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3dd94c25282642d1
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=923282321
    Call-ID: 5b3c1f9c-2788-11dd-904a-d68a38964012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 742
    v=0
    o=jskikavich 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3477134325
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1998226655
    33.011436 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3dd94c25282642d1
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=923282321
    Call-ID: 5b3c1f9c-2788-11dd-904a-d68a38964012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 742
    v=0
    o=jskikavich 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3477134325
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1998226655
    34.012330 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3dd94c25282642d1
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=923282321
    Call-ID: 5b3c1f9c-2788-11dd-904a-d68a38964012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 742
    v=0
    o=jskikavich 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3477134325
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1998226655
    34.513082 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:61042 SIP/2.0
    Via: SIP/2.0/UDP sip:60442;branch=z9hG4bK672a7283709f480e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:61042>
    From: "0" <sip:user@lip:16402>;tag=2100237526
    Call-ID: 5c6e32e2-2788-11dd-904a-8c2872d74012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:60442>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 744
    v=0
    o=jskikavich 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 60442 RTP/AVP 110 121 12 3 0
    a=rtcp:60442
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3477134325
    m=video 60442 RTP/AVP 123 126 34
    a=rtcp:60442
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 60442 VIDEO 60442
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1998226655
    35.013783 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:61042 SIP/2.0
    Via: SIP/2.0/UDP sip:60442;branch=z9hG4bK672a7283709f480e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:61042>
    From: "0" <sip:user@lip:16402>;tag=2100237526
    Call-ID: 5c6e32e2-2788-11dd-904a-8c2872d74012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:60442>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 744
    v=0
    o=jskikavich 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 60442 RTP/AVP 110 121 12 3 0
    a=rtcp:60442
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3477134325
    m=video 60442 RTP/AVP 123 126 34
    a=rtcp:60442
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 60442 VIDEO 60442
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1998226655
    36.014295 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:61042 SIP/2.0
    Via: SIP/2.0/UDP sip:60442;branch=z9hG4bK672a7283709f480e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:61042>
    From: "0" <sip:user@lip:16402>;tag=2100237526
    Call-ID: 5c6e32e2-2788-11dd-904a-8c2872d74012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:60442>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 744
    v=0
    o=jskikavich 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 60442 RTP/AVP 110 121 12 3 0
    a=rtcp:60442
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3477134325
    m=video 60442 RTP/AVP 123 126 34
    a=rtcp:60442
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 60442 VIDEO 60442
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1998226655
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    36.664532 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    Binary Images Description for "iChat":
    0x1000 - 0x239fff com.apple.iChat 4.0.2 (604) /Applications/iChat.app/Contents/MacOS/iChat
    0x2ae000 - 0x31cfff com.apple.Bluetooth 2.1 (2.1f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4b9fff com.apple.viceroy.framework 363.1 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x527000 - 0x566fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x588000 - 0x5a1fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bb000 - 0x5f4fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x604000 - 0x618fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x628000 - 0x646fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64e000 - 0x6c0fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6fe000 - 0x72ffff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x758000 - 0x75bfff com.apple.BezelServicesFW 1.4.624 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x7d7000 - 0x7dcfff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7e3000 - 0x7e6fff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7ed000 - 0x7f3fff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x900000 - 0x902fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x93b000 - 0x93bfff liblangid.dylib /usr/lib/liblangid.dylib
    0xa3d000 - 0xa3efff com.apple.JavaPluginCocoa 12.1.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0xb47000 - 0xb4cfff com.apple.JavaVM 12.1.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0xb55000 - 0xb56fff com.apple.iChat.PersonIconPlugIn 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x13b30000 - 0x13c3afff com.apple.RawCamera.bundle 2.0.4 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x13c50000 - 0x13c59fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x13c6a000 - 0x13c6dfff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x13c73000 - 0x13c78fff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a19) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x13cd1000 - 0x13cedfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x14ec2000 - 0x14efdfff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x14f08000 - 0x14f35fff com.apple.QuickTimeIIDCDigitizer 7.4.5 (67) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14f40000 - 0x14f8afff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14fb1000 - 0x15133fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15161000 - 0x151bafff com.apple.driver.AppleIntelGMA950GLDriver 1.5.24 (5.2.4) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x16354000 - 0x164e4fff com.apple.audio.codecs.Components 1.6.2 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1661d000 - 0x16622fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16ec7000 - 0x16ecafff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1882b000 - 0x18847fff com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x18859000 - 0x18876fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1888e000 - 0x1889bfff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x900cafff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x900cb000 - 0x90128fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x9021e000 - 0x9021efff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9021f000 - 0x9021ffff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90220000 - 0x9022efff libz.1.dylib /usr/lib/libz.1.dylib
    0x9022f000 - 0x902aefff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x902af000 - 0x905cffff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x905d0000 - 0x905fafff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x905fb000 - 0x905fffff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x90600000 - 0x90644fff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x90645000 - 0x9078afff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9078b000 - 0x907b8fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x907b9000 - 0x90c8cfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90c8d000 - 0x90e0bfff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90e0c000 - 0x90e22fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90e23000 - 0x91473fff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91474000 - 0x9147cfff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9147d000 - 0x9154bfff com.apple.JavaScriptCore 5525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9154c000 - 0x91569fff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9156a000 - 0x915fdfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x915fe000 - 0x915fefff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x915ff000 - 0x916e4fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x916e5000 - 0x916e7fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x916e8000 - 0x916e8fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x916e9000 - 0x91722fff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91723000 - 0x9185bfff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9196c000 - 0x91b37fff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91b38000 - 0x91bc4fff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91bc5000 - 0x91bd0fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91bd1000 - 0x91e4bfff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91e4c000 - 0x91e9cfff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91e9d000 - 0x91f68fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91f69000 - 0x91f75fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91f76000 - 0x91f91fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91f92000 - 0x91feefff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91fef000 - 0x92017fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92018000 - 0x92027fff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x92028000 - 0x9202efff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9202f000 - 0x92038fff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92039000 - 0x92058fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92059000 - 0x92084fff libauto.dylib /usr/lib/libauto.dylib
    0x92085000 - 0x92186fff com.apple.PubSub 1.0.3 (65.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92187000 - 0x922e6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9238a000 - 0x923ccfff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x923cd000 - 0x923f1fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x923f2000 - 0x92479fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9247a000 - 0x924f6fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x924f7000 - 0x924fcfff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x924fd000 - 0x92511fff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92512000 - 0x92523fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x92524000 - 0x92603fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x92604000 - 0x9261afff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9261b000 - 0x92620fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92621000 - 0x926dbfff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x926dc000 - 0x92736fff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92737000 - 0x92787fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9278d000 - 0x9278ffff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x92790000 - 0x927c7fff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x927c8000 - 0x9283ffff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92840000 - 0x9287efff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9287f000 - 0x928c4fff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x928c5000 - 0x929fcfff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92a3b000 - 0x92a6afff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92a6b000 - 0x93104fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93105000 - 0x9313ffff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93140000 - 0x93157fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x93158000 - 0x93158fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93159000 - 0x93169fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9316a000 - 0x931fdfff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x931fe000 - 0x93322fff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93323000 - 0x93323fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93324000 - 0x93333fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x93334000 - 0x93383fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x93384000 - 0x9371afff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9371b000 - 0x9372efff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x9372f000 - 0x937b8fff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x937b9000 - 0x937d7fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x937d8000 - 0x94888fff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94889000 - 0x94890fff libbsm.dylib /usr/lib/libbsm.dylib
    0x94891000 - 0x94b6afff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94b6b000 - 0x94bd0fff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x94bd1000 - 0x94c5dfff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94c5e000 - 0x94c62fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94c63000 - 0x95073fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x952dd000 - 0x9531cfff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9531d000 - 0x95322fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95358000 - 0x95399fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9539a000 - 0x953a1fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x953a2000 - 0x956aafff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x956ab000 - 0x95725fff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95726000 - 0x95726fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95727000 - 0x9574bfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9574c000 - 0x9578afff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95798000 - 0x9579afff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9579b000 - 0x9579bfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9579c000 - 0x95b5afff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95ce5000 - 0x95ceffff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95cf0000 - 0x95da2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x95da3000 - 0x95e2efff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95f65000 - 0x95f66fff libffi.dylib /usr/lib/libffi.dylib
    0x95f67000 - 0x95fb1fff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95fb2000 - 0x960e4fff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x960ef000 - 0x96125fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x96126000 - 0x961e3fff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x961f0000 - 0x961f0fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x961f1000 - 0x961fcfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96203000 - 0x96251fff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x96252000 - 0x96284fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96285000 - 0x96285fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96286000 - 0x96296fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96297000 - 0x96378fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x96379000 - 0x96534fff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96535000 - 0x96551fff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x96552000 - 0x9657afff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9657b000 - 0x9657ffff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x96580000 - 0x96587fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x96588000 - 0x965fafff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x965fb000 - 0x9661bfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9661c000 - 0x96e19fff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96e1a000 - 0x96e1afff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96e1b000 - 0x96e22fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e23000 - 0x96e7cfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96e7d000 - 0x96f24fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x96f25000 - 0x96fa2fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96fa3000 - 0x97053fff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97054000 - 0x97072fff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97073000 - 0x970a4fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x970a5000 - 0x970bdfff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x970cc000 - 0x970cffff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    An example of the error messages they are recieving is:
    OS Version: 10.5.2 (Build 9C7010)
    Report Version: 4
    iChat Connection Log:
    2008-05-21 18:48:13 -0400: AVChat started with ID 1621592738.
    2008-05-21 18:48:13 -0400: 0x17419530: State change from AVChatNoState to AVChatStateWaiting.
    2008-05-21 18:48:13 -0400: [email protected]: State change from AVChatNoState to AVChatStateInvited.
    2008-05-21 18:48:37 -0400: 0x17419530: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-05-21 18:48:37 -0400: [email protected]: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-05-21 18:48:47 -0400: 0x17419530: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-21 18:48:47 -0400: 0x17419530: Error -8 (Did not receive a response from 0x17419530.)
    2008-05-21 18:48:47 -0400: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-21 18:48:47 -0400: [email protected]: Error -8 (Did not receive a response from 0x17419530.)
    Video Conference Error Report:
    Video Conference Support Report:
    24.042223 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    24.402904 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    Binary Images Description for "iChat":
    0x1000 - 0x239fff com.apple.iChat 4.0.2 (604) /Applications/iChat.app/Contents/MacOS/iChat
    0x2ae000 - 0x31cfff com.apple.Bluetooth 2.1 (2.1f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4b9fff com.apple.viceroy.framework 363.1 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x527000 - 0x566fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x588000 - 0x5a1fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bb000 - 0x5f4fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x604000 - 0x618fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x628000 - 0x646fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64e000 - 0x6c0fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6fe000 - 0x72ffff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x758000 - 0x75bfff com.apple.BezelServicesFW 1.4.624 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x76c000 - 0x76cfff liblangid.dylib /usr/lib/liblangid.dylib
    0x7d7000 - 0x7dcfff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7e3000 - 0x7e6fff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7ed000 - 0x7f3fff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x900000 - 0x902fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x139b9000 - 0x13ac3fff com.apple.RawCamera.bundle 2.0.4 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14e0e000 - 0x14e17fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x14e21000 - 0x14e24fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x14e2a000 - 0x14e2ffff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a19) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x14e8f000 - 0x14f01fff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x14f0f000 - 0x14f4afff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x14f55000 - 0x14f82fff com.apple.QuickTimeIIDCDigitizer 7.4.5 (67) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14f8d000 - 0x14fd7fff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14ffe000 - 0x15180fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x151ae000 - 0x153fdfff com.apple.ATIRadeonX2000GLDriver 1.5.24 (5.2.4) /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x15450000 - 0x1546cfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x16604000 - 0x16794fff com.apple.audio.codecs.Components 1.6.2 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x16df3000 - 0x16df8fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x1707c000 - 0x1707dfff com.apple.JavaPluginCocoa 12.1.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x17091000 - 0x17097fff com.roxio.ToastItPlugin ToastIt 1.1.2 (build 17) (1.1.2) /Users/judyskikavich/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x170be000 - 0x170c0fff com.apple.AutomatorCMM 1.1 (156) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x170c6000 - 0x170c7fff com.apple.BluetoothMenu 2.1 (2.1f14) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x170cc000 - 0x170d1fff com.apple.FolderActionsMenu 1.3.2 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1716f000 - 0x17174fff com.apple.JavaVM 12.1.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1717d000 - 0x1717efff com.apple.iChat.PersonIconPlugIn 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x17b8e000 - 0x17b91fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x18d6d000 - 0x18d7afff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x190a9000 - 0x190c5fff com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1912d000 - 0x1914afff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x9027dfff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9027e000 - 0x902b5fff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x902b6000 - 0x902b6fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x902b7000 - 0x902d2fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x902d3000 - 0x90691fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90692000 - 0x90694fff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90695000 - 0x90d2efff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90d2f000 - 0x90d7ffff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90d80000 - 0x91e30fff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91e31000 - 0x91eaefff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91eaf000 - 0x91ed7fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91ed8000 - 0x91efcfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x91efd000 - 0x91fb7fff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91fc5000 - 0x91fc9fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91fca000 - 0x92098fff com.apple.JavaScriptCore 5525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92099000 - 0x920c3fff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x920c4000 - 0x92113fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92114000 - 0x9212afff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9212b000 - 0x922e6fff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x922e7000 - 0x92312fff libauto.dylib /usr/lib/libauto.dylib
    0x92313000 - 0x9234dfff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9244d000 - 0x9244dfff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9244e000 - 0x9245cfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9245d000 - 0x925a2fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x925a3000 - 0x9287cfff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9287d000 - 0x9287dfff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9287e000 - 0x9287efff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9287f000 - 0x9288afff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9288b000 - 0x9288bfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9288c000 - 0x928e8fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x928e9000 - 0x928e9fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x928ea000 - 0x928fbfff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x928fc000 - 0x9294cfff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92aa6000 - 0x92aa8fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92aa9000 - 0x92aaefff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92aaf000 - 0x92b0cfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x92b0d000 - 0x92e2dfff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92e2e000 - 0x92f65fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92f66000 - 0x92fc0fff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92fc6000 - 0x92fdcfff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92fdd000 - 0x93069fff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93076000 - 0x93092fff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x93093000 - 0x9311cfff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9311d000 - 0x9313afff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9313b000 - 0x93145fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93146000 - 0x93166fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93167000 - 0x931a8fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93481000 - 0x93891fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93892000 - 0x9395dfff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9395e000 - 0x939a2fff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x939a3000 - 0x939edfff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x939ee000 - 0x939f4fff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x939f5000 - 0x939f9fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x939fa000 - 0x93a2bfff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93a2c000 - 0x93dc2fff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93dc3000 - 0x93e4afff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x93e4b000 - 0x93edefff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93edf000 - 0x93f38fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93f39000 - 0x93febfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x940cc000 - 0x94146fff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94147000 - 0x9414cfff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9414d000 - 0x94159fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9415a000 - 0x94161fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94162000 - 0x94180fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94181000 - 0x94262fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x94263000 - 0x94272fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94273000 - 0x94275fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94276000 - 0x942b4fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x942b5000 - 0x942f3fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x942f4000 - 0x94418fff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94419000 - 0x94419fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9441a000 - 0x94447fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94448000 - 0x94466fff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94467000 - 0x9446efff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9446f000 - 0x944fbfff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x944fc000 - 0x949cffff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x949d0000 - 0x949e8fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x949e9000 - 0x949f0fff libbsm.dylib /usr/lib/libbsm.dylib
    0x949f1000 - 0x94b6ffff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94b70000 - 0x94b9ffff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94bae000 - 0x94bf3fff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94bf4000 - 0x94c36fff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94c37000 - 0x94c69fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94c6a000 - 0x94c92fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x94c93000 - 0x94c93fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94c94000 - 0x94c94fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94c95000 - 0x94cb9fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x94cba000 - 0x94cd1fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x94cd2000 - 0x95322fff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95323000 - 0x95333fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95334000 - 0x953b0fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x953b1000 - 0x953d0fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x953d1000 - 0x953d1fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x953d2000 - 0x954b7fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x954b8000 - 0x9554bfff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9554c000 - 0x955cbfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x955cc000 - 0x956cdfff com.apple.PubSub 1.0.3 (65.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x957a2000 - 0x957b5fff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x95853000 - 0x95903fff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95904000 - 0x95908fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x95909000 - 0x95957fff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9595e000 - 0x95a1bfff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95ae5000 - 0x95b4afff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95b4b000 - 0x96348fff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96349000 - 0x9635dfff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9635e000 - 0x96367fff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96368000 - 0x96373fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x96374000 - 0x963adfff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x963ae000 - 0x963bdfff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x963f3000 - 0x96525fff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96526000 - 0x96527fff libffi.dylib /usr/lib/libffi.dylib
    0x96528000 - 0x9655efff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x9655f000 - 0x9672afff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9672b000 - 0x9679dfff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9679e000 - 0x967a1fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x967a2000 - 0x96849fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9684a000 - 0x9685afff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9685b000 - 0x96862fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x96863000 - 0x96868fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x96869000 - 0x96b71fff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96b72000 - 0x96c51fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x96c52000 - 0x96c5afff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96c5b000 - 0x96c9afff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96c9b000 - 0x96dd3fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96dd4000 - 0x96dd4fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96dd5000 - 0x96e60fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96e61000 - 0x96f03fff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x96f04000 - 0x96f7bfff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96f7c000 - 0x97043fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97044000 - 0x971a3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    My parents have also occassionally received the following error message;
    AppleScript Event Handler Error
    An error occurred while executing an AppleScript event handler.
    Event: Buddy Becomes Available
    Buddy: Julia Skikavich
    File: Auto Accept.applescript
    Error: Error -1708
    And when I was testing the video chat while at home - it should be noted that my account wouldn't connect mannually on login and I would have to go through and do it after the program started up. At which point it was fine.
    We also aren't able to share screens or features or any of the interactive features that iChat has beyond text IM.
    We are both able to connect with the apple_test accounts in iChat and exchange video that way.
    WHat are we doing wrong?

    Here is a link to the info on how to access the 4200 set up pages and how to do Port Forwarding with it
    http://portforward.com/english/routers/port_forwarding/Siemens/4200/iChat.htm
    Use the Access info and then see if you have it doing UPnP to open the ports.
    If it is then the Port Forwarding does not need setting.
    Next, if you did originally set it to do Port Forwarding this should have pointed to an IP (The one your computer has/had)
    Check the Port Forward that is set is pointing to the IP the computer has now by Looking in System Preferences > Network
    QUite a way done the log your end suddenly switches the port it sends the SIP part of the invite on
    INVITE sip:user@rip:61042 SIP/2.0
    Via: SIP/2.0/UDP sip:60442;branch=z9hG4bK672a7283709f480e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:61042>
    From: "0" <sip:user@lip:16402>;tag=2100237526
    Call-ID: 5c6e32e2-2788-11dd-904a-8c2872d74012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:60442>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 744
    This is not an iChat port and it messes up where iChat then says to send the Video and Audio data.
    The log from the other end implies the ports are not even open.
    10:42 PM Wednesday; July 9, 2008

  • Access applescript in illustrator CS2 plugin

    Does anyone have an update to the ASScripting.h file that allows for the execution of applescript with Illustrator CS2. Can compile plugin but get runtime errors on applescript. My ASScripting.h is from Illustrator 10 is there a new and improved version?

    If you are storing the files anywhere other than Users -> yourname folder for the logged in username, you may have difficulty with permissions.
    Create your own folder there and put the files all inside that folder. Then you can click once on the folder, and select Get Info from the file menu.  Manage your Ownership and permissions for the entire folder from that Get info folder.
    Things not to do: do not install Adobe applications anywhere other than Hard drive -> Applications folder or a subfolder of which that Adobe installs it.  You may have to reinstall Illustrator and check your license is managed on that Adobe installation.
    Repair permissions when done with Applications -> Utilities -> Disk Utility, and reboot.

  • PDF Pages to Artboards error

    So, I searched the forums on opening a multi-page pdf with all the pages on art boards, found a link to download a script "PDF Pages to Artboards".
    Once i downloaded it on my desktop i placed it in my dock (Mac), then dragged the multi-page pdf file over and dropped it on the icon on my dock... I then got an error window which read;
    Adobe Illustrator got an error: Can’t get alias "Mark's HD:Users:Mark:Desktop:AKAI Product Sheet.pdf". (-1728) Event: doProcess(1, 100.0, 7, "acrossdown", false)
    Script: application
    I was hoping someone knows what this is, and if there is a solution.
    Many Thanks,
    Mark.

    Thanks. I removed the spaces from both the script and pdf file, and moved the script file into to the Illustrator CS4 main file. Although im still getting an error window;
    AppleScript Runtime Error
    Adobe Illustrator got an error:Can’t get alias "Mark's
    HD:Users:Mark:Desktop:Focus Industries:all that:3rd
    Batch:AKAIProductSheet.pdf". (-1728)
    Event: doProcess(1, 100.0, 7, "acrossdown", false)
    Script: application
    Not sure what that means, maybe you can get something from it.
    Thanks again.
    Mark.

  • Apple script errors. What can i do?

    Hi,
    i've been getting repeated Apple script errors for 2 different programs. The first is for FLV2iTunes. Its a media converter. The errors is:
    AppleScript error GrowHelperApp fot an error: A""" can't got after this class name (-2740)
    The other is for a program called visual hub and it says:
    Stack overflow (-2706)
    Are they related? What can I do? How do i identify and or fix the problem?
    I've tried deleting the plist files but that hasn't fixed anything

    The first is a syntax error that looks like a misplaced quote, and the stack overflow error can be caused by creating a list or saving properties that are too large. WIthout actually seeing the script(s) no one here will be able to tell.

Maybe you are looking for

  • How to get the unoccupied material number in a number range

    How to get the unoccupied material number in a number range.for example, I wang to get a number between 1500000 and 1599990 which is unoccupied as my material number to be created. Is ther any FM or codes?

  • Dynamic link new feature or bug

    If I create an Encore project comprised of dynamic-link sequences from Premier and build a DVD, that works fine.  However, if later I change one or more of the sequences in Premier, save everything, and open Encore, it does not know that some of the

  • Deletion of Delivery for a non-stock item

    Hi, Could you pls. let me know how to delete the delivery of a non-stock item, its not making possible through vl09.

  • NetWeaver RFC SDK for AIX

    Hello! I'm looking for the new NetWeaver RFC SDK for AIX 5.3 (64bit) for compiling the sapnwrfc perl module. According the following note it should be available: https://service.sap.com/sap/support/notes/1025361 However i can not find a downloadable

  • Problems with Popups

    Hi, I'm having problems trying to use Popups. Not as in JPopupMenu, but a custom popup. I'm writing an application which lets you upload photos to Facebook. I want the 'tagging' part to work in pretty much the same way as it does on the Facebook webs