Get and hide all child symbols

I'd like to target all child symbol instances of my mT symbol and hide them.
Something like this (except this doesn't work):
childsymbols_d1 = sym.getSymbol("holder").getSymbol("d1").getSymbol("mT").getChildSymbols();
for(var i=0; i<childsymbols_d1.length; i++){
          childsymbols_d1[i].hide();
I don't want to use the timeline because I have a lot of child symbols, and would like to do this operation on several other symbols.

i tried this and it works.
I grouped the symbols in mT into a div called rect.
sym.getSymbol("holder").getSymbol("d1").getSymbol("mT").$('rect').children().hide();

Similar Messages

  • Link symbol (Hand symbol) in " Show all" and "Hide all"

    Hi peter,
    With respect to the same topic posted by me, can u help me in
    one more requirement (definitely simple for u)
    When i try to click these show all/hideall buttons (the hand
    symbol) should appear which usually appears when we click any
    link.....how this can be done........

    Hi peter, apart from adding the cursor pointer (per ur
    guidance), i also add some "screen tip text" (For ex. "Click to
    view instructions of all fields)...i included the tag <a
    title="Click to view -----------">
    i'm getting the same screen tip text for both "Show all" and
    "Hide all" buttons (that is obvious)
    If i click "Hide all" button, i want the screen tip text as:
    "Click to hide all instructions"..............probably i need to
    change this in the "showhide.js" (how to do this).............can
    you help me to achieve even this :-) Thankx a lot in advance :-)
    Note: You may thing that this screen tip text is not required
    for these two buttons (as it is self-explanatory) (I too
    know)..........however, i can use this method in any other
    requirement...........

  • Stop and Play All Child MovieClips in Flash with Actionscript 3.0

    I am stuck with the ActionScript here. I have a very complex animated flash movie for eLearning. These contain around 10 to 15 frames. In each frame I am having multiple movie clip symbols. The animation has been created using a blend of scripting and also normal flash animation.
    Now I want to create pause and play functionality for the entire movie. I was able to create the pause function but when i try to play the movie it behaves very strange.
    I was able to develop the pause functionality by refering to the below mentioned links:
    http://www.unfocus.com/2009/12/07/stop-all-child-movieclips-in-flash-with-actionscript-3-0 /
    http://www.curiousfind.com/blog/174
    Any help in this regard is highly appreciated as i am approaching a deadline.
    I am pasting the code below:
    import flash.display.MovieClip;
    import flash.display.DisplayObjectContainer;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    import fl.transitions.*;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    import flash.events.Event;
    import flash.events.MouseEvent;
    stop();
    // function to stop all movieclips
    function stopAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            (content as MovieClip).stop();
        if (content.numChildren)
            var child:DisplayObjectContainer;
            for (var i:int, n:int = content.numChildren; i < n; ++i)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        stopAll(child);
                    else if (child is MovieClip)
                        (child as MovieClip).stop();
    // function to play all movieclips
    function playAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            var movieClip:MovieClip = content as MovieClip;
            if (movieClip.currentFrame < movieClip.totalFrames) // if the main timeline has reached the end, don't play it
       movieClip.gotoAndPlay(currentFrame);
        if (content.numChildren)
            var child:DisplayObjectContainer;
            var n:int = content.numChildren;
            for (var i:int = 0; i < n; i++)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        playAll(child);
                    else if (child is MovieClip)
                        var childMovieClip:MovieClip = child as MovieClip;
                        if (childMovieClip.currentFrame < childMovieClip.totalFrames)
          //childMovieClip.play();
          childMovieClip.play();
    function resetMovieClip(movieClip:MovieClip):MovieClip
        var sourceClass:Class = movieClip.constructor;
        var resetMovieClip:MovieClip = new sourceClass();
        return resetMovieClip;
    pauseBtn.addEventListener(MouseEvent.CLICK, onClickStop_1);
    function onClickStop_1(evt:MouseEvent):void
    MovieClip(root).stopAll(this);
    myTimer.stop();
    playBtn.addEventListener(MouseEvent.CLICK, onClickPlay_1);
    function onClickPlay_1(evt:MouseEvent):void
    MovieClip(root).playAll(this);
    myTimer.start();
    Other code which helps in animating the movie and other functionalities are as pasted below:
    stage.addEventListener(Event.RESIZE, mascot);
    function mascot():void {
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    var sw:Number = stage.stageWidth;
    var sh:Number = stage.stageHeight;
    // resizing movieclip
    mc1.width = sw/3;
    mc1.height = sh/3;
    // positioning mc
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    stage.removeEventListener(Event.RESIZE, mascot);
    mascot();
    this.mascotAni.y = 100;
    function mascotReset():void
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    stage.removeEventListener(Event.RESIZE, mascot);
    mc1.width = 113.45;
    mc1.height = 153.85;
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    var interval:int;
    var myTimer:Timer;
    // function to pause timeline
    function pauseClips(secs:int, myClip:MovieClip):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myTimer.reset();
      myClip.nextFrame();
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    // function to pause timeline on a particular label
    function pauseClipsLabel(secs:int, myClip:MovieClip, myLabel:String):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myClip.gotoAndStop(myLabel);
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    MovieClip(root).pauseClips(4.5, this);
    // function to fade clips
    function fadeClips(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, 0.5, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to fade clips with speed
    function fadeClipsSpeed(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number, speed:int):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, speed, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to show screen transitions
    function screenFx(target_mc:MovieClip, next_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.OUT, duration:1.2, easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
    tranFx.addEventListener("allTransitionsOutDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsOutDone",doneTrans);
    // function to show screen transitions inverse
    function screenFxInv(target_mc:MovieClip, next_mc:MovieClip):void
    var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.IN, duration:2, easing:Strong.easeOut, startPoint:5, shape:Iris.SQUARE});
    tranFx.addEventListener("allTransitionsInDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsInDone",doneTrans);
    // function to zoom in
    function zoomFx(target_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Zoom, direction:Transition.IN, duration:3, easing:Strong.easeOut});
    //tranFx.addEventListener("allTransitionsInDone",doneTrans);
    /*function doneTrans(evt:Event):void
      next_mc.nextFrame();
    // Blinds Fx
    function wipeFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Wipe, direction:Transition.IN, duration:3, easing:Strong.easeOut, startPoint:9});
    // Blinds Fx Center
    function fadePixelFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Fade, direction:Transition.IN, duration:1, easing:Strong.easeOut});
    tranFx.startTransition({type:PixelDissolve, direction:Transition.IN, duration:1, easing:Strong.easeOut, xSections:100, ySections:100});

    This movie is an animated movie from the start to end. I mean to say that though it stops at certain keyframes in the timeline it stops for only a certain time and then moves on to the next animation sequence.
    Its not an application where the user can interact.
    On clicking the play button i want the movie to play normally as it was playing before. If the user has not clicked on the pause button it would anyhow play from start to finish.
    Is there anyway where i could send in the fla file?

  • How to read XML and parse all child nodes

    Here is a sample of my XML file and I want to be able to put into a grid the Server Name, User ID, Password, and then list under all Databases associated with that server.
    <Servers>
      <Server>
        <Name>PROD_Server</Name>
        <Database>CUSTOMER</Database>
        <Database>LOCATION</Database>
        <Database>ORDERS</Database>
        <Database>RETURNS</Database>
        <UserID>RSMITH></UserID>
        <Password>$EWRaZ</Password>
       </Server>
       <Server>
        <Name>WEST_Server</Name>
        <Database>OPTIONS</Database>
        <Database>PRICES</Database>
        <UserID>THAMPTON></UserID>
        <Password>$EWRyAQ</Password>
       </Server>
       <Server>
        <Name>PASS_PLUS</Name>
        <Database>AUTOMOBILES</Database>
        <Database>VINNUMBERS</Database>
        <Database>OWNERS</Database>
        <UserID>BHARVEY></UserID>
        <Password>$VRRaZ</Password>
       </Server>
    </Servers>
    How can I do this?  

    Hello,
    Using the xml you supplied I see a master-detail relationship going on which is best shown in at least two DataGridView controls or the master table hooked up to a BindingSourceNavigator then child rows for Database in a DataGridview or label or TextBox
    controls.
    The code below loads the xml data into a DataSet then uses two BindingSource components to create a master-detail setup that can be setup say in Form load event
    Dim ds As New DataSet
    ds.ReadXml(IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "XMLFile1.xml"))
    Master.DataSource = ds
    Master.DataMember = ds.Tables(0).TableName
    Details.DataSource = Master
    Details.DataMember = ds.Relations(0).RelationName
    DataGridView1.DataSource = Master
    DataGridView2.DataSource = Details
    Declare the BindingSource components at form level
    Private Master As New BindingSource
    Private Details As New BindingSource
    Screenshot using two DataGridView controls.
    I would suggest the above as other methods to place all columns into a DataGridView is problematic.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem. Contact via my webpage under my profile
    but do not reply to forum questions.

  • SHOW ALL / HIDE ALL BUTTONS produce error in chm but not in "View Selected Item"

    My SHOW ALL and HIDE ALL buttons work in the View Selected
    Item mode. However, the compiled version generates an error tag:
    Line: 72
    Char: 1
    Error: Object expected
    Code: 0
    URL:
    mk:@MSITSTORE:C\Documents%20and%20Settings\glenn_michaels\RoboHelp%206.0\TCA\!SSL!
    In short, the the compiled chm is located in the SSL. I tried
    adding showhide.js and ehlpDhtm.js to the SSL folder, but that
    didn't make a difference. What is missing? How do I fix this?
    Many thanks in advance...
    glennito

    Mr. Grainge,
    I've tried to follow your instructions to the letter, but I'm
    not having any luck.
    1) I copied the showhide.js to
    a) RoboHelp 6.0 > Project Folder
    b) RoboHelp 6.0 > Project Folder > SSL
    c) RoboHelp 6.0 > Project Folder > SSL >
    MicroSoft_HTML_Help
    2) I pasted btnhideall.gif, btnshowall.gif, printerblue.gif
    into
    a) RoboHelp 6.0 > Project Folder > SSL
    b) they are also listed in RoboHelp 6.0 > Project Folder
    3)The Project Manager > Baggage File originally displayed
    a
    a) Project (Name) folder
    b) ehelp.xml
    c) RoboHHre.Ing
    I opened the Baggage File > Project (Name) folder,
    selected New Baggage File, and added, respectively:
    i. btnhideall.gif
    ii. btnshowall.gif
    iii. ehlpDhtm.js
    iv. printerblue.gif
    v. printerred.gif
    vi. showhide.js
    vii. TCA.fpj
    vii. root.fpj
    4) I also opened rhbag.apj in Notepad. It shows
    a) ehelp.xml and RoboHHRE.Ing accompanied by
    <usercreated>false</usercreated> tags
    b) the remaining baggage files are accomanied by
    <usercreated>true</usercreated> tags
    5) Finally, I used Notepad to display two topic files in
    which the error message identified a Line: XX. In one case the line
    # is 42, in another, 19. In both cases, when I counted lines,
    starting with <body>, I ended up on:
    onClick="JavaScript:hideEm()"
    However, I am none the wiser for my effort and don't know
    what (5) might be telling me.
    6) The only thing I can think of is that the compiled chm
    file is two levels away from the Project Name directory that holds
    all the files. The files live in Robohelp 6.0 > Project Name
    while the compiled help is found in Robohelp 6.0 > Project Name
    > SSL! > MicroSoft_HTML_Help > Project Name.chm.
    Should I be adjusting the Relative Path within the topics?
    Many thanks for your attention and assistance.
    glenn

  • Hide all tabs in Personal Number Search Help

    Hi Experts,
    In Assest Master AS01, there is a personal number field. When user click on search icon from this field, system has to show only newly added elementary search help tab and hide all standard elementary search helps tabs tagged to Collective Search help PREM.
    Collective search help tagged to Personal number is PREM. I am able to hide all elementary search helps by adding some code in search help exit "HRMC_PREM_EXIT_A " and can see newly added search help. But with addition to this tab there is one more search help tab is apperaing. Name of the appered search help is "Free Search". I checked PREM but there is no any elementary search help with this name.
    The reason behind adding new search tab is user should not see sensitive data and personal details.
    Can anybody tell me how to hide this tab? Your suggation(any enhancement point) is highly needed for me.
    Thanks in advance!
    Regards,
    Meera.

    Hi,
    In the P_Pernr object for field, AUTHC add M as well. Refer the below link for more detals.
    http://help.sap.com/erp2005_ehp_02/helpdata/en/ef/4aba3b3bf00152e10000000a114084/content.htm
    Regards,
    Gowrinadh

  • Help! Took mac to store today as DVD stuck in drive- 3 hour round trip!!! Told it was fixed and it now won't even switch on :( I press the on button and all I get is a continuos loading symbol and then it shuts down . Worse state than it was before :( :(

    Help! Took mac to store today as DVD stuck in drive- 3 hour round trip!!! Told it was fixed and it now won't even switch on :( I press the on button and all I get is a continuos loading symbol and then it shuts down . Worse state than it was before :( :( not happy at all and not well enough to travel to get it fixed (my mum went today) anyone got any ideas please???

    Oh ok - Thankyou for that. I will be ringing them tomorrow and I will not be happy ! And I'm hoping they can suggest what I'm suppose to do about getting it back to them as I can't take it in myself. SO so angry!!! Does people getting it back in a worse state happen often? :| do read these discussion boards? I hope they do!!!

  • HT1495 I am a teacher and we all have the same itunes account for school. I started downloading apps and it was downloading on others' ipads too.  I shut off all the syncing on my ipad but other teacher are saying they still getting my stuff. What do I/th

    I don't know if they just got my stuff from before and are just seeing it now or if they still are getting my information.  I don't have anything to hide but it's awkward knowing other people are seeing all you are downloading and even messaging.  I want to talk to them more and know exactly when and where they are receiving the information but I haven't yet.  I talked with one teacher and she thought they just have to turn off the syncing or automatic downloads on their ipads.  Will that stop it?

    Turning off automatic downloads will stop the other iPads from getting your downloads. You should all do this on each of your iPads.
    Settings>iTunes and App Store>Automatic Downloads>Off.... Music, Apps and Books - All Off.
    As far as Messaging, if you are all using the same Apple ID, you will all receive the same messages because Messages uses the Apple ID email address as the means by which you are contacted. Apparently all of the devices were set up with the Apple ID, which is fine, but you should all associate a new email address on each device where you can be reached. One device can keep the Apple ID as the contact address.
    Settings>Messages>Send and receive>Add another email address.
    Add your own unique email addresses in there. Apple will verify those addresses. Go to the inboxes of those email addresses and read the email from Apple. Follow the instructions in the email in order to finish the verification process.
    Then go back to Settings>Messages>You can be reached by iMessage at ..... and remove the Apple email address from all but one of the iPads. Or you can just uncheck the Apple email address as the contact address, select the new email address, and check the correct email address as the "start new conversations from"
    You will now all have your own email addresses as the address at which you can be contacted with the Messages app.

  • Updated to Mavericks and the new version of iPhoto starts to install but just gets to 10.2MB and starts all over and then comes up with an error message

    I installed Mavericks to my computer and iPhoto isn’t working it has a grey no working symbol over it.  So I tried to download the new version of iPhoto but it starts to download and just gets to 10.2MB and starts all over after about 3 mins of doing this it comes up with an error message saying  an error had occurred.  I have tried downloading several times restarting the computer and downloading and still get the same thing over and over again.  Any help would be greatly appreciated! 

    Contact App Store support. There's a link on the right hand side of the App Store Window.

  • The vibrate symbol that appears on screen when turning vibrate on, continually appears on my screen and vibrates all day.  Has anyone had this problem or know how to fix it?

    The vibrate symbol that appears on screen when turning vibrate on, continually appears on my screen and vibrates all day.  Has anyone had this problem or know how to fix it?

    Although you say you have let the battery drain, was it for long enough? Since nothing else that you've tried so far has worked, I suggest that you leave the iPod unplugged for at least four days, preferably a week. That way, if something is stopping the iPod from turning the screen on, then whatever it is will drain the battrey. However, since the screen isn't on, that may take longer than if the screen was on.
    Then, after that time, plug the iPod into a power source and leave it alone for at least thirty minutes. Only after thirty minutes will it show any signs of life, but you should leave it until it is fully charged before trying to use it.
    If you get to this stage, the fact that the battery has drained will cause the iPod to reset when it springs back to life.
    Let us know how you get on.

  • I recently ran monolingual and removed all but the intel-64 bit architectures.  Now my iphoto will not open.  Here's the message  that I get. Process:         iPhoto [3543] Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto Identifier:

    I recently ran monolingual and removed all but the intel-64 bit architectures.  Now my iphoto (along with Idvd, garage band, imovie) will not open.  Here is the message that I get.
    Process:         iPhoto [3543]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         ??? (???)
    Build Info:      iPhotoProject-4750000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [109]
    Date/Time:       2011-06-10 21:48:59.821 -0500
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          -4164908 sec
    Crashes Since Last Report:           8
    Per-App Crashes Since Last Report:   11
    Anonymous UUID:                      45357CCD-011B-482E-A2EA-CF42096F1321
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: no suitable image found.  Did find:
              /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow: mach-o, but wrong architecture
              /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow: mach-o, but wrong architecture
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.53f13
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: ST31000528ASQ, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0x24300000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0x24400000
    USB Device: External HDD, 0x1058  (Western Digital Technologies, Inc.), 0x0901, 0x26400000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000

    Please let me know when you find a fix. I did the same thing and have tried every suggestion I can find online. The message I get is...
    Process:         iPhoto [4991]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         ??? (???)
    Build Info:      iPhotoProject-6070000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [142]
    Date/Time:       2011-06-13 23:39:38.485 +1200
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          -1643976 sec
    Crashes Since Last Report:           35
    Per-App Crashes Since Last Report:   12
    Anonymous UUID:                      D4811036-EA8D-479D-8D9F-11E2FC8F6D4C
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
      Referenced from: /Applications/iPhoto.app/Contents/MacOS/iPhoto
      Reason: no suitable image found.  Did find:
              /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow: mach-o, but wrong architecture
              /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow: mach-o, but wrong architecture
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.9)
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545025B9SA02, 232.89 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898, 3.5 GB
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26100000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24600000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06610000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x06500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x06300000
    I have reinstalled Mac OSX 10.6.3 and done the updates from there.
    I have reinstalled ilife 11 from disk and done the updates.
    I have deleted all the suggested files and then redone install and updates.
    I have tried just reinstalling iphoto and doing updates.
    Is there any way to get a replacement -  /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
    file with the right architecture?

  • My phone has been smashed I need to get records of all my iMessages and texts from the last month. How do I get these?

    My phone has been smashed I need to get records of all my iMessages and texts from the last month. How do I get these?

    Do you have a backup of your iPhone which contains these messages?
    If so, you can restore a new iPhone from that backup during setup.
    If not, the messages are gone.

  • How do I create my own favorite template for DVD slideshows? I used to be able to select this from pulldown menu, but cannot now do so. I am directed straight to templates, which take more memory. I have a large slideshow, and need all the space I can get

    First, how do I create my own favorite theme template for DVD slideshows? I used to be able to select this from pulldown menu, but cannot now do so. I am directed straight to already existing themes, which take more memory. I have a large slideshow, and need all the space I can get. I just want to use a picture as my DVD cover, and then insert a slideshow. Also, when I try to burn my 8.5gb double sided slideshow, all that burns is the music. It is a large slideshow, a memorial on the life of my now deceased brother. This means a lot to me and to my family, and I am having so much trouble trying to burn it. I have gone into Project View and selected appropriately. The bar shows I have room to burn this DVD, but it does not burn.  I have burned so many DVDs in the past, but this one just will not burn. I am so confused at this point. I will say this is the first 8.5gb I have attempted to create and burn. My specs list a 7.7gb or 4.7gb as operable....but there are no 7.7gb dvds. I had to purchase 8.5gb. Help? What am I doing wrong? I have spent so much time on this, and just cannot figure it out.

    Final Cut is a separate, higher end video editor.  The pro version of iMovie.
    Give iPhoto a look at for creating the slideshow.  It's easy to assemble the photos in an album in iPhoto, put them in the order you want and then make a slideshow of them.  You can select from various themes and transitions between slides and add music from your iTunes library.
    When you have the slidshow as you want use the Export button at the bottom of the iPhoto window and export with Size = Medium or Large.
    Save the resulting Quicktime movie file in your Movies folder.
    Next, open iDVD, choose your theme and drag the QT movie file into the menu window being careful to avoid any drop zones.
    Then follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    The reason I suggest iPhoto is that I find it much easier to use than iMovie (except for the older iMovie 6 HD version).  Personal preferences showing here.

  • When I bring up my Mozillafirefox, all I get is a window with a blank white screen. (I 'reinstalled' Firefox 3.66 about a month and a half ago, (and lost all my bookmarks as a result therein), and hope I can get my firefox back this time without having t

    When I bring up my Mozillafirefox, all I get is a window with a blank white screen, (and the firefox logo). (After using Firefox very happily for over a year, I had to 'reinstall' Firefox 3.66 about a month and a half ago, (and lost all my bookmarks as a result therein), and hope I can get my firefox back this time without having to reinstall. Mozilla Firefox is still listed as one of my active programs). HELP! Is there a way to get my firefox back without reinstalling? Many thanks!
    == This happened ==
    Every time Firefox opened
    == June 30, 2010 ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)

    same problem. wtf. just happened one day when i went to use it. nothing out of the ordinary installed either....

  • Getting error -21 all of a sudden and unable to open a video chat

    Here's my issue, new 24" imac behind a Netgear Router using a fixed (reserved) IP from the dhcp. After opening all the ports that were needed by iChat AV I was happily video conferencing with others for a few weeks. Yesterday, after conferencing with a few people in the morning I was unable to get it to work later in the day and ever since. I have read and tried everything I could find to fix this and am at a wall.
    I did not install new software between when it was working and when it stopped, about the only thing I can think of is I had WoW running and my eyeTV 250 to see if it could handle it. The TV video stuttered so I quit eyeTV.
    Right now, I can text chat fine. I can 2-way audio chat. When I try and connect to a friend or any of the apple test servers (appleu3test01, etc.), my video window comes up waiting for connection then I get a "Disconnected from video chat because: Can't get video from the camera". The full error log is below.
    Console.log lists this error: "2006-10-04 09:00:31.722 iChat[197] WARNING: Freeze-frame failed: couldn't get local buffer for layer Local!"
    Here's a laundry list of what I have done so far to try and resolve it all resulting in the same behavior and the -21 error:
    *Quicktime streaming is set at about my dsl speed (I tested the dsl speed at a few online testers). IChat set to Bandwidth limit: none.
    *Reset the router to factory and reentered all the port forwards.
    *Shut off every other machine in the house to make sure they weren't sucking bandwidth
    *Bypassed the router, connecting to ISP with a fixed IP
    *Disconnected everything from iMac (printer, EyeTv) and restarted.
    *Fixed permissions in Disk Utility
    *Ran Mac Janitor
    *Reapplied the 10.4.8 Update
    *Zapped the PRAM
    *probably more I can't think of right now....heh
    I got this thing 2 weeks ago and within days the superdrive died. The local Apple store has the part ordered (it's been a week). I hope my cam isn't messed up now....I suppose it's possible that some resource got fritzed with WoW and the TV running but since I have no CD drive I can't resort to a disk right now.
    I realize this is long winded but I figured I'd err on the side of complete info. Any suggestions that you can offer would be greatly appreciated.
    Date/Time: 2006-10-04 09:00:37.422 -0700
    OS Version: 10.4.8 (Build 8L2127)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 3825289383.
    todds777721: State change from AVChatNoState to AVChatStateWaiting.
    0x1b93ea80: State change from AVChatNoState to AVChatStateInvited.
    0x1b93ea80: State change from AVChatStateInvited to AVChatStateConnecting.
    todds777721: State change from AVChatStateWaiting to AVChatStateConnecting.
    0x1b93ea80: State change from AVChatStateConnecting to AVChatStateConnected.
    todds777721: State change from AVChatStateConnecting to AVChatStateConnected.
    todds777721: State change from AVChatStateConnected to AVChatStateEnded.
    Chat ended with error -21
    0x1b93ea80: State change from AVChatStateConnected to AVChatStateEnded.
    Chat ended with error -21
    Video Conference Error Report:
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK6b580af6765bddf5
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 3 NOTIFY
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @:0 type=4 (00000000/2)
    [VCRECEIVEERROR]
    [23]
    @:0 type=4 (00000000/2)
    [VCTRANSMITERROR]
    [22]
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK63cedfb3621b8711
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 2 NOTIFY
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP u0en0.0;branch=z9hG4bK6b01f73c0b50f2e2
    Max-Forwards: 70
    To: "todds777721" <sip:[email protected]>;tag=1928512074
    From: "u0" <sip:[email protected]>;tag=1101927157
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>
    Event: conference
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK738f390c1d5818d9
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 413
    [v=0
    o=demo1appleu3 0 0 IN IP4 u0en0.0
    s=todds777721
    c=IN IP4 u0en0.0
    b=AS:2147483647
    t=0 0
    a=hwi:288:2:2500
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16390 RTP/AVP 12
    a=rtcp:16391
    a=rtpID:1837567197
    m=video 16388 RTP/AVP 126
    a=rtcp:16389
    a=rtpmap:126 X-H264
    a=RTCP:AUDIO 16391 VIDEO 16389
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=framerate:30
    a=rtpID:-1074546252
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK738f390c1d5818d9
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK738f390c1d5818d9
    To: "u0" <sip:[email protected]>
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    Video Conference Support Report:
    @:0 type=2 (00000000/2)
    [VCUSE_INTERNALISIGHT]
    [25]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [NOTIFY sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK6b580af6765bddf5
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 3 NOTIFY
    Contact: <sip:[email protected]>;isfocus
    Event: conference
    Subscription-State: terminated;reason=noresource
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @:0 type=2 (00000000/2)
    [VCUSE_EXTERNALMIC]
    [30]
    @:0 type=2 (00000000/2)
    [VCUSE_INTERNALISIGHT]
    [25]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [NOTIFY sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK63cedfb3621b8711
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    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: 205
    <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>
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP u0en0.0;branch=z9hG4bK6b01f73c0b50f2e2
    To: "todds777721" <sip:[email protected]>;tag=1928512074
    From: "u0" <sip:[email protected]>;tag=1101927157
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>;isfocus
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [ACK sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK4fd5b6561d101bfa
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK738f390c1d5818d9
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 471
    v=0
    o=Todd 0 0 IN IP4 m.0
    s=todds777721
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:34:2:2160
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1068825812
    m=video 16384 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=rtpID:-872118336
    @:0 type=2 (00000000/22)
    [VCVIDEO_OUTGOINGATTEMPT]
    [4]
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x181fff com.apple.iChat 3.1.5 (440) /Applications/iChat.app/Contents/MacOS/iChat
    0x15cfd000 - 0x15d07fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x15f05000 - 0x15f44fff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x15f4f000 - 0x15f81fff com.apple.QuickTimeIIDCDigitizer 7.1.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x15fac000 - 0x15feafff com.apple.QuickTimeUSBVDCDigitizer 1.6.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x1600b000 - 0x16049fff GLEngine /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0x1608b000 - 0x16180fff com.elgato.mpegsupport EyeTV MPEG Support 1.0.4 (build 35) (1.0.4) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x164db000 - 0x164e0fff com.apple.audio.AppleHDAHALPlugIn 1.2.4 (1.2.4a21) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x16a50000 - 0x16a55fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x16b2a000 - 0x16b2efff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x16b49000 - 0x16b75fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x16c00000 - 0x16c1afff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x16ceb000 - 0x16cebfff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x171fc000 - 0x17206fff com.apple.iokit.IOUSBLib 2.6.0 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x17272000 - 0x17274fff com.apple.AutomatorCMM 1.0.1 (87) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x17747000 - 0x1774bfff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x177f9000 - 0x17855fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x19b04000 - 0x19cfdfff net.telestream.wmv.import 2.1.0.33 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8fc00000 - 0x8fc50fff dyld /usr/lib/dyld
    0x90000000 - 0x901c0fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90218000 - 0x9021dfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021f000 - 0x90261fff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90289000 - 0x9036dfff com.apple.ApplicationServices.ATS 2.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90396000 - 0x90757fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907e6000 - 0x908bdfff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90904000 - 0x90904fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90906000 - 0x90a0ffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a60000 - 0x90ae3fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90b0c000 - 0x90b7efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bf1000 - 0x90bfcfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90c01000 - 0x90c76fff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c8c000 - 0x90ca0fff libauto.dylib /usr/lib/libauto.dylib
    0x90ca6000 - 0x90f71fff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90fce000 - 0x91047fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9108a000 - 0x910cbfff com.apple.CFNetwork 129.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x910df000 - 0x910f3fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910ff000 - 0x91190fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x911cc000 - 0x911ecfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x911f9000 - 0x91208fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9120b000 - 0x913c0fff com.apple.security 4.5.1 (29002) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x914bd000 - 0x914c6fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x914cd000 - 0x914f5fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91507000 - 0x9150ffff libbsm.dylib /usr/lib/libbsm.dylib
    0x91513000 - 0x9158cfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x915d6000 - 0x915d6fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x915d8000 - 0x9160bfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91621000 - 0x916fefff com.apple.ColorSync 4.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9173d000 - 0x917befff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917fb000 - 0x918adfff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x918e2000 - 0x91938fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91960000 - 0x9197afff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91988000 - 0x919a8fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x919b5000 - 0x919f1fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91a09000 - 0x91a17fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a1f000 - 0x91a5afff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a6e000 - 0x91b31fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b7c000 - 0x91b91fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b96000 - 0x91bb6fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91bbb000 - 0x91c1afff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c2c000 - 0x91c30fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c32000 - 0x91c98fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c9d000 - 0x91cddfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ce3000 - 0x91cfdfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d02000 - 0x91d04fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d06000 - 0x91d06fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91d08000 - 0x91deefff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91df6000 - 0x91e15fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e81000 - 0x91f0dfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91f19000 - 0x91fb0fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91fc9000 - 0x92576fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x925a9000 - 0x928d4fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92904000 - 0x92989fff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x929cb000 - 0x92bfffff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92d14000 - 0x92e02fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92e21000 - 0x92f10fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92f21000 - 0x92f41fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4c000 - 0x92fa8fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fbe000 - 0x92fbefff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc0000 - 0x92fd5fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe6000 - 0x92ff1fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ff9000 - 0x93002fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9300a000 - 0x9309dfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930b2000 - 0x930b7fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930bb000 - 0x930ddfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x930f1000 - 0x930f9fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93100000 - 0x93169fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93192000 - 0x931dafff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93204000 - 0x93215fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9321e000 - 0x93225fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9322b000 - 0x93551fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93686000 - 0x93693fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93698000 - 0x936b1fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936fe000 - 0x936fefff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93700000 - 0x93d6efff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940f6000 - 0x94168fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941a1000 - 0x94260fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942a3000 - 0x942a3fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942a5000 - 0x9446efff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x944c2000 - 0x94502fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9450a000 - 0x9454efff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9458d000 - 0x945d1fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x945dc000 - 0x9461efff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94664000 - 0x94678fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94687000 - 0x946c1fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x946de000 - 0x946effff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946f6000 - 0x94703fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94753000 - 0x9476dfff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94774000 - 0x94a43fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b06000 - 0x94b28fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94c1f000 - 0x94d55fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94de3000 - 0x94df2fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94dfa000 - 0x94e27fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e2e000 - 0x94e3efff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94e42000 - 0x94e6efff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94e7d000 - 0x94e9bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94ea2000 - 0x94f0efff com.apple.Bluetooth 1.7.9 (1.7.9f12) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x951e5000 - 0x95275fff com.apple.WebKit 418.9 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x952d1000 - 0x9535efff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95398000 - 0x95696fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95823000 - 0x9584bfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96003000 - 0x96004fff libCyrillicConverter.dylib /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x96006000 - 0x96007fff libGreekConverter.dylib /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0x9600c000 - 0x96023fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96025000 - 0x96046fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x96054000 - 0x96063fff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x96068000 - 0x96069fff libThaiConverter.dylib /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0x9606b000 - 0x9607efff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x969db000 - 0x969fafff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96fa5000 - 0x96fc8fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97138000 - 0x97145fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x972a4000 - 0x972a5fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97a77000 - 0x97b60fff com.apple.viceroy.framework 276.0 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x982dc000 - 0x982defff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98516000 - 0x98ecdfff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x990f4000 - 0x990f8fff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x990fa000 - 0x991defff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x9932a000 - 0x993f1fff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99878000 - 0x99883fff com.apple.IMFramework 3.1.1 (427) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9988d000 - 0x999eafff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x9b77d000 - 0x9b77ffff Interposers.dylib /usr/libexec/oah/Shims/Interposers.dylib
    24" iMac   Mac OS X (10.4.8)   2.16 GHz, 2 Gb Ram
    24" iMac   Mac OS X (10.4.8)   2.16 GHz, 2 Gb Ram

    In System Preferences > Accounts > Your Mac User
    Account > Login items tab.
    Is there anything in here to do with the EyeTV ?
    Anything to do with any other Video App. ?
    There is an eyeTV Helper app that by default gets set to load on startup. I changed the pref, removed the startup item and rebooted. Error still present.
    Can iMovie see the camera ?
    I had not yet used iMovie but opened it and checked, yes it can use the cam to record clips and edit them.
    I have had no problems with ChatFX so I don't think
    it is that.
    I have since removed it, maybe I'll reinstall it clean, might just tweek something.
    My first suggestion would have been to delete
    com.apple.ichat.plist as this holds the camera info
    but you have done this.
    Yeah, I even deleted any pref that looked related. Just for good measure, I deleted the ichat.plist again just now, no luck. He's the odd thing, right now I have both my main account and a temp account on the machine logged in. I switch to temp, run eyeTV, photobooth etc and ichat connects to the apple test servers like a champ. I swap back to the main login and get the error -21. It will only connect via chat and audio.
    That would make me suggest you delte any EyeTV .plist
    items and see if that releases the camera.
    Just tried that, no help.
    Alos check Activity Monitor in
    APplications/Utilitiies and check to see if any part
    of EyeTV or WoW is running and end it with the big
    red icon top left if it is.
    Bizzarly check here also for a stuck Print Monitor
    and end that if you have it.
    Nothing from wow, killed the eyetv helper as I mentioned above and restarted. I'm running a lexmark 5150 printer on share and it has some processes and hooks into the image capture software. I killed all those processes, no help. It's got nothing in the print queue. I have previously completely disconnected the printer and eyeTV from the usb ports and restarted to see if that was the prob.
    When video did work on the main user, I recall playing with some of the installed BigBang games software. Just to be sure, I have tossed any pref file related to those programs. When in use, the game software failed to make a good video connection (it uses little ichat video windows inside the game app) but it didn't break ichat. I was able to run a video window outside the game for my two kids that were playing and ichat worked fine after that for another day or so.
    24" iMac   Mac OS X (10.4.8)   2.16 GHz, 2 Gb Ram

Maybe you are looking for

  • Sharing/working on the same files?

    Sorry if this is rookie question, but I'm in the US and my buddy's in Scotland. Is there a way we can share GB files, work on them and send them to each other? I guess simultaneous recording is out of the question... thanks in advance. Jon

  • C4188 - printing with one cartridge

    Is it possible to print with one cartridge installed? I am having problem with black cartridge so i removed it. The printer refuses to do anything with just color cartridge installed. Annoys a lot !!! It is a pure show stopper. Thanks in advance.

  • Line in late 2011 Macbook pro?

    I am attempting to connect a stand-alone tape deck (cassette) to my Macbook Pro.  It is the 13in late 2011.  I see that the larger Macbook has a mic in, but on the specs for the 13, it shows "audio in/out" as a feature.  I only see the headphone jack

  • PSD FILE MAXIMUM

    I can't place Photoshop CS6 file to Illustrator CS5 that I already choice PSD file maximum  for any  version?

  • If I no longer have access to a device, how do I un-sync it?

    My laptop is synced with my ex-boyfriends laptop and also synced with friend of his phone. I do not want him to see that he has my passwords or search history. How can I un-sync my email and firefox settings from his devices without telling him? How