7971 G drops video when calling another video user.

I can't get my 7970G to connect video call to others in my departments with 7960 & IP communicator video capable users. I can use the same connection with IP communicator and complete the video call.

This happened to me about a year ago. Make sure the phone load "firmware" is compatible with the version of VT Advantage you are running. This can usually be fixed with a quick firmware upgrade.

Similar Messages

  • BPM  - Crate new Transactio - Error when call another BPM

    Hi,
    I have an XI application with BPMs and the XI with SP8.
    The fist BPM has transformations and send steps and calls the second BPM.
    In the DEV environment we are applying SP12, now it's possible to disable the option "Create New Transaction" for Send and Transformation.
    I need to disable this option because, my application woks with bad performance and use 100% of the workprocess all the time.
    So, when I disabled this option, "Send Stets" whose call another BPMs didn't work fine. The transformations steps and send steps to R/3 worked fine.
    Does anybody know why send step to another BPM doesn't work when call another's BPMs?
    Best Regards,
    Fernando

    Interesting issue. Have never tried it personally and currently working on a SP 16 XI 3.0 system else would have given this a shot.
    If you do get an updates on this issue, pl let us know
    Regards
    Bhavesh

  • EX60 delays from 10 to 30 sec when calling another device

    This Terminal EX60 Works OK, but the only thing is that when calling another device takes too long for the other device to receive the call.  This EX60 is registered to CUCM 10.5.1 and its firmware is tc7.2.0
    ANY HINT?
    Thanks so much for any help.

    Are you dialing URI or extensions? If its extension, do you see some delay when dialing from a SIP phone on CUCM? You "might" be experiencing some post dial-delay. Try assiging an extension a URI and call this URI directly and see if you have a delay.

  • Cisco 8945 - No Video when calling MCU

    Good evening everyone,
    Cisco 8945 and MCU 5310.  When i call a video endpoint directly from the 8945 there is audio/video.  When i dial into a conference bridge on the MCU from the 8945 I have no video but I have audio.  the screen on the 8945 is black...so it seems like it's trying for video, just nothing is there.
    Any assistance would be great....
    thank you,
    Jeff

    Hi
    Make sure your Location setting is set to allow some video bandwidth.Please inform me , if you dial other Cisco 8945 without MCU , the video is ok or have same issue.
    Thank you
    Please rate all useful information

  • Use subflow or redirect step when calling another script

    I have a main AA script and it calls another script when caller press option 6.  When a caller presss 6 it is only transferring the call to the sub script.  it does not return any values to the main script.
    In this situation, is it better to use subflow or redirect step.  i am think redirect step but just want to check with the user community.
    thanks in advance.

    Either will work. Here are a few thoughts to consider in no particular order:
    Subflows count toward the originally triggered scripts' maximum step count. If you have a lot of steps, this may result in an exception. Redirecting the call restarts this counter since the newly triggered script will have its own counter.
    NOTE: You might think that this is exactly why the Trigger Application step in Synchronous mode was created for. Alas, there is a bug which renders this useless in 7.0(1): CSCtd72562
    Redirecting the call will result in the user hearing ringback. This would occur because of the recommended two-second delay step following the Accept step of a step to prevent a race condition. I find this to be irritating enough to shy away from it mid-way through an IVR if possible.
    Subflows are more difficult to debug. You need to have sufficient code embedded in them such that you can trigger and reactively debug them.
    Be sure that the redirect destination of an actual CCX Trigger (CTI Route Point). Do not set it to a value in UCM that is translated or forwarded back to CCX. This results in a race condition which CCX does not handle well.
    If you were asking me as an individual my answer would be this: Is the code small enough and not reused elsewhere? If yes, then put it in the first script and avoid this topic all together. If it's reused in a bunch of places from multiple scripts and does not represent a large quantity of steps: use a subflow. Otherwise use Trigger Application if you're on a new enough version or Call Redirect if you're not.

  • Form exits when calling another form

    I have a form that passes parameters to another form. When creating new records and then calling the other form, it works fine. However, when coming from a post query and then passes parameters to a new form, the form exits upon calling of the other form. What causes this? Thanks for your help. I am using Forms Developer 6.0
    Edited by: user6656248 on Apr 14, 2009 8:30 PM

    My form is intermittent, when creating new records, sometimes the other form is called and parameters are passed but sometimes nothing happens and there are no errors. But from post query, calling another form and passing parameters exits the calling form and the called form does not show up. This form calls another form and passes some parameters without problems but when I tried to call another one, those scenarios happen. I am confused because the codes on both my When-Button-Pressed trigger are 100% similar. I dont know why this happens on this one and NEVER on the other. I hope you understand my query. Thanks a lot for responding. Please help.
    Here is my code:
    DECLARE
    form_id      FormModule;
    pl_id      paramlist;
    pl_name      varchar2(1000);
    it_id      Item;
    BEGIN
    pl_name := 'temp';
    pl_id      := get_parameter_list(pl_name);
         IF NOT ID_NULL(pl_id) THEN
         destroy_parameter_list(pl_id);
         END IF;
    pl_id := create_parameter_list(pl_name);
    add_parameter(pl_id,'L_OUT_DATE',TEXT_PARAMETER,TO_CHAR(:DAILY_OUTS.OUT_DATE,'DD-MON-RRRR HH24:MI:SS'));
    add_parameter(pl_id,'L_DATE_IN',TEXT_PARAMETER,TO_CHAR(:DAILY_OUTS.DATE_IN,'DD-MON-RRRR HH24:MI:SS'));
         add_parameter(pl_id,'L_SUBSTATION_CODE',TEXT_PARAMETER,:DAILY_OUTS.SUBSTATION_CODE);
         add_parameter(pl_id,'L_BREAKER_CODE',TEXT_PARAMETER,:DAILY_OUTS.BREAKER_CODE);
         add_parameter(pl_id,'L_CIRCUIT_CODE',TEXT_PARAMETER,:DAILY_OUTS.CIRCUIT_CODE);
         add_parameter(pl_id,'L_REMARKS',TEXT_PARAMETER,:DAILY_OUTS.REMARKS);
         add_parameter(pl_id,'L_FREQUENCY',TEXT_PARAMETER,:DAILY_OUTS.FREQUENCY);
         add_parameter(pl_id,'L_OUTAGE_CODE',TEXT_PARAMETER,:DAILY_OUTS.OUTAGE_CODE);
         add_parameter(pl_id,'L_OUTAGE_SUBCODE',TEXT_PARAMETER,:DAILY_OUTS.OUTAGE_SUBCODE);
         add_parameter(pl_id,'L_WEEK_NO',TEXT_PARAMETER,:DAILY_OUTS.WEEK_NO);
         add_parameter(pl_id,'L_RADIO_GRP',TEXT_PARAMETER,:DAILY_OUTS.NEW_OUTAGE_GRP);
         add_parameter(pl_id,'L_RELAYS_ACT',TEXT_PARAMETER,:DAILY_OUTS.RELAYS_ACT);
         add_parameter(pl_id,'L_TRIP_CAUSED_BY',TEXT_PARAMETER,:DAILY_OUTS.TRIP_CAUSED_BY);
         add_parameterr(pl_id,'L_SCODE_TRIP_CAUSED_BY',TEXT_PARAMETER,:DAILY_OUTS.SC_CAUSED_BY);
         add_parameter(pl_id,'L_ACTION_TAKEN',TEXT_PARAMETER,:DAILY_OUTS.MEASURE);
    :GLOBAL.BC := 1;
    IF :daily_outs.out_date > sysdate +1 then
         MESSAGE('DATE/TIME-OUT IS GREATER THAN SYSTEM DATE. PLEASE CHECK AND ENTER NEW
    DATE/TIME-OUT VALUE.', acknowledge);
         MESSAGE('DATE/TIME-OUT IS GREATER THAN SYSTEM DATE. PLEASE CHECK AND ENTER NEW
    DATE/TIME-OUT VALUE.', acknowledge);
         RAISE Form_Trigger_Failure;
    END IF;
    IF :daily_outs.date_in IS NOT NULL AND :daily_outs.out_date IS NOT NULL THEN
         IF (:daily_outs.date_in - :daily_outs.out_date) <= 0 then
    MESSAGE('DATE/TIME-IN IS LESS THAN OR EQUAL TO DATE/TIME-OUT. PLEASE ENTER NEW
    DATE/TIME-IN VALUE.', acknowledge);
    RAISE Form_Trigger_Failure;
    END IF;
    END IF;
    OPEN_FORM('FRMSPM_DAILY_BRKRS_PARAM', ACTIVATE, NO_SESSION, SHARE_LIBRARY_DATA, pl_id);
    END;

  • Place a video clip OVER another video clip

    I, I have two video clips in a window and want to know how to place video clip a, in a small window, over video clip b. I have the two video clips in one window but not sure how TO LAYER them as opposed ot having both show in small windows. Thanks

    reamonraynj
    What version of Premiere Elements are you using and on what computer operating system is it running?
    So for now I will generalize.
    If you have video on Video Track 2 and video on video on Video Track 1 directly below, it is only the video on Video Track 2 that you are going to see unless there is some transparency in the video on Video Track 2 file that will let the video on Video Track 1 show through.
    So with regard to
    I have two video clips in a window and want to know how to place video clip a, in a small window, over video clip
    a. Select the video on Video Track 2 and scale it down and reposition it.
    or
    b. Use a PiP (Picture in Picture) effect which you drag into the video on Video Track 2.
    (These PiP effects are typically found with the Effects under the Presets category.)
    Please let me know if I have targeted your question. If not, please detail the information that I need to know in order to help you.
    Thank you.
    ATR

  • [SOLVED ]SX10 TC7.3 no audio and Video when calling

    Hi,
    I have very wierd issue with one sx10(TC7.3.0) endpoint. When I make a call to another sx10 (TC7.1.4) then signalling works fine and call is connected but there is no audio and video.It is not working even when I call to some external different type video endpoint. I noticed that there is no receiving info about audio and video but transmit codecs and other info looks correct. 
    Hope someone can help me to troubleshoot the problem.
    More info about my solution:
    I use CUCM with VCS-c and VCS-E. All endpoints are registered to CUCM. I have 16 SX10 endpoint with TC7.1.4 and one TC7,3,0. I think upgrading all endpoint to TC7.3.0 is not the solution because there are problems also with all other types enpoints.

    Yes, Actually the problem was firewall rule! 
    The main problem was that these two endpoints didnt saw each other. ( Ping - Packet loss )
    Signalling was working fine because both of them got ping CUCM but not each other :)
    So problem is solved.
    Thanks.

  • Keynote dropping sound when rendering to video

    I am running Keynote 6.5 on the Yosemite 10.10.1 operating system in a MacBook Pro 1TB HD with 16 GB of Ram. I am having the problem of sound completely dropping off after about 2 minutes and 6 six seconds when exporting a slideshow to video. The operating system has been replaced and reinstalled, Keynote was deleted and reinstalled and I duplicated the problem on my second MacBook Pro.
    After all of this it has been determined to be an Engineering issue and happens to be a problem that is apparently affecting Keynote on all MacBook's, at least within the sated system preferences.
    Does anybody have any advice or knowledge pertaining to this matter? Or know when Apple may resolve the issue?
    James

    we tried the custom settings being adjusted and leaving them as it is.
    Therefore you did not use custom settings?
    I currently have 10.10.1 with Keynote 6.5 and 10.9.5 with Keynote 6.2.2, both these versions export without issue to Quicktime when using custom settings.
    This is an example of a custom QT export for HDTV 1080p:

  • Drop Frames when Printing to Video

    I know there are a lot of topics on drop frames, but I couldn't find any that met my specific set of circumstances.
    My video plays fine and there is no red bar indicating that something has to be rendered. However, when I try to print to video, ten seconds in, the project is aborted and a drop frame error is given.
    Is there anything I can do to get around this?
    Thanks.

    I don't know the specs of your machine however...
    Alternatevely you could open the RT dropdown menu
    and turn playback video quality and playback frame rate to the minimum and close
    other projects.

  • IMovie deletes my projects and event when importing another video!!!

    I was working on an iMovie project and was just importing a file and it did not import, but then iMovie deleted all my projects and events. I then found the projects and events saved in Finder but they will not open. When I clicked on them it opened iMoviebut will not open the projects. How do I fix this and get my projects and events back on iMovie?

    I would try trashing your Preferences files. For full instructions, see this link.
    https://discussions.apple.com/docs/DOC-4061

  • Fix for Airserver or Reflector ( drops connection when call comes in )

    Hey Guys
    Today i am using AirServer and it works great to be able to show your IPad on you PC or MAC. The problem is that i am sharing a app that  does a voice and video call and when the call connects it drops connection of the sharing on the MAC / PC. Once the Phone / Video connection is ended Airserver comes back up and works like advertised. (I just tried Reflector and they both work the same). Don't know if this a securty thing in IOS or not might be ? Any work arounds ? I already sent emails to both Airserver and Reflector. Open to other products if needed.
    Does anyone know a solution which might work to be able to share the IPad / IPhone on PC / Mac and not drop the connection. If solution only works on a Mac that is fine as well.
    Device
    IPad 2 running IOS 7.0.4
    Displaying to the following:
    AirServer version 1.9.4.0 Windows on Win 7 32 bit.
    AirServier version 4.8.1 on Mavericks on a Mac Book Air.
    Thx
    Dave

    Still have the problem does anyone know a fix for this by chance ?>
    Anyone know of a application or way to use a lightning to hdmi into a PC or Mac that would allow to show just half of the of the real estate on your monitor ( Similer to Airserver ?). I assume i need some capture card basically i want to be able to show half the screen with my IPAD and show a browser on the other half of the screen.
    BTW I am using a IPad Air now running IOS 7.04 same thing.

  • Cannot video chat with another iChat user.

    Here's the log:
    Date/Time: 2007-12-16 19:35:03.644 -0500
    OS Version: 10.5.1 (Build 9B18)
    Report Version: 4
    iChat Connection Log:
    2007-12-16 19:34:36 -0500: AVChat started with ID 1649769330.
    2007-12-16 19:34:36 -0500: 0x10cb5920: State change from AVChatNoState to AVChatStateWaiting.
    2007-12-16 19:34:36 -0500: superbananaplace2: State change from AVChatNoState to AVChatStateInvited.
    2007-12-16 19:34:40 -0500: 0x10cb5920: State change from AVChatStateWaiting to AVChatStateConnecting.
    2007-12-16 19:34:40 -0500: superbananaplace2: State change from AVChatStateInvited to AVChatStateConnecting.
    2007-12-16 19:34:51 -0500: 0x10cb5920: State change from AVChatStateConnecting to AVChatStateConnected.
    2007-12-16 19:34:51 -0500: superbananaplace2: State change from AVChatStateConnecting to AVChatStateConnected.
    2007-12-16 19:35:01 -0500: 0x10cb5920: State change from AVChatStateConnected to AVChatStateEnded.
    2007-12-16 19:35:01 -0500: 0x10cb5920: Error -20 (No data has been received for the last 10 seconds.)
    2007-12-16 19:35:01 -0500: superbananaplace2: State change from AVChatStateConnected to AVChatStateEnded.
    2007-12-16 19:35:01 -0500: superbananaplace2: Error -20 (No data has been received for the last 10 seconds.)
    Video Conference Error Report:
    10.067682 @VCU/streamer/RTPTransport.c:2289 type=4 (80010017/0)
    [Bandwidth Detection]
    [Timeout after a retry - received no packet]
    Video Conference Support Report:
    0.000000 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 69.221.77.232;branch=z9hG4bK148436252b0a14cf
    To: 0 <sip:[email protected]:16402>;tag=1047948691
    From: u0 <sip:[email protected]>;tag=1489786139
    Call-ID: db33c56e-ac37-11dc-9367-a94eeec713c4@192-168-0-101
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 419
    v=0
    o=ryan 0 0 IN IP4 68.230.204.128
    s=sisonoitaliano1
    c=IN IP4 68.230.204.128
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 12
    a=rtcp:16402
    a=rtpID:3162344688
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 15:640:480:640:480
    a=framerate:15
    a=rtpID:3688903299
    0.067048 @SIP/Transport.c:347 type=2 (00000000/0)
    [ACK sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP 69.221.77.232;branch=z9hG4bK4ef30ce43670fef0
    Max-Forwards: 70
    To: 0 <sip:[email protected]:16402>;tag=1047948691
    From: u0 <sip:[email protected]>;tag=1489786139
    Call-ID: db33c56e-ac37-11dc-9367-a94eeec713c4@192-168-0-101
    CSeq: 1 ACK
    User-Agent: Viceroy 1.2
    Content-Length: 0
    0.067765 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 68.230.204.128:16402;branch=z9hG4bK34d77efd263c352b
    Max-Forwards: 70
    To: u0 <sip:[email protected]>;tag=1489786139
    From: 0 <sip:[email protected]:16402>;tag=1047948691
    Call-ID: db33c56e-ac37-11dc-9367-a94eeec713c4@192-168-0-101
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]:16402>
    Event: conference
    Expires: 3600
    User-Agent: Viceroy 1.3
    Content-Length: 0
    0.135060 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 68.230.204.128:16402;branch=z9hG4bK34d77efd263c352b
    To: u0 <sip:[email protected]>;tag=1489786139
    From: 0 <sip:[email protected]:16402>;tag=1047948691
    Call-ID: db33c56e-ac37-11dc-9367-a94eeec713c4@192-168-0-101
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>;isfocus
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    0.155102 @SIP/Transport.c:347 type=2 (00000000/0)
    [NOTIFY sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP 69.221.77.232;branch=z9hG4bK4be0a15e2f509e4e
    Max-Forwards: 70
    To: 0 <sip:[email protected]:16402>;tag=1047948691
    From: u0 <sip:[email protected]>;tag=1489786139
    Call-ID: db33c56e-ac37-11dc-9367-a94eeec713c4@192-168-0-101
    CSeq: 2 NOTIFY
    Contact: <sip:[email protected]>;isfocus
    Event: conference
    Subscription-State: active;expires=3600
    User-Agent: Viceroy 1.2
    Content-Type: application/conference-info+xml
    Content-Length: 213
    [<c-i v="0" st="f" en="sip:[email protected]">
    c<h>i</h><m t="a"/><m t="v"/>
    c<h>o</h><m t="a"/><m t="v"/>
    </c-i>
    0.155774 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 69.221.77.232;branch=z9hG4bK4be0a15e2f509e4e
    To: 0 <sip:[email protected]:16402>;tag=1047948691
    From: u0 <sip:[email protected]>;tag=1489786139
    Call-ID: db33c56e-ac37-11dc-9367-a94eeec713c4@192-168-0-101
    CSeq: 2 NOTIFY
    User-Agent: Viceroy 1.3
    Content-Length: 0
    10.742326 @SIP/Transport.c:347 type=2 (00000000/0)
    [NOTIFY sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP 69.221.77.232;branch=z9hG4bK2c9aa1482ef66f84
    Max-Forwards: 70
    To: 0 <sip:[email protected]:16402>;tag=1047948691
    From: u0 <sip:[email protected]>;tag=1489786139
    Call-ID: db33c56e-ac37-11dc-9367-a94eeec713c4@192-168-0-101
    CSeq: 3 NOTIFY
    Contact: <sip:[email protected]>;isfocus
    Event: conference
    Subscription-State: terminated;reason=noresource
    User-Agent: Viceroy 1.2
    Content-Length: 0
    10.742516 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 69.221.77.232;branch=z9hG4bK2c9aa1482ef66f84
    To: 0 <sip:[email protected]:16402>;tag=1047948691
    From: u0 <sip:[email protected]>;tag=1489786139
    Call-ID: db33c56e-ac37-11dc-9367-a94eeec713c4@192-168-0-101
    CSeq: 3 NOTIFY
    User-Agent: Viceroy 1.3
    Content-Length: 0
    Video Conference User Report:
    10.068820 @:0 type=5 (80010017/60)
    [Detected bandwidth (kbits/s): 0 up, 0 down. (80010017)
    10.070835 @Video Conference/VideoConferenceMultiController.m:1957 type=5 (00000000/0)
    [Start Conference With UserID: sisonoitaliano1]
    Binary Images Description for "iChat":
    0x1000 - 0x230fff com.apple.iChat 4.0 (601) /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x311fff com.apple.Bluetooth 2.0 (2.0f20) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x35d000 - 0x4aefff com.apple.viceroy.framework 343.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x51c000 - 0x55bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x57d000 - 0x596fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5b0000 - 0x5e9fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5f9000 - 0x60dfff com.apple.ScreenSaver 2.0 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x61d000 - 0x63bfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x643000 - 0x674fff com.apple.iChatCommonGUI 4.0 (601) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x69b000 - 0x69efff com.apple.BezelServicesFW 1.4.533 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6e9000 - 0x6eefff com.apple.iChat.Styles.Balloons 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x99e3000 - 0x99e6fff com.apple.iChat.Styles.Boxes 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x99ed000 - 0x99f3fff com.apple.iChat.Styles.Compact 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x99fb000 - 0x99fdfff com.apple.iChat.Styles.Text 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x9a54000 - 0x9a59fff com.apple.qldisplay.Music 1.0 (168.0) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/Resources/Di splayBundles/Music.qldisplay/Contents/MacOS/Music
    0xc927000 - 0xca0dfff com.apple.RawCamera.bundle 2.0 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xca2c000 - 0xca31fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xca72000 - 0xca7bfff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xca85000 - 0xca88fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xca8e000 - 0xca93fff com.apple.audio.AppleHDAHALPlugIn 1.4.0 (1.4.0a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xe270000 - 0xe2abfff com.apple.QuickTimeFireWireDV.component 7.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe2b6000 - 0xe2e3fff com.apple.QuickTimeIIDCDigitizer 7.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0xe2ee000 - 0xe338fff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0xe35f000 - 0xe4e0fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xe50e000 - 0xe744fff com.apple.ATIRadeonX2000GLDriver 1.5.18 (5.1.8) /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0xe78f000 - 0xe7abfff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xf91c000 - 0xfaa9fff com.apple.audio.codecs.Components 1.6 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0xffba000 - 0xffc7fff com.apple.QuartzComposer.Backdrops 1.0 (1) /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x10020000 - 0x10021fff com.apple.ApplicationServices.ATS 3.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x10b42000 - 0x10b45fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x10e31000 - 0x10e31fff liblangid.dylib /usr/lib/liblangid.dylib
    0x11246000 - 0x11262fff com.apple.QuartzComposer.ExtraPatches 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1144a000 - 0x11467fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x11ece000 - 0x11ed8fff com.apple.URLMount 3.1 /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x12025000 - 0x12025fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x1202b000 - 0x12032fff com.apple.JavaVM 12.0.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1203c000 - 0x1203dfff com.apple.iChat.PersonIconPlugIn 1.0 (601) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x1388f000 - 0x13935fff com.apple.iTunesAccess 7.5 /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x70000000 - 0x700e3fff com.apple.audio.units.Components 1.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90181fff com.apple.AddressBook.framework 4.1 (687) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90182000 - 0x9033dfff com.apple.QuartzComposer 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9033e000 - 0x9037ffff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90380000 - 0x90429fff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9042a000 - 0x9042afff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9042b000 - 0x90464fff com.apple.securityfoundation 3.0 (32768) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90465000 - 0x904effff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x904f0000 - 0x90500fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90501000 - 0x9057dfff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9057e000 - 0x905d7fff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x905d8000 - 0x905e8fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x905e9000 - 0x905f2fff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x905f3000 - 0x9064ffff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90650000 - 0x90673fff com.apple.CoreMediaPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x90674000 - 0x906a3fff com.apple.AE 402 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x906b1000 - 0x906b2fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x906b3000 - 0x90718fff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90719000 - 0x908e2fff com.apple.security 5.0.1 (32736) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x908e3000 - 0x90957fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90958000 - 0x90963fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90964000 - 0x90982fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x909f0000 - 0x909fffff com.apple.DSObjCWrappers.Framework 1.2 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90a00000 - 0x90a31fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x90a32000 - 0x90a32fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90a33000 - 0x90b69fff com.apple.imageKit 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90b6a000 - 0x90b97fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90b98000 - 0x90bf2fff com.apple.CoreText 2.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90bf3000 - 0x90c02fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x90c03000 - 0x90cb5fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x90cb6000 - 0x90de8fff com.apple.CoreFoundation 6.5 (476) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90de9000 - 0x90dfffff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90e00000 - 0x90ee1fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x90eee000 - 0x916e8fff com.apple.AppKit 6.5 (949) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x916e9000 - 0x916ebfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x916ec000 - 0x917a7fff com.apple.WebKit 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91847000 - 0x9186bfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9186c000 - 0x91876fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91877000 - 0x91877fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x91878000 - 0x9187cfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9187d000 - 0x918f7fff com.apple.print.framework.PrintCore 5.5 (245) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x918fd000 - 0x91904fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x91905000 - 0x91905fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91906000 - 0x9190dfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9190e000 - 0x91d1efff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91d1f000 - 0x91d55fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x91d56000 - 0x91d6dfff com.apple.datadetectors 1.0 (66.0) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x91d6e000 - 0x9223afff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9223b000 - 0x92246fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92247000 - 0x922b6fff com.apple.PDFKit 2.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x922b7000 - 0x922cffff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x922d0000 - 0x922d0fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92600000 - 0x92606fff com.apple.print.framework.Print 218 (220) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92607000 - 0x9274cfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9274d000 - 0x9278cfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9278d000 - 0x92792fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92888000 - 0x9296cfff com.apple.CoreData 100 (185) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9296d000 - 0x9296dfff com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9296e000 - 0x92973fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92974000 - 0x92c86fff com.apple.QuickTime 7.3.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92c87000 - 0x92dabfff com.apple.audio.toolbox.AudioToolbox 1.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92dac000 - 0x92dd3fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x92dd4000 - 0x92e20fff com.apple.QuickLookUIFramework 1.0 (168.0) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92e21000 - 0x92e2dfff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e2e000 - 0x934c5fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x935a6000 - 0x93abbfff com.apple.WebCore 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x93abc000 - 0x93b09fff com.apple.datadetectorscore 1.0 (52.11) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x93b3b000 - 0x93b3bfff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93b3c000 - 0x93b81fff com.apple.Metadata 10.5.0 (398) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93b82000 - 0x93bbefff com.apple.CoreMediaIOServicesPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x93bbf000 - 0x94a3ffff com.apple.QuickTimeComponents.component 7.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94a40000 - 0x94a40fff com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94a41000 - 0x94acdfff com.apple.LaunchServices 284 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94ace000 - 0x94b1efff com.apple.HIServices 1.6.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94b1f000 - 0x94d98fff com.apple.Foundation 6.5.1 (677.1) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94d99000 - 0x94e10fff com.apple.CFNetwork 220 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94e11000 - 0x94e27fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94e28000 - 0x94ed7fff com.apple.DesktopServices 1.4.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94ed8000 - 0x94edbfff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94edc000 - 0x94f06fff libauto.dylib /usr/lib/libauto.dylib
    0x94f07000 - 0x94f92fff com.apple.QTKit 7.3 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94f93000 - 0x94f93fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x94f94000 - 0x9503bfff com.apple.QD 3.11.50 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9503c000 - 0x9505bfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9505c000 - 0x95078fff com.apple.IMFramework 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x951d0000 - 0x9524ffff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9525e000 - 0x95329fff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9532a000 - 0x95484fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x95485000 - 0x95535fff edu.mit.Kerberos 6.0.11 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95536000 - 0x955bdfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x955be000 - 0x955ccfff libz.1.dylib /usr/lib/libz.1.dylib
    0x955d6000 - 0x956b5fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x956b6000 - 0x956b7fff libffi.dylib /usr/lib/libffi.dylib
    0x956b8000 - 0x956bcfff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x956bd000 - 0x956cafff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x956fb000 - 0x9578dfff com.apple.ApplicationServices.ATS 3.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9578e000 - 0x957acfff com.apple.DirectoryService.Framework 3.5 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x957ad000 - 0x957c0fff com.apple.IMUtils 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x957c1000 - 0x95803fff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x95804000 - 0x95872fff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x95873000 - 0x95b79fff com.apple.HIToolbox 1.5.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95b7a000 - 0x95b81fff libbsm.dylib /usr/lib/libbsm.dylib
    0x95b82000 - 0x95b93fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x95b94000 - 0x95b96fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95b97000 - 0x95bb5fff com.apple.QuickLookFramework 1.0 (168.0) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x95bb6000 - 0x95bfafff com.apple.DirectoryService.PasswordServerFramework 3.0.1 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x95bfb000 - 0x95cb1fff com.apple.CoreServices.OSServices 210.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95cb2000 - 0x95cb2fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95cb3000 - 0x95f8cfff com.apple.CoreServices.CarbonCore 783 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95f8d000 - 0x95fbffff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95fc0000 - 0x960f8fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9612e000 - 0x96168fff com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96169000 - 0x9619ffff com.apple.SystemConfiguration 1.9.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x961a0000 - 0x961a2fff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x961a3000 - 0x96539fff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9653a000 - 0x96597fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x96598000 - 0x9665ffff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96660000 - 0x966aafff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x966ab000 - 0x967acfff com.apple.PubSub 1.0.1 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x967ad000 - 0x967b5fff com.apple.DiskArbitration 2.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x967b6000 - 0x967cafff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x967cb000 - 0x9685efff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9685f000 - 0x9685ffff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96860000 - 0x968b0fff com.apple.framework.familycontrols 1.0.1 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x968b1000 - 0x968eefff com.apple.opengl 1.5.5 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x968ef000 - 0x96cadfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x96cf6000 - 0x96d1afff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96d1b000 - 0x96d20fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96d21000 - 0x96d28fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x96d29000 - 0x96d51fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x96d52000 - 0x96d6dfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0xba900000 - 0xba916fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib

    I've received a similar error message. Try reducing the Bandwidth limit in iChat preferences. If it is set to "none" then I suspect you are experiencing the same phenomena as I have experienced. This occurs when multiple users are running under a mixture of broadband technologies and efficiencies. e.g. DSL vs. Cable. Satellite broadband can be worse.
    We theorize that your/our Cable broadband bandwidth is so fast that the sync'ing or handshaking between the machines is outrunning one or all of your participants. This situation would occur when you or one of your participants is running broadband under DSL and the other(s) are running under Cable broadband. So if you're running at a 15Mbps download stream and a 2Mbps upload stream and one of your friends is running on DSL usually 768/368Kbps then there is a broadband mis-match. You'll "time-out" on the sync'ing and handshaking hence the error "you did not respond"!
    Try resetting your Bandwidth Limit in iChat Preferences/Video to 1Mbps, and restart iChat. If that doesn't work reset to 500Kbps/restart etc. until it works.
    Plz post if this resolves the problem.

  • Java.lang.stackoverflowerror issue when calling another jframe

    i created a login screen with a username/password field that i call from my main applicaton. I call the jframe with the following code
      createDirectories();
            startNotes();
            login.start();
            getLists();once it gets to the login.start(); it give the following error
    Exception in thread "AWT-EventQueue-0" java.lang.StackOverflowError
    at sun.awt.Win32GraphicsConfig.getBounds(Native Method)
    at sun.awt.Win32GraphicsConfig.getBounds(Win32GraphicsConfig.java:240)
    at java.awt.Window.init(Window.java:368)
    at java.awt.Window.<init>(Window.java:407)
    here is the full code for my login.java minus the swing component creation
    import javax.swing.JOptionPane;
    public class loginScreen extends javax.swing.JFrame {
        TESTapplication app = new TESTapplication();
            patientObject patient = new patientObject();
        public loginScreen() {       
            initComponents();        
       //initcomponents removed from here
    private void btnLoginActionPerformed(java.awt.event.ActionEvent evt) {                                        
            sendLogin();
        private void btnCancelActionPerformed(java.awt.event.ActionEvent evt) {                                         
            System.out.println("User exited application");
            System.exit(3);
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {              
                 // start();
        // Variables declaration - do not modify                    
        private javax.swing.JButton btnCancel;
        private javax.swing.JButton btnLogin;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel lblLoginInfo;
        private javax.swing.JPasswordField pswrdFldPassword;
        private javax.swing.JTextField txtFldUsername;
        // End of variables declaration                  
        public void start(){
            new loginScreen().setVisible(true);
        public void sendLogin(){
            if (
                    txtFldUsername.getText().trim().equals("") ||  //trim removes whitespace
                    pswrdFldPassword.getText().trim().equals("") )
                JOptionPane.showMessageDialog(null,"Complete empty field(s)","Warning",JOptionPane.WARNING_MESSAGE);
            } else {
                patient.setUsername(txtFldUsername.getText().trim());
                patient.setPassword(pswrdFldPassword.getText().trim());
                patient.setAction("login");
                app.sendPatient();
    }thanks for all help given

    I only need to call 1 new login screen and no new application... how can i call a
    function from another java file?From a method of any class you can invoke (call) methods of other classes. I use "method" rather than "function" here to emphasise that they are much more than bits of code that do something: they have a context (the object of which they are a method).
    for instance i want to call the start function of the loginScreen.java from the
    testapplication.java. i don't need any new pieces, just want to be able to open the
    loginscreen jframe from the test application jframe.I wondered before why that start() method was creating a new loginScreen, but leaving that aside... One way might be for the TESTapplication class to have a member variable of type loginScreen. When some method of TESTapplication wants to invoke the start() method it just does so:loginScreen myLoginScreen = new loginScreen();
    // much later...
    myLoginScreen.start();There is no need for the loginScreen to have its own TESTapplication member variable since, as you say. "i don't need any new pieces".
    The start() method appears to next to nothing. It makes the loginScreen instance visible. But there's already a public method to do that. Perhaps loginScreen should be a modal JDialog: calling setVisible(true) will allow the login screen to do its thing and not return until it has finished (without blocking the event queue).
    It's all really a bit speculative and will remain so until you break down your application into small pieces: not functions (actions), but classes (types of obejcts including the things they can do.) Each class should have a clear and documented description of what it does.

  • On the new IMOVIE, How do you do voice overs and how do you add a video going while another video is going? HELP.

    I recently got a MAC BOOK PRO! The newest version and I make beauty videos, so I need to edit my videos, how do you do voice overs on Imovie? It doesnt give me an option to do a voice over.  And how do you have a video going and then in the corner have another one going? I Have the IMOVIE app on my phone and I know how to do all of that but it doesnt let me do it on my laptop.  Please help! Thank you

    Voice over:
    http://help.apple.com/imovie/mac/10.0/#mov91a895a64
    Picture-in-Picture:
    http://help.apple.com/imovie/mac/10.0/#mova1aaa682b
    Matt

Maybe you are looking for

  • User Enhancement Module Error

    Hi All, I have created an User Enhancement Module that does encryption and decryption of the Message. The keys for Encryption and Decryption has been accessed from the J2EE Keystore. The problem I am having is in accessing the Keystore. The part of t

  • Quadro 4000 issues w/ PP CC. Crashes MacPro during rendering and exporting in Encoder.

    I'm using a Mac Pro 3,1 early 2008 w/ 2x2.8 GHz Quad-Core Intel Xeon w/16 GB RAM, Nvidia Quadro 4000 is installed and the factory installed NVidia GeForce 8800 GT for dual monitors. I also have a Blackmagic Design Deckling HD Extreme installed but ma

  • How to Make a pdf that can be downloaded, filled in and saved and then emailed; Acrobat 9 Pro; Windows

    Hi, I hope this hasn't been asked before, but I really need to figure out how to do this.   We take forms in Word, convert them using the wizard, and then the only way I can figure how to make them fill in able and then saveable is to distribute thro

  • Error in using Array in pro*C

    My test pro*C code is as follows: long empIdArray[50]; EXEC ORACLE OPTION (SELECT_ERROR=NO); EXEC SQL SELECT emp_id INTO :empIdArray FROM emp ; /* check error*/ if ((sqlca.sqlcode != 0) && (sqlca.sqlcode != 1403) && (sqlca.sqlcode != -1405)) printf("

  • Where's the data????? (said like the "where's the beef" lady) :)

    I'm having some trouble with a network setup. Sending box is a G4MDD w/10.3.9 receiving box G5 dual 2.0 w/10.4. Had I not seen it with my own eyes I never would have believed it. But the sending box put up the progress bar and showed 644 megs of data