100+ Views & 0 Replies Can someone help me..?

Hello There,
Is it possible to delete Level 0 Members in a dimension using Rule files? I did read this thread (HOW can i delete the members in dim using MAXL and tried the Remove Unspecified option but it removes all the members in the dimension.
For Instance consider this Outline. Here Coke, Pepsi, Dr.Pepper, Sprite, Regular, Latte, French & Mocha are the ones which needs to be removed
Product<2><Never Share>
+Beverages<2>
-+ Soft Drinks <1>
--+ Soda<2>
----+ Diet<4>
-------+ Coke <Alias: 001 Diet Coke>
-------+ Pepsi <Alias: 002 Diet Pepsi>
-------+ Dr.Pepper <Alias: 003 Diet Dr.Pepper>
-------+ Sprite <Alias: 004 Diet Sprite>
----+ Regular<4>
-------+ Cokei <Alias: 005 Coke>
-------+ Pepsi <Alias: 006 Pepsi>
-------+ Dr. Pepper <Alias: 007 Dr. Pepper>
-------+ Sprite <Alias: 008 Sprite>
--+ Hot Drinks<1>
----+ Cofee<4>
-------+ Regular <Alias: 010 Regular>
-------+ Latte <Alias: 020 Latte>
-------+ French <Alias: 030 French>
-------+ Mocha <Alias: 040 Mocha>
+Fast Food
Please can some one help me.
Thanks in Advance+

Natesh gave you the right advice -- to use the remove unspecified option you must provide a dimension build file/table/source that has all of the members you want but not the members you don't. The members you don't want are the ones that are not in the file -- they get deleted.
Have a read of this thread and see all of the links: Re: dropping a essbase cube member through Maxl Script
Regards,
Cameron Lackpour

Similar Messages

  • Can someone help me with this powerpoint viewer with director issue?

    I have 'inherieted' an interactive CD that was built using director mx2004.  I get presentations from different people and put them on a CD to hand out at the end of a seminar. For the Power Point presentations I have director use the powerpoint viewer just in case someone does not have PowerPoint on there machine.  This works fine, but I have been getting people that are using PowerPoint 2007 which uses a different extension (pptx instead of ppt).  I also have word documents, adobe pdf, ect.  Here is the code that handles how to open up the files, whether using PPT viewer or the default program. wasn't sure if you needed all of this or not.
    --RUNS WHEN MAIN OPEN BUTTON IS PRESSED--
    on mouseUp me
      --if button 1-5 has been clicked
      if(_global.btnNum = 0 or _global.btnNum = 1 or _global.btnNum = 2 or _global.btnNum = 3 or _global.btnNum = 4 ) then
        --assign selected file to a variable
        selectedFile = sprite("listBox").selectedItem.data
        --path of the file that is selected
        filePath = "workshops\days\day" & _global.btnNum & "\" & selectedFile
        --find out the type of file
        fileExt = selectedFile.char[(selectedFile.length-2)..selectedFile.length]
      end if
      --if file is classified secret and not provided on this disc (must have "*" at data end)
      if(selectedFile.char[selectedFile.length] = "*") then
        --set file to placeholder.ppt (since it has an * at data end)
        filePath = "workshops\placeholder.ppt"
        --set file extension to ppt (since it has an * at data end)
        fileExt = "ppt"
      end if
      if(fileExt = "ppt")  then
        --opens file in powerpointviewer
        _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
        else
        --opens file in the default program on that computer
        _player.open(filePath, "launchers\PLAY.EXE")
      end if
    end
    I have been trying to get the pptx files to also open in the viewer.  I have been able to do this, but the problem is it wants to try to open everything in viewer.
    Here is what I have tried:
    1- This wants to open everything in PPT viewer.  Not sure why.
    if(fileExt = "ppt" or "pptx")  then
         --opens file in powerpointviewer
         _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
         else
         --opens file in the default program on that computer
         _player.open(filePath, "launchers\PLAY.EXE")
       end if
    end
    2-This will just open the 'pptx' file in Power Point.  I am sure I am using the 2007 version of PPT viewer in director.
    if(fileExt = "ppt")  then
        --opens file in powerpointviewer
        _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
      else if(fileExt = "pptx") then
        --opens file in powerpointviewer
      _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
      else
        --opens file in the default program on that computer
        _player.open(filePath, "launchers\PLAY.EXE")
      end if
    end
    I am not sure where to go from here.  Can someone help me?  Have not been using director for very long.
    Thanks

    It's unclear what exactly is the problem: is it managing to distinguish and open PowerPoint 2007 (*.pptx) files, or is it that every file tries to run in PPTView.exe?
    Part of your problem might be that .pptx is 4 characters long, while .ppt is only 3, and the code dealing with the file extension:
    fileExt = selectedFile.char[(selectedFile.length-2)..selectedFile.length]
    will only grab the last 3 characters regardless of where the "." is.
    Create a new #movie script member (press Ctrl + Shift + U and then hit the + button - "New Cast Member" - at the top-left of the script window that opens). Set the script syntax to JavaScript by altering the drop-down just below the + button and paste in the following:
    function jsGetExtension(fName){
      if(typeof(fName)!="string") return "";
      return fName.split(".").pop();
    Then use the following modification to your original script:
    global btnNum
    --RUNS WHEN MAIN OPEN BUTTON IS PRESSED--
    on mouseUp me
      --if button 1-5 has been clicked
      case btnNum of
        0, 1, 2, 3, 4:
          --assign selected file to a variable
          selectedFile = sprite("listBox").selectedItem.data
          --path of the file that is selected
          filePath = "workshops\days\day" & btnNum & "\" & selectedFile
          --find out the type of file
          fileExt = jsGetExtension(selectedFile)
      end case
      --if file is classified secret and not provided on this disc (must have "*" at data end)
      if (selectedFile.char[selectedFile.length] = "*") then
        --set file to placeholder.ppt (since it has an * at data end)
        filePath = "workshops\placeholder.ppt"
        --set file extension to ppt (since it has an * at data end)
        fileExt = "ppt"
      end if
      case fileExt of
        "ppt", "pptx":
          --opens file in powerpointviewer
          _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
        otherwise:
          --opens file in the default program on that computer
          _player.open(filePath, "launchers\PLAY.EXE")
      end case
    end
    However, I'm nervous that you aren't supplying the full path to files and executables. I don't know where the movie file that contains this code is relative to the folder "launchers\" or "workshops\" put I suggest you prepend the movie's full path (or the application's full path) like so:
    global btnNum
    --RUNS WHEN MAIN OPEN BUTTON IS PRESSED--
    on mouseUp me
      mPath = _movie.path -- OR _player.applicationPath
      --if button 1-5 has been clicked
      case btnNum of
        0, 1, 2, 3, 4:
          --assign selected file to a variable
          selectedFile = sprite("listBox").selectedItem.data
          --path of the file that is selected
          filePath = mPath & "workshops\days\day" & btnNum & "\" & selectedFile
          --find out the type of file
          fileExt = jsGetExtension(selectedFile)
      end case
      --if file is classified secret and not provided on this disc (must have "*" at data end)
      if (selectedFile.char[selectedFile.length] = "*") then
        --set file to placeholder.ppt (since it has an * at data end)
        filePath = mPath & "workshops\placeholder.ppt"
        --set file extension to ppt (since it has an * at data end)
        fileExt = "ppt"
      end if
      case fileExt of
        "ppt", "pptx":
          --opens file in powerpointviewer
          _player.open(filePath & " /S", mPath & "launchers\PPTVIEW.EXE")
        otherwise:
          --opens file in the default program on that computer
          _player.open(filePath, mPath & "launchers\PLAY.EXE")
      end case
    end

  • I purchased a one year subscription to Rolling Stone magazine . I got two issues and now it will not allow me to view the current issue, I have to pay again. Can someone help me, how do I get my purchase. I have the automatic download turned on.

    I purchased a one year subscription to Rolling Stone magazine . I got two issues and now it will not allow me to view the current issue, I have to pay again. Can someone help me, how do I get my purchase ? I have the automatic download turned on.

    Try contacting apple

  • I'm trying to view my movies through itunes and apple TV but only a few appear in itunes when i add to library, they include .avi and mp4 files.  Whys have only a few copied and rest wont add to my library, can someone help? Do I need to convert them?

    I'm trying to view my movies through itunes and apple TV but only a few appear in itunes when i add to library, they include .avi and mp4 files.  Whys have only a few copied and rest wont add to my library, can someone help? Do I need to convert them?

    What are the file extensions of the movies that won't import to iTunes
    What video content works in iTunes
    What video content works with iTunes and mobile devices?
    iTunes:
    Video content purchased from the iTunes Store.
    QuickTime and MPEG-4 movie files that end in ".mov", ".m4v", or ".mp4" and are playable in QuickTime Player.
    Video podcasts.
    iTunes Digital Copies.
    iTunes Store Movie Rentals (Requires iTunes 9 or later).

  • Im an unable to view "about this Mac". Can someone help please

    Im an unable to view "about this Mac". Can someone help please. I am running a new iMac but can't see the spec because i cannot open the relevant window

    dominic23 wrote:
    A new Mac comes with 90 days of free tech support from AppleCare.
    And one-year free repair service. Three years or more for tech support and repair if you bought the AppleCare Protection Plan, which is the best warranty policy available for desktop machines. Get it if you don't have it before contacting Apple.
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10.1), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • Background image seems to be applied twice Can someone help with this CSS issue....

    Can someone help with this CSS issue....
    http://66.162.81.144/cms400min/default.aspx
    If you view the main page you will see that our background is
    2 shades of
    orange.. if you look at the line that divides those colors to
    the right and
    left you wil notice that the line is higher
    if you notice that it seems that there is another background
    on top of the
    first one..its the only thing i can think of..
    the only place where the image is being referenced is in this
    CSS style
    html, body
    min-height:100%;
    margin-bottom:1px;
    text-align:center;
    background-repeat:no-repeat;
    background-image:url(images/Background-Color2.jpg);
    background-color:#F74902;
    background-position:center;
    background-attachment:fixed;
    Is there something wrong with the above CSS that could or
    would cause this?
    is it because im applying the image to both the HTML and
    BODY?
    ASP, SQL2005, DW8 VBScript, Visual Studio 2005, Visual Studio
    2008

    You've attached the background to both the html and the body.
    I would do this:
    html, body {
    min-height:100%;
    margin-bottom:1px;
    body{
    text-align:center;
    background-repeat:no-repeat;
    background-image:url(images/Background-Color2.jpg);
    background-color:#F74902;
    background-position:center;
    background-attachment:fixed;
    Having said that the image doesn't look any higher on the
    right than the
    left to me in Firefox. Is it just an optical illusion?
    Daniel wrote:
    > Can someone help with this CSS issue....
    >
    >
    http://66.162.81.144/cms400min/default.aspx
    >
    > If you view the main page you will see that our
    background is 2 shades of
    > orange.. if you look at the line that divides those
    colors to the right and
    > left you wil notice that the line is higher
    >
    > if you notice that it seems that there is another
    background on top of the
    > first one..its the only thing i can think of..
    >
    > the only place where the image is being referenced is in
    this CSS style
    >
    > html, body
    >
    > {
    >
    > min-height:100%;
    >
    > margin-bottom:1px;
    >
    > text-align:center;
    >
    > background-repeat:no-repeat;
    >
    > background-image:url(images/Background-Color2.jpg);
    >
    > background-color:#F74902;
    >
    > background-position:center;
    >
    > background-attachment:fixed;
    >
    >
    > }
    >
    > Is there something wrong with the above CSS that could
    or would cause this?
    > is it because im applying the image to both the HTML and
    BODY?
    >

  • How can I relocate songs from my Itunes? Itunes tells me that the original files can not be found! can someone help?

    How can I relocate songs from my Itunes? Itunes tells me that the original files can not be found! can someone help?

    punzete wrote:
    I can't do it that way. I erase these songs from the iTunes Library, but when I sycronize the iPhone, all these songs are copied again to the Library. Isn't there any way to stop that? Everything I buy on iTunes Store through my iPhone cannot be erased from the iPhone?
    WHY can't you do it the way 100 million people do it?

  • I have no video on my MacBook Pro, can someone help?

    Hello, whenever I go to a website and want to view a video there is nothing there, just an empty box. Can someone help me figure this out? I'm running Mac OS X version 10.6.8

    Many - if not most - websites with videos, such as YouTube, need the Adobe Flash Player plugin to view videos. If you need to download it, you can get it at http://get.adobe.com/flashplayer/.
    Good luck,
    Clinton

  • Acrobat 9 does not recognize the smart card reader that work with other app. Can someone help me?

    Hi to All,
    Acrobat 9 (included in CS4 design premium) does not recognize the smart card reader. I have a smart card reader ACR38 smart card that works with all applications except Acrobat 9 pro. I tried to uninstall and reinstall it again, but when I try to insert the digital signature message is always the same, that does not find the Acrobat reader. Can someone help me?

    Hi MartinR
    Thank you for your reply, i have tried what you suggest, and it did not work, the i DVD opening title changed but not the embedded movie.
    Perhaps it is a setting in Final Cut Express?
    After capturing my footage, i open a new project then i convert all clips to anamorphic, to give me the letterbox effect, i have tried now with and without anamorphic.
    In my canvas screen, the footage does not fill the square, even if i have not selected anamorphic, and fall well within the TV safe areas, but the only way to ill the canvas up is to crop it bigger, but still when i export it does not give me the full screen view.
    Any ideas?

  • Can someone help me retrieve my pages panel?

    My Pages panel has disappeared. It isn't an option to view it at all. I tried  trashing the pages panel plugin and replacing it, trashing indesign preferences and restarting (pressing shift/control/option/command while starting indesign) and disabling/enabling the pages panel hyperlink in extensions manager. None of this has worked. Can someone help me? Very frustrated.

    Yes, uninstall InDesign, but try the other stuff first. See CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3 for info on the clearer tool.

  • SQL : Please can someone help ?

    Guys,
    Please can someone help me ? I've written the following query and struggling to get the correct
    outer join. In the first query, i look for all daily transactions of users registered under
    hill.com but it's not giving me a record for an game at 4:24 because there are 0 players from hill.com
    I need that to be displayed as 0 instead of skipping the entire row..
    In the second query, when i comment out the registration_site, that gives me the missing game. How do
    i use the outerjoin in this case ?
    select
    TO_CHAR(e.DRAW_DATE, 'Day') ,          
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,        
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') , 
             to_char(f.card_price/100,'999999.99')  , 
          to_char(f.prize_initialamount/100,'999999.99') ,
          to_char(e.total_prize/100,'999999.99') ,
            case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end ,
          to_char(e.player_count,'999999') ||','||    
          to_char((e.total_amount_bet/100)/(f.card_price/100),'999999') ,
             to_char(count(distinct(b.user_id)),'999999') ,  
             to_char(sum(d.total_bet_amount),'999999.99')
    FROM
         production.gl_user_registrations a,
         production.gl_user_game_sessions b,
         production.vf_game_parameters c,
         production.gl_user_game_play_summarys d,
         production.VF_BINGO_DRAW_HISTORY e,
         production.VF_BINGO_SCHEDULES f
    WHERE
         d.game_configuration_id =  c.parameters_id
    AND      b.user_game_session_id = d.user_game_session_id
    AND      b.user_id = a.user_id
    AND      (a.user_privilege = 'USER' or a.user_privilege = 'CHAT-RESTRICTED-USER')
    AND      d.user_game_state <> 'INPROGRESS'
    AND      c.for_money = '1'
    AND      registration_site<>'CWC'
    AND      game_type='Bingo'
    AND      d.GAME_PLAY_ID=e.GAME_PLAY_ID
    AND      trunc(e.draw_date) = trunc(sysdate-1)               
    AND      registration_Site  in ('hill.com')
    AND      f.DRAW_TIME(+) = to_char(e.DRAW_DATE, 'hh24:mi:ss')              
    AND      f.week_day(+) = mod(to_char(e.DRAW_DATE,'d'),7)+1 
    GROUP BY
         f.card_price/100,      
            f.prize_initialamount / 100 ,
         TO_CHAR(e.DRAW_DATE, 'Day') ,            
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,  
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') ,    
             e.player_count,        
             e.total_amount_bet/100 ,        
             e.total_prize/100 ,       
             (e.total_amount_bet - e.total_prize)/100 ,
             case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end,      
             DECODE(SUBSTR(((e.total_amount_bet - e.total_prize)/100),1,1),'-', 'N', 'Y')
    order by TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR'), TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS')
    Thursday  08-FEB-07 04:12:00        .25       5.00      29.93 Y      39,    164       6      14.25
    Thursday  08-FEB-07 04:18:00        .10       5.00      29.93 Y      37,    410       8      14.40
    Thursday  08-FEB-07 04:30:00        .50       5.00      34.31 Y      34,     94       3      22.50
    Thursday  08-FEB-07 04:36:00        .10       5.00      24.46 Y      38,    335       7      12.70
    select
    TO_CHAR(e.DRAW_DATE, 'Day') ,          
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,        
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') , 
             to_char(f.card_price/100,'999999.99')  , 
          to_char(f.prize_initialamount/100,'999999.99') ,
          to_char(e.total_prize/100,'999999.99') ,
            case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end ,
          to_char(e.player_count,'999999') ||','||    
          to_char((e.total_amount_bet/100)/(f.card_price/100),'999999') ,
             to_char(count(distinct(b.user_id)),'999999') ,  
             to_char(sum(d.total_bet_amount),'999999.99')
    FROM
         production.gl_user_registrations a,
         production.gl_user_game_sessions b,
         production.vf_game_parameters c,
         production.gl_user_game_play_summarys d,
         production.VF_BINGO_DRAW_HISTORY e,
         production.VF_BINGO_SCHEDULES f
    WHERE
         d.game_configuration_id =  c.parameters_id
    AND      b.user_game_session_id = d.user_game_session_id
    AND      b.user_id = a.user_id
    AND      (a.user_privilege = 'USER' or a.user_privilege = 'CHAT-RESTRICTED-USER')
    AND      d.user_game_state <> 'INPROGRESS'
    AND      c.for_money = '1'
    AND      registration_site<>'CWC'
    AND      game_type='Bingo'
    AND      d.GAME_PLAY_ID=e.GAME_PLAY_ID
    AND      trunc(e.draw_date) = trunc(sysdate-1)               
    --AND      registration_Site  in ('williamhill.com')
    AND      f.DRAW_TIME(+) = to_char(e.DRAW_DATE, 'hh24:mi:ss')              
    AND      f.week_day(+) = mod(to_char(e.DRAW_DATE,'d'),7)+1 
    GROUP BY
         f.card_price/100,      
            f.prize_initialamount / 100 ,
         TO_CHAR(e.DRAW_DATE, 'Day') ,            
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,  
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') ,    
             e.player_count,        
             e.total_amount_bet/100 ,        
             e.total_prize/100 ,       
             (e.total_amount_bet - e.total_prize)/100 ,
             case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end,      
             DECODE(SUBSTR(((e.total_amount_bet - e.total_prize)/100),1,1),'-', 'N', 'Y')
    order by TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR'), TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS')
    Thursday  08-FEB-07 04:12:00        .25       5.00      29.93 Y      39,    164      22      41.00
    Thursday  08-FEB-07 04:18:00        .10       5.00      29.93 Y      37,    410      27      41.00
    Thursday  08-FEB-07 04:24:00        .25       5.00      17.16 Y      35,     94      13      23.50
    Thursday  08-FEB-07 04:30:00        .50       5.00      34.31 Y      34,     94      14      47.00

    which table contains game_type column???
    It will be better to prefix all the columns with table aliases.

  • Hi, can someone help me how can i connected my multimeter to my pc with rs232, because my computer can´t recognize the device, i mean the multimeter, is a multimeter keithley serie 2400, and i already downloaded all the drivers for labview even the VISA

    hi, can someone help me how can i connected my multimeter to my pc with rs232, because my computer can´t recognize the device, i mean the multimeter, is a multimeter keithley serie 2400, and i already downloaded all the drivers for labview even the VISA

    Marco,
    Here are some suggestions:
    1) Check the manual the Keithley manual to see how to configure the RS-232.   
        On some models you need set Factory defaults to USER and turn on the RS-232.   
        Also there may be a setting for SCPI which you want on (probably on by default).
    2) On your PC - open Device Manager. See if a COM port exists and is functional.
         You must get this working before continuing.
          You can set the COM port parameters by right clicking and selecting Properties.  
         (On some PCs the onboard ports can be disabled in the BIOS)
    3) If step two was OK, open MAX (Measurement and Automation eXplorer).      
        On the left side, click on Devices and Hardware.   
        Click on Serial and Parallel.   
        Go to the COM port you found in Device Manager.   
        Open a VISA Test Panel.
        Now I don't have one I can look at right now, so this is general idea:
       Configure the COM port to match the Keithley settings (should be OK if step 2 worked)  
       Go to the (I think) Input Output tab (you want to send a command)   
       The command string input should already have a *IDN? entered, if not, type it in.   
       Click on the Query button to send the command and check the response.  
       If you get an ID string back (Company name, Model, FW Version ...) then it works.   
       (Disregard an error saying it did not get enough charcters back.) 
    I hope this helps,
    steve
    Help the forum when you get help. Click the "Solution?" icon on the reply that answers your
    question. Give "Kudos" to replies that help.

  • Major problems, comp freezing, programs not responding...can someone help?

    I've been trying to get my Yahoo Messenger to work. It used to work fine. Then all the sudden, it wouldn't connect. This was the 3.0 Beta version. So I switched to the older 2.5 version and it worked fine for a while. I played around with the beta YM to see what the problem was and on the connection settings, it had been switched to "default" from "behind firewall". I switched it back to "behind firewall" and it finally connected. But then my built-in iSight wouldn't work. It wouldn't let people view, told them I was unavailable. Then all the sudden, I wasn't receiving any messages from my friends so I signed off for a bit. I came back on and about 30 messages popped up and it was my friend thinking I was ignoring them. No I can't receive from them, and mine don't go through. I switched back to 2.5 and it was doing the same thing. I tried reinstalling both. Still nothing.
    I ran the disk permissions program and reinstalled them again. Still nothing. I downloaded Skype and my cam won't work there either. I tried it on iChat, it won't work there either. My internet started running slower than usual too. And then my whole computer decided to freeze up and I had to manually shut it down and restart it again. I tried to open up anything on the dock and it wouldn't. Then like YM, everything opened up at once about 20 minutes later.
    My question is, what do I need to do. Why is it doing this? Can someone help me figure out what is wrong with my computer? I haven't had it but maybe 5 months. I have been bragging about it that I have no problems like I did with my old computer that ran windows. Now I'm not so sure. Can someone help me?

    Like this? It says nothing about 3.0 beta version and thats the one thats mainly having problems.
    Host Name:
    Date/Time: 2007-03-15 21:12:41.043 -0500
    OS Version: 10.4.9 (Build 8P2137)
    Report Version: 4
    Command: Yahoo! Messenger
    Path: /Applications/Yahoo! Messenger
    Parent: WindowServer [1532]
    Rosetta: Yes
    Version: 2.5.3 (Build 1062) (2.5.3, Copyright © 1994-2003, Yahoo! Inc. All rights reserved.)
    PID: 1671
    Thread: Unknown
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0:
    0 LaunchCFMApp 0xb80a562f 0xb8000000 + 677423
    1 LaunchCFMApp 0xb809faf5 0xb8000000 + 654069
    2 LaunchCFMApp 0xb80bd70e 0xb8000000 + 775950
    3 LaunchCFMApp 0xb811e3d9 spinlockwrapper + 1985
    Thread 1:
    0 LaunchCFMApp 0xb822fa2b strchr + 72
    1 LaunchCFMApp 0xb81cb43b pthreadcondwait + 3114
    2 LaunchCFMApp 0xb8167612 catchexception_raise_stateidentity + 318
    3 LaunchCFMApp 0xb8166b4e CallPPCFunctionAtAddressInt + 177088
    4 LaunchCFMApp 0xb8166a45 CallPPCFunctionAtAddressInt + 176823
    5 LaunchCFMApp 0xb8167710 catchexception_raise_stateidentity + 572
    6 LaunchCFMApp 0xb8200bb4 pthread_create + 1124
    Thread 2:
    0 LaunchCFMApp 0xb8134280 spinlockwrapper + 91752
    1 LaunchCFMApp 0xb814d2b8 CallPPCFunctionAtAddressInt + 72490
    2 LaunchCFMApp 0xb80c803c 0xb8000000 + 819260
    Thread 3:
    0 LaunchCFMApp 0xb8134443 spinlockwrapper + 92203
    1 LaunchCFMApp 0xb815f9e8 CallPPCFunctionAtAddressInt + 148058
    2 LaunchCFMApp 0xb81625b5 CallPPCFunctionAtAddressInt + 159271
    3 LaunchCFMApp 0xb80c803c 0xb8000000 + 819260
    Thread 4:
    0 LaunchCFMApp 0xb81342f2 spinlockwrapper + 91866
    1 LaunchCFMApp 0xb814d490 CallPPCFunctionAtAddressInt + 72962
    2 LaunchCFMApp 0xb80c803c 0xb8000000 + 819260
    Unknown thread crashed with i386 Thread State:
    eax: 0x00000000 ebx: 0xb80a5608 ecx:0x00000000 edx: 0x00000003
    edi: 0x00000000 esi: 0x80d03990 ebp:0xb7fff9f8 esp: 0xb7fff9c0
    ss: 0x0000001f efl: 0x00010206 eip:0xb80a562f cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs:0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x2fff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    0x17aa000 - 0x17abfff com.ecamm.iGlassesVDIG iGlasses v1.4 (1.4) /Library/Components/iGlasses.component/Contents/MacOS/iGlasses
    0xc250000 - 0xc251fff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0xc266000 - 0xc266fff libSystem.B.dylib /usr/libexec/oah/Shims/libSystem.B.dylib
    0xc284000 - 0xc285fff BDL.dylib /usr/libexec/oah/Shims/BDL.dylib
    0xe9f4000 - 0xea20fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0xea64000 - 0xea65fff CoreFoundation /usr/libexec/oah/Shims/CoreFoundation.framework/CoreFoundation
    0xeb05000 - 0xeb0afff com.apple.audio.AppleHDAHALPlugIn 1.2.9 (1.2.9a4) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xeb2e000 - 0xeb6dfff com.apple.QuickTimeFireWireDV.component 7.1.5 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xebbc000 - 0xebbcfff ApplicationServices /usr/libexec/oah/Shims/ApplicationServices.framework/ApplicationServices
    0xed73000 - 0xed7dfff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x100a9000 - 0x100c0fff com.ecamm.iglasses v1.4 (1.4) /Library/InputManagers/Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    0x1020d000 - 0x1023ffff com.apple.QuickTimeIIDCDigitizer 7.1.5 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x10279000 - 0x102b8fff com.apple.QuickTimeUSBVDCDigitizer 1.7.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x102d9000 - 0x102e3fff com.apple.iokit.IOUSBLib 2.6.0 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x1031f000 - 0x1035dfff GLEngine /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0x103f0000 - 0x103f6fff IOKit /usr/libexec/oah/Shims/IOKit.framework/IOKit
    0x10400000 - 0x10407fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x1040c000 - 0x1043cfff GLEngine /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0x10440000 - 0x10599fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x105c5000 - 0x105e1fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x1060c000 - 0x10646fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x1064b000 - 0x10722fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x1073d000 - 0x107a1fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x10810000 - 0x109fefff com.apple.ATIRadeonX1000GLDriver 1.4.52 (4.5.2) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x10a3a000 - 0x10a5efff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x10b10000 - 0x10b11fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x11284000 - 0x11289fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x113c3000 - 0x113ddfff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x113e2000 - 0x1143efff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x8fc00000 - 0x8fc50fff dyld 46.12 /usr/lib/dyld
    0x8fe00000 - 0x8fe4afff dyld 46.12 /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.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90289000 - 0x9036dfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90396000 - 0x90757fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907e6000 - 0x908bdfff com.apple.CoreFoundation 6.4.7 (368.28) /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.18 /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.20 /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.2 (29774) /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.9 /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.24 (???) /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 182 /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 - 0x91a5dfff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a72000 - 0x91b35fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b80000 - 0x91b95fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b9a000 - 0x91bbafff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91bbf000 - 0x91c1ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c31000 - 0x91c35fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c37000 - 0x91ca0fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ca5000 - 0x91ce5fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ceb000 - 0x91d05fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d0a000 - 0x91d0cfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d0e000 - 0x91dfcfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e1b000 - 0x91e1bfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e1d000 - 0x91f03fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f0b000 - 0x91f2afff 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
    0x91f96000 - 0x92022fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9202e000 - 0x920c5fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920de000 - 0x9268bfff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926be000 - 0x929e9fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a19000 - 0x92b08fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b0b000 - 0x92b91fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd3000 - 0x92e07fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f2a000 - 0x92f4afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f55000 - 0x92fb1fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc7000 - 0x92fc7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc9000 - 0x92fdefff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fef000 - 0x92ffafff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93002000 - 0x9300bfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93013000 - 0x930a6fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930bb000 - 0x930c0fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930c4000 - 0x930e6fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x930fa000 - 0x93102fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93109000 - 0x93172fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9319b000 - 0x931e3fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9320d000 - 0x9321efff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93227000 - 0x9322efff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93234000 - 0x9355bfff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93690000 - 0x9369dfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93709000 - 0x93709fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9370b000 - 0x93d79fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94101000 - 0x94175fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941af000 - 0x9426dfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942b1000 - 0x942b1fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942b3000 - 0x94466fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x944af000 - 0x944effff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x944f7000 - 0x9453bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94542000 - 0x94556fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x946ed000 - 0x946fefff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94705000 - 0x94712fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94762000 - 0x9477cfff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94783000 - 0x94a58fff com.apple.QuickTime 7.1.5 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b1c000 - 0x94b3efff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94e95000 - 0x94eb3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x96026000 - 0x9603dfff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x9603f000 - 0x96060fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x9606e000 - 0x9607dfff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x96085000 - 0x96098fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x969f5000 - 0x96a14fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97159000 - 0x97166fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9854d000 - 0x990fafff com.apple.QuickTimeComponents.component 7.1.5 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99362000 - 0x99366fff com.apple.QuickTimeH264.component 7.1.5 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99368000 - 0x9944efff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x9959e000 - 0x99667fff com.apple.QuickTimeMPEG4.component 7.1.5 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99e8e000 - 0x99eadfff com.apple.OpenTransport 3.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x99f28000 - 0x99f29fff com.apple.iokit.dvcomponentglue 1.9.0 /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0x9baaa000 - 0x9baacfff Interposers.dylib /usr/libexec/oah/Shims/Interposers.dylib
    0xb8000000 - 0xb82d6fff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    Translated Code Information:
    Rosetta Version: 17.25
    Args: /Applications/Yahoo! Messenger /Applications/Yahoo! Messenger -psn03276801
    Exception: EXCBADACCESS (0x0001)
    Thread 0: (0xb029ddf8, 0xb8134280)
    0x90031480: /usr/lib/libSystem.B.dylib : pthread_condwait + 0x1b4
    0x92c45448: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : -[NSConditionLock lockWhenCondition:] + 0x38
    0x937e4930: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : -[NSUIHeartBeat _heartBeatThread:] + 0x138
    0x92bef94c: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : _forkThreadForFunction + 0x6c
    0x9002bdc8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x900314b0 ctr: 0x9002c460
    r00: 0xffffffdb r01: 0xf0284980 r02: 0xa0001fcc r03: 0x00003e03
    r04: 0x00003f03 r05: 0x00000000 r06: 0x00000001 r07: 0x00000000
    r08: 0xf0284ae8 r09: 0x00000001 r10: 0x00000486 r11: 0xa0006b70
    r12: 0x9002c460 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0xa37447f8
    r24: 0xa37447f8 r25: 0xa37447f8 r26: 0xa00012dc r27: 0x101da858
    r28: 0xa0001fcc r29: 0x101da884 r30: 0xa0001fcc r31: 0x900312dc
    Thread 1: Crashed (0xb7fff9c0, 0xb80a562f)
    0x85390004: No symbol
    0x85471cd8: No symbol
    0x85471e00: No symbol
    0x90d0f7b8: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _ReleaseClosure + 0x380
    0x90d0f410: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TerminateApplication + 0x58
    0x90d23c84: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : cxa_atexitwrapper + 0xc4
    0x90014d7c: /usr/lib/libSystem.B.dylib : __cxafinalize + 0xe8
    0x90014c64: /usr/lib/libSystem.B.dylib : _exit + 0x24
    0x918f47f0: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices : _GetCIcon + 0x0
    0x85589278: No symbol
    0x855891f4: No symbol
    0x85582fd8: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x85390004 ctr: 0x8546d210
    r00: 0x00000000 r01: 0xbffff110 r02: 0x00487000 r03: 0x00000000
    r04: 0x00000064 r05: 0x00000000 r06: 0xf060b9c0 r07: 0x00000005
    r08: 0x00000001 r09: 0x001dd570 r10: 0xa0006160 r11: 0xa9e8e3a0
    r12: 0x00486048 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0xa0cafe50 r18: 0x00000000 r19: 0xffffffff
    r20: 0xa0004ca8 r21: 0xa0004ca8 r22: 0x00312010 r23: 0x00000000
    r24: 0xa0001fcc r25: 0x00000000 r26: 0xa000d6e4 r27: 0x000072d8
    r28: 0x0047f000 r29: 0xa0ca61bc r30: 0xa0c9f44c r31: 0xf060b9c0
    Thread 2: (0xb0728df0, 0xb81342f2)
    0x9007282c: /usr/lib/libSystem.B.dylib : pthread_cond_timedwait_relativenp + 0x1ec
    0x90d14afc: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TSWaitOnSemaphoreCommon + 0xbc
    0x90d1c7a0: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TimerThread + 0x48
    0x9002bdc8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x90072868 ctr: 0x90055940
    r00: 0xffffffd9 r01: 0xf068ccb0 r02: 0xa0001fcc r03: 0x00003803
    r04: 0x00003903 r05: 0x00000000 r06: 0x009863b8 r07: 0x9040bf81
    r08: 0x00000000 r09: 0x00000001 r10: 0xf068cdc8 r11: 0xa0006b5c
    r12: 0x90055940 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0xa0cac768 r23: 0xa0ca6b50
    r24: 0x00000000 r25: 0xa0002654 r26: 0xa0ca6b84 r27: 0xa0ca6bb8
    r28: 0xf068cdc8 r29: 0xa0001fcc r30: 0xa0001fcc r31: 0x90072654
    Thread 3: (0xb06a77fc, 0xb8134443)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    0x90d05008: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _YieldToThread + 0x204
    0x90d0ee60: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _SetThreadState + 0xac
    0x90d0ed88: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _SetThreadStateEndCritical + 0x88
    0x85477548: No symbol
    0x85475ae8: No symbol
    0x85474328: No symbol
    0x8546e334: No symbol
    0x8546d1e8: No symbol
    0x8546d518: No symbol
    0x8546d290: No symbol
    0x8538f7d8: No symbol
    0x85477c24: No symbol
    0x90d0ef30: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _InvokeThreadEntryUPP + 0x18
    0x90d0ecb0: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _CooperativeThread + 0x138
    0x9002bdc8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x9000ab5c ctr: 0x9000ac00
    r00: 0xffffffe1 r01: 0xf060b0c0 r02: 0x00000013 r03: 0xf060b16c
    r04: 0x00000003 r05: 0x00000018 r06: 0x00000020 r07: 0x000086ab
    r08: 0x00000000 r09: 0x00000000 r10: 0x00000000 r11: 0xa00069a4
    r12: 0x9000ac00 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000018
    r24: 0xf060b16c r25: 0x00000020 r26: 0x000086ab r27: 0x00000000
    r28: 0x00000000 r29: 0x00000003 r30: 0x00000003 r31: 0x90d04e14

  • Can someone help! PDF export failed claims "pages are too big" they are 8x10??

    Can someone help! PDF export failed claims "pages are too big" they are 8x10??
    I'm trying to export an 100 page magazine, just a small proof right now and I've done this a million times. There are no errors, all my links are good but still it will not save.
    Can anyone help!

    Hi marthah,
    I'd love to help, but need a little more information to go on. Are you converting from or to PDF, and where is this error occurring (in Acrobat, InDesign, or somewhere else)? What operating system/browser are you using?
    Thanks,
    Sara

  • Hi! Can someone help me with repair service address for Palm TX?

    Hi! Can someone help me with repair service address for Palm TX?
    This question was solved.
    View Solution.

    Good luck, and please let us know here how it works out for you.  We love knowing of current resources who can help solve people's problems with these older devices.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

Maybe you are looking for