Silverlight 5

Mac OS X 10.8.5 
Safari 6.2.3
Silverlight 5 downloads, the .pkg won't open.
Message said that developer cannot be confirmed.
A search for Silverlight on the computer shows Silverlight 1 and 2 and 3
Do I need to delete all those previous versions? And how is that accomplished?

Hi,
I went to the Silverlight Home page and this is the message that appeared.
One
moment, please, while the current Silverlight installation status is determined...
Microsoft Silverlight may not be supported on your computer's hardware or operating system.
Strange because there is an older version of Silverlight on this computer. This iMac is running OS X 10.8.5. It is a late 2009 model. And now nothing downloads.
Thanks for your suggestion.

Similar Messages

  • After Export to Excel File error while opening using xmlwriter in silverlight

    Can one help me in fixing following issue after to export to excel had done iam getting following error message 
    "The file you are trying to open, 'test.xls', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do uou want to open the file now ?"
    If i click Yes file opens correctly but it shows above message . Can any one suggest me how to avoid this programatically with the following code.
    I tried by changing the file saving as  .xls to .xlsx  but it doesnt works.
    Public Sub Export()
    Dim ss As String = "urn:schemas-microsoft-com:office:spreadsheet"
    Dim DataType As String
    Dim DataValue As Object
    'Dim DataView As C1.Silverlight.Data.DataView = m_DataGrid.ItemsSource
    'Dim ItemsSource As C1.Silverlight.Data.DataTable = DataView.Table
    Dim XmlSettings As XmlWriterSettings
    Dim ColumnBinding As Binding
    Dim FieldName As String
    Dim DataGridColumn As C1.Silverlight.DataGrid.DataGridColumn
    Dim ColumnIndex As Integer
    Dim J As Integer
    Dim DataGridRow As C1.Silverlight.DataGrid.DataGridRow
    Dim CommonUtil As New GoldCRM.Core.Common.Util
    Dim PropertyInfo As System.Reflection.PropertyInfo
    Dim CellFormat As String
    Try
    If m_DataGrid.Rows.Count = 0 Then Exit Try
    XmlSettings = New XmlWriterSettings
    XmlSettings.Indent = True
    XmlSettings.NewLineOnAttributes = False
    Using myXML As XmlWriter = XmlWriter.Create(m_Stream, XmlSettings)
    With myXML
    .WriteStartDocument()
    .WriteProcessingInstruction("mso-application", "progid=" & ControlChars.Quote & "Excel.Sheet" & ControlChars.Quote)
    .WriteStartElement("Workbook", ss)
    .WriteStartElement("DocumentProperties", "urn:schemas-microsoft-com:office:office")
    .WriteElementString("Author", m_DocumentProperties.Author)
    .WriteElementString("LastAuthor", String.Format("{0} {1}", Application.Current.Resources("EmpFirstName"), Application.Current.Resources("EmpLastName")))
    .WriteElementString("Created", m_DocumentProperties.Created)
    .WriteElementString("LastSaved", m_DocumentProperties.LastSaved)
    .WriteElementString("Company", Application.Current.Resources("REPORTINGSITENAME"))
    .WriteElementString("Version", m_DocumentProperties.Version)
    .WriteEndElement() 'Document Properties
    .WriteStartElement("ExcelWorkbook", "urn:schemas-microsoft-com:office:excel")
    .WriteElementString("WindowHeight", m_WorkbookProperties.WindowHeight)
    .WriteElementString("WindowWidth", m_WorkbookProperties.WindowWidth)
    .WriteElementString("WindowTopX", m_WorkbookProperties.WindowTopX)
    .WriteElementString("WindowTopY", m_WorkbookProperties.WindowTopY)
    .WriteElementString("ProtectStructure", m_WorkbookProperties.ProtectStructure)
    .WriteElementString("ProtectWindows", m_WorkbookProperties.ProtectWindows)
    .WriteEndElement() 'Excel Workbook
    .WriteStartElement("Styles")
    For I As Integer = 0 To m_Styles.Count - 1
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, m_Styles(I).ID)
    If m_Styles(I).Name <> "" Then
    .WriteAttributeString("ss", "Name", ss, m_Styles(I).Name)
    End If
    'ALIGNMENT LOGIC:
    .WriteStartElement("Alignment")
    If Not m_Styles(I).Alignment Is Nothing Then
    If m_Styles(I).Alignment.Horizontal <> 0 Then
    .WriteAttributeString("ss", "Horizontal", ss, m_Styles(I).Alignment.Horizontal.ToString)
    End If
    If m_Styles(I).Alignment.Vertical <> 0 Then
    .WriteAttributeString("ss", "Vertical", ss, m_Styles(I).Alignment.Vertical.ToString)
    End If
    If m_Styles(I).Alignment.WrapText = True Then
    .WriteAttributeString("ss", "WrapText", ss, "1")
    End If
    End If
    .WriteEndElement()
    'BORDER LOGIC:
    .WriteStartElement("Borders")
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Bottom")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Left")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Right")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Top")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteEndElement() 'Borders
    'FONT LOGIC:
    .WriteStartElement("Font")
    Dim myFont As Excel.Styles.Font = m_Styles(I).Font
    .WriteAttributeString("ss", "FontName", ss, myFont.FontName.ToString)
    .WriteAttributeString("ss", "Size", ss, myFont.Size)
    .WriteAttributeString("ss", "Color", ss, myFont.Color.ToString.Remove(1, 2))
    If myFont.Bold = True Then .WriteAttributeString("ss", "Bold", ss, "1")
    If myFont.Italic = True Then .WriteAttributeString("ss", "Italic", ss, "1")
    If myFont.Underline <> 0 Then .WriteAttributeString("ss", "Underline", ss, myFont.Underline.ToString)
    .WriteEndElement()
    Dim myInterior As Excel.Styles.Interior = m_Styles(I).Interior
    .WriteStartElement("Interior")
    .WriteAttributeString("ss", "Color", ss, myInterior.Color.ToString.Remove(1, 2))
    .WriteAttributeString("ss", "Pattern", ss, "Solid")
    .WriteEndElement()
    .WriteStartElement("NumberFormat")
    .WriteEndElement()
    .WriteStartElement("Protection")
    .WriteEndElement()
    .WriteEndElement() 'Style
    Next I
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, "DateStyle")
    .WriteStartElement("NumberFormat")
    .WriteAttributeString("ss", "Format", ss, "General Date")
    .WriteEndElement() 'NumberFormat
    .WriteEndElement() 'Style
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, "HeaderStyle")
    .WriteStartElement("Font")
    .WriteAttributeString("x", "Family", ss, "Swiss")
    .WriteAttributeString("ss", "Bold", ss, "1")
    .WriteEndElement() 'Font
    .WriteEndElement() 'Style
    .WriteEndElement() 'Styles
    'WORKSHEETS:
    .WriteStartElement("Worksheet")
    .WriteAttributeString("ss", "Name", ss, "WORKSHEET")
    .WriteStartElement("Table")
    .WriteAttributeString("ss", "ExpandedColumnCount", ss, m_DataGrid.Columns.Count)
    .WriteAttributeString("ss", "ExpandedRowCount", ss, m_DataGrid.Rows.Count + 100) 'Temporary fix: sometimes 1 row is not added.
    .WriteAttributeString("ss", "FullColumns", ss, m_DataGrid.Columns.Count)
    .WriteAttributeString("ss", "FullRows", ss, m_DataGrid.Rows.Count + 100) 'Temporary fix: sometimes 1 row is not added.
    .WriteAttributeString("ss", "DefaultRowHeight", ss, 15)
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    .WriteStartElement("Column")
    If TypeOf DataGridColumn Is C1.Silverlight.DataGrid.DataGridNumericColumn Then
    .WriteAttributeString("ss", "AutoFitWidth", ss, 1)
    ElseIf TypeOf DataGridColumn Is C1.Silverlight.DataGrid.DataGridDateTimeColumn Then
    .WriteAttributeString("ss", "AutoFitWidth", ss, 1)
    Else
    .WriteAttributeString("ss", "AutoFitWidth", ss, 0)
    End If
    If DataGridColumn.Width.Value <= 100 Then
    .WriteAttributeString("ss", "Width", ss, 100)
    Else
    .WriteAttributeString("ss", "Width", ss, DataGridColumn.Width.Value)
    End If
    .WriteEndElement()
    End If
    Next
    J = 0
    For Each DataGridRow In m_DataGrid.Rows
    J += 1
    If TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow Then
    .WriteStartElement("Row")
    .WriteAttributeString("ss", "Index", ss, J)
    .WriteAttributeString("ss", "AutoFitHeight", ss, 0)
    .WriteAttributeString("ss", "Height", ss, 15)
    ColumnIndex = 0
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    FieldName = String.Empty
    If TypeOf DataGridColumn Is DataGridBoundColumn Then
    ColumnBinding = TryCast(DataGridColumn, DataGridBoundColumn).Binding
    If ColumnBinding.Path IsNot Nothing Then
    FieldName = ColumnBinding.Path.Path
    End If
    ElseIf TypeOf DataGridColumn Is DataGridTemplateColumn Then
    If DataGridColumn.FilterMemberPath IsNot Nothing Then
    FieldName = DataGridColumn.FilterMemberPath.Trim
    End If
    End If
    If Not FieldName.Equals(String.Empty) Then
    ColumnIndex += 1
    .WriteStartElement("Cell")
    .WriteAttributeString("ss", "Index", ss, ColumnIndex)
    .WriteAttributeString("ss", "MergeAcross", ss, 0)
    .WriteAttributeString("ss", "StyleID", ss, "HeaderStyle")
    .WriteStartElement("Data")
    .WriteAttributeString("ss", "Type", ss, "String")
    If DataGridColumn.Header IsNot Nothing Then
    .WriteValue(DataGridColumn.Header.ToString)
    Else
    .WriteValue("")
    End If
    .WriteEndElement() 'Data
    .WriteEndElement() 'Cell
    End If
    End If
    Next
    .WriteEndElement() 'Row
    End If
    If Not (TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow) Then
    .WriteStartElement("Row")
    .WriteAttributeString("ss", "Index", ss, J + 1)
    .WriteAttributeString("ss", "AutoFitHeight", ss, 0)
    .WriteAttributeString("ss", "Height", ss, 15)
    ColumnIndex = 0
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    FieldName = String.Empty
    If TypeOf DataGridColumn Is DataGridBoundColumn Then
    ColumnBinding = TryCast(DataGridColumn, DataGridBoundColumn).Binding
    If ColumnBinding.Path IsNot Nothing Then
    FieldName = ColumnBinding.Path.Path
    End If
    ElseIf TypeOf DataGridColumn Is DataGridTemplateColumn Then
    If DataGridColumn.FilterMemberPath IsNot Nothing Then
    FieldName = DataGridColumn.FilterMemberPath.Trim
    End If
    End If
    If Not FieldName.Equals(String.Empty) Then
    ColumnIndex += 1
    Dim DataCellValue As Object = Nothing
    If Not (TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow) Then
    PropertyInfo = CommonUtil.GetProperty(DataGridRow.DataItem, FieldName)
    If PropertyInfo IsNot Nothing Then
    DataCellValue = PropertyInfo.GetValue(DataGridRow.DataItem, Nothing)
    End If
    End If
    CellFormat = String.Empty
    If DataCellValue IsNot Nothing Then
    Select Case DataCellValue.GetType.Name.ToUpper
    Case "BitmapImage".ToUpper
    DataValue = "Image"
    DataType = "String"
    Case "Hyperlink".ToUpper
    DataType = "String"
    DataValue = "Hyperlink"
    Case "Decimal".ToUpper
    DataType = "Number"
    DataValue = DataCellValue
    Case "DateTime".ToUpper
    If CType(DataCellValue, Date).Year > 1900 Then
    DataType = "DateTime"
    DataValue = DataCellValue
    CellFormat = "DateStyle"
    Else
    DataType = "String"
    DataValue = DataCellValue
    End If
    Case Else
    DataType = "String"
    DataValue = DataCellValue
    End Select
    Else
    DataType = "String"
    DataValue = String.Empty
    End If
    .WriteStartElement("Cell")
    .WriteAttributeString("ss", "Index", ss, ColumnIndex)
    .WriteAttributeString("ss", "MergeAcross", ss, 0)
    If Not CellFormat.Equals(String.Empty) Then
    .WriteAttributeString("ss", "StyleID", ss, CellFormat)
    End If
    .WriteStartElement("Data")
    .WriteAttributeString("ss", "Type", ss, DataType)
    .WriteValue(DataValue)
    .WriteEndElement() 'Data
    .WriteEndElement() 'Cell
    End If
    End If
    Next
    .WriteEndElement() 'Row
    End If
    Next
    .WriteEndElement() 'Table
    .WriteEndElement() 'Worksheet
    .WriteEndElement() 'Workbook
    .WriteEndDocument()
    .Close()
    End With
    End Using
    Catch ex As Exception
    Throw New Exception(ex.Message, ex)
    Finally
    If m_Stream IsNot Nothing Then
    m_Stream.Close()
    m_Stream.Dispose()
    End If
    m_Stream = Nothing
    m_DataGrid.IsLoading = False
    DataValue = Nothing
    'DataView = Nothing
    'ItemsSource = Nothing
    XmlSettings = Nothing
    ColumnBinding = Nothing
    DataGridColumn = Nothing
    End Try
    End Sub
    Krishna

    Hi,
    i have the same issue now where i need to populate the xport file name as report name. can you send me your solution please.

  • Silverlight and Windows 8.1 is not working

    Hi,
    I'm trying to get horizon.tv (by UPC) in The Netherlands working, and on Windows 7 it works, but on Windows 8.1 it simply doesn't work! Very strange, because Silverlight and Windows 8 are both from Microsoft!
    I've tried starting Firefox, Chrome and IE from the desktop, but it all fails.
    I have downloaded the latest Silverlight; it installed automatic, and further all is up to date.
    What is going wrong?
    Maarten van Loon
    The Netherlands

    Hi,
    Sorry to hear about the issue you are experiencing.
    Pease try change the Compatibility view Settings as below steps.
    1. open Desktop IE >go to "horizon.tv"
    2. select Tools > compatibility view > add site in box
    3. checked on"Display intranet sites in Compatibility View" and "Use Microsoft Compatibility Lists"
    4. restart IE
    If that doesn't help, please try installing this update
    KB2901549 which may resolve the issue, if all these no help, please try to use the
    MS "Fix-It"
    to uninstalled and reinstalled Silverlight again.
    Best Regards,
    Jambor 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Microsoft Silverlight application deployment to BO

    Hi,
    Please let me know whether we can deploy a Silverlight application to Business Objects?
    If possible please let me know how to do it?
    Regards,
    Lity

    Bjoern,
    I am not sure if copying the file to the file system will be reliable since I believe that the web content stored in the DB overwrites the file content when the instance is restarted or updated.  I will let you know if I come across this issue and please do the same for me as well. 
    In the mean time I will follow your suggestion as I don't have a better solution.
    Thanks,
    Sam

  • Microsoft Silverlight application deployment to NetWeaver CE v7.1 EhP1

    Hello,
    I'm a bit new to the MS Silverlight development arena but have worked extensively with web development technologies in the past.  Recently I was tasked with getting a Silverlight application to deploy onto NW CE but I'm not sure how to perform the following:
    1) Deploy the crossdomain.xml & clientaccesspolicy.xml files to the root of the NW CE server for security access control
         a) Currently I recieve a MS security access violation messge when performing REST calls to my local MII instance.
    2) Package and deploy the Silverlight content via an SDA into the App. Server environment.
    Any and all help is appreciated.
    Thanks,
    Sam

    Bjoern,
    I am not sure if copying the file to the file system will be reliable since I believe that the web content stored in the DB overwrites the file content when the instance is restarted or updated.  I will let you know if I come across this issue and please do the same for me as well. 
    In the mean time I will follow your suggestion as I don't have a better solution.
    Thanks,
    Sam

  • How do I get Silverlight Plugin to work on new Macbook Pro?

    Got a new MacBook Pro and tried to watch Netflix but I was prompted to install the Silverlight Plugin. I have the Silverlight dmg on my desktop but when I open it, the only thing there is the pkg file. Please help!

    I have it on my mac from the latest Office for mac.  It even updated after it was installed.  My issue is that when I try to log in to my accont, it tries and then logs straight back out.
    Any ideas on what's wrong?

  • Silverlight and google chrome not working after system update

    I just did a system update and now google chrome and the silverlight plugin do not work. I've tried uninstalling and reinstalling both numerous times, restarted, and checked for updates again but nothing works. What's going on? 

    Check compatibility with their respective vendors.

  • Flash and Silverlight don't work at all in Beta 34.0, when Internet Explorer properly works with these; happened immediately with update to Beta 34.0.

    Hello!
    Immediately upon updating to Beta 34.0, Silverlight and Flash, completely stopped working in Firefox. I am running Vista Home Premium, Service Pack 2.
    They work fine in Internet Explorer.
    This happens in any website I go to.
    For example, I can go to Youtube, and the page will show a black box where the video should be, but there are no play controls, or any way to enable the video. Clicking within the black box does nothing.
    On the music play site, Grooveshark, the site does not recognize Flash as being installed at all. (If you don't have Flash installed, this site pops up a message every time. Grooveshark correctly recognizes that Internet Explorer has Flash installed.)
    I updated the Flash plugin to the current version, which also did nothing.
    I have not reinstalled Firefox, or done a System Restore, yet.
    I just bought a new computer that I was going to migrate to, and retire this computer, so I was not going to do heroic efforts to fix this. I was reporting this more on the order of a bug report.
    Thanks.
    Karl

    This happened to me as well with Windows 7 32 bit (which I did as as upgrade from Vista Home Premium - if that might foul things up a bit) and affects Firefox 34.1 and IE. I did a system restore which took me back to Firefox 33 and Flash was fine. Later in the day Firefox updated back to 34.1 and I lost Flash again.

  • Doubt regarding HTTP Live Streaming for windows phone 8.1 silverlight app?

    Hi,
    I am developing a Windows phone 8.1 silverlight app.
    I want to add live streaming youtube channel , thats why I used  https://phonesm.codeplex.com/ this link as a reference , and I am able to play the links given in the samples, but I am unable to play my link https://www.youtube.com/watch?v=p2GF-QQS6n0
    I am getting 3108 unable to play media error with my link,
    My question Is there any need of streaming server ?
    If yes can anyone help how to  create the streaming server.
    Thanks....
    Suresh.M

    Hi Suresh.M
    As I can see a similar question on the Windows Phone Streaming Media discussion:
    https://phonesm.codeplex.com/discussions/545737
    You may need check into the call stack and find out what is the root cause, for instance if there any chance that your phone cannot reach to the video address, and did you enable some network capabilities, etc.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Doubt regarding facebook integration for windows phone 8.1 silverlight app?

    Hi,
    I am developing a windows phone 8.1 silverlight application . For my application I integrated the facebook login. For this facebook integration I used the login with facebook app method.
    My doubt is after getting the app id from the dev center , I updated the appid at developers.facebook.com , wmmanifest.xml (In extensions protocol (msft-appid without dashes)) . Or do I need to change the product id in the place holder also , I tried to
    change the productid also but I am getting error like some signature is wrong try with different signature. I am confused how to do it .
    Any help,
    Thanks...
    Suresh.M

    Hi Suresh,
    According to your description, I assume you want to complete facebook configuration in windows phone silverlight app. Please refer to the following link to see how.
    http://facebooksdk.net/docs/phone/config/.
    You can find code sample from
    https://github.com/facebook-csharp-sdk/facebook-winclient-sdk/tree/master/Samples.
    Facebook API is third-party library and it is our of our support range. You can post questions on here.
    https://github.com/facebook-csharp-sdk/facebook-winclient-sdk/issues.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • Inking for Windows Phone 8.1 (Not Silverlight)

    Is there any way to use Inking for Windows phone 8.1 application. I am able to use it in Silverlight application for freehand drawing.
    But is there anything available to use for this purpose in WinRT?

    Hi Morichi,
    As far as I known in Windows Phone 8.1 Runtime there is no such a Inking api or control as in Windows Phone 8.1 Silverlight app. If you want to implement the inking function in Windows phone 8.1 Runtime application, please try to refer to
    the @Rob Caplan - MSFT's reply in this thread:
    http://stackoverflow.com/questions/28862500/inking-for-windows-phone-8-1-not-silverlight .
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I need to upgrade the silverlight version that is deployed with the SCCM 2012 client installation

    We have SCCM 2012 SP1 installed and I need to upgrade the version of silverlight that get installed on the client deployement.
    The version that is automaticly deployed is 5.1.10411.0 and this one is not compatible with Firefox.  When you click on Application Catalog it start the browser but it fails to load because of the silverlight plug-in that is not up to date.  The
    version that is working fine is the 5.1.20913.0 and it's already installed on my SCCM site server.
    So that is why I'm looking to upgrade the silverlight that is installed with the SCCM client.
    I know that a simple workarround would be to create a package that would be deployed after the client gets installed, but why not changing the original package at the source instead of installing twice the same software the get the right version!
    Is there someone that could point me where I could upgrade this Silverlight prerequirement software version ?

    Note that I have not tested either of these and they will not be supported by Microsoft. 
    1. Copy your new version of Silverlight.exe to C:\Program Files\Microsoft Configuration Manager\Client\i386
    (you'll have to re-distribute the client package after this).
    OR
    2. You could edit the ccmsetup.xml file with an alternative location for silverlight.exe
    </Item>
     <Item FileName="i386/Silverlight.exe" FileHash="417B442E128D821119008ACEEEE6CDC2A41224377A829B6EC52BABA2724F0151">
      <Applicability Platform="ALL" OS="ALL">
       <Skip>Embedded</Skip>
      </Applicability>
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Plans to abandon Silverlight?

    Are there plans to replace the Silverlight-based Web interface of RT-targets? 
    Just ran into issues with it and Google Chrome, and the consensus seems to be that Silverlight as a technology is dead...but surprisingly I could not find much discussion about that topic here(?).
    MTO
    Solved!
    Go to Solution.

    Here's another thread discussing this issue.
    http://forums.ni.com/t5/LabVIEW/How-to-accees-the-LabVIEW-Web-Server-using-Chrome/m-p/3122242#M89651...
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • I am trying to download Silverlight to use Netflix, however I just get a silverlight_developer.pkg that opens in Terminal and nothing happens.

    I have Mac OS X Lion 10.7.2 and I'm having trouble downloading Silverlight to watch Netflix.  I've tried several different ways from researching online.  It just downloads a silverlight_developer.pkg and when I open it it opens in Terminal and says Silverlight_Developer.pkg-bash-80x24.  I'm not a computer genius so I don't knwo what any of this means, but I knwo its not right.   Please help!!

    This answers the question for Lion users
    https://discussions.apple.com/thread/3891253?start=0&tstart=0

  • My instant watch for netflixs is not working on my macbook pro. I just shows a black screen. I know that the problem is not Silverlight, so what other type of software or upgrades am I missing?

    Go figure both Apple support and Netflixs support "have never seen a problem quite like mine" the same day my free trial has ended. And no the, problem is not with my Netflixs account because they charged my debit card just fine. I'm trying to play instant movies on my netflixs account and every time I click on a movie or show it just shows up a black screen with no play controls. According to Netflixs I'm either missing a peice of software or I need to uninstall and reinstall a program or plug-in or something. At first they thought it was Microsoft Silverlight, but I've tried uninstalling and reinstalling that several times and nothing has changed, plus since I had no play controls as well the problem is definetly not Silverlight. So I was wondering what other types of software or plug-ins are needed to play Netflixs movies or if anyones else has had the same issue and knew how to fix it. And I know that it is a problem with my Macbook Pro, because my netflixs accout still works on my sister's computers. I've tried restarting my computer, restarting Firefox, signing out and back in on Netflixs, praying to God, clearing my cookies and chache, saying nice things to my laptop, yelling at my laptop, and pretty much everything under the sun. Nothing I do is fixing it. Please someone help me figure this out.

    MacBook Pro  / Mozilla Firefox / Netflix / Silverlight Update solved - DON'T DWNLOAD FROM NETFLIX
    I solved this problem tonight. I have a MacBook Pro with 10.5.8. I know, it's old. But I love my Netflix and I recently noticed that Firefox plays Netflix much better.  Then I suddenly got this message that I needed to download the latest Silverlight - it only takes 30 seconds! - WRONG.   However, after much searching, I finally did the steps in order and it worked.  
    This was after repeatedly downloading Silverlight from the Netflix site without success.  So here's what I did:
    1. Went to http://www.microsoft.com/getsilverlight/Get-Started/Install/Default.aspx
    2. Followed the directions. I felt like such an idiot for not doing it right before.
    3. Go to your hard drive and search for "Silverlight" to locate ANY existing Silverlight files: .dmg, etc.
        [also check your Libary/ Internet Plug-ins, but the above search is faster]
    4. Drag it all to the trash and empty it.
    5. Go back to the Get  Silverlight page and click on the Install on that page, not the Netflix site.
    6. Note the steps for Safari or Mozilla Firefox - I wanted Firefox, so I follwed those instructions.
    7. Once it's installed, close all the browsers and Restart that bad boy. Right away.
    8. Open a browser, go to Netflix and proceed to joyfully rot your brain with Netflix content. Yay!

  • Silverlight crashes web since update to Safari 3.2.1

    Okay, my 3mo. Netflix account hold just ended on Wednesday, so I just started utilizing the instant play. I've been using Firefox 2 since I discovered Safari's memory leak. Everything was going well until Software Update told me of the new version of Safari on Thursday. I hoped this might resolve the mem leak so I installed it. Since then, Every time I try to play a movie at Netflix, my browser crashes… regardless of whether I'm using Safari or Firefox. It tests my connection and then "Buffering… 0%" appears for a few seconds before my window disappears.
    I just noticed that the resulting dialog (for Safari, at least) sometimes suggests that "The problem may have been caused by the agcore plug-in." Which, it seems, is a component of Silverlight. Anyway, here is a crash log, Thanks:
    Process: Safari [482]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.2.1 (5525.27.1)
    Build Info: WebBrowser-55252701~1
    Code Type: X86 (Native)
    Parent Process: launchd [72]
    Date/Time: 2008-12-05 17:13:27.654 -0600
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXCBADINSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread: 25
    Thread 0:
    0 libSystem.B.dylib 0x96df04a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x96df7c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x94f360ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x94f36cf8 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x91c6e480 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x91c6e299 ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x91c6e10d BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x90d003ed _DPSNextEvent + 657
    8 com.apple.AppKit 0x90cffca0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.Safari 0x0000808e 0x1000 + 28814
    10 com.apple.AppKit 0x90cf8cdb -[NSApplication run] + 795
    11 com.apple.AppKit 0x90cc5f14 NSApplicationMain + 574
    12 com.apple.Safari 0x000b9b16 0x1000 + 756502
    Thread 1:
    0 libSystem.B.dylib 0x96df768e _semwaitsignal + 10
    1 libSystem.B.dylib 0x96e2236d pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x930848ff WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x9303d065 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    5 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x96df04a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x96df7c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x94f360ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x94f36cf8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x907aeeca CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    6 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x96df04ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96e22866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96e68371 pthreadcondwait + 48
    3 libcooliris.dylib 0x11ca1d4c CoolirisIsPrivilegedURL + 394986
    4 libcooliris.dylib 0x11ca03e1 CoolirisIsPrivilegedURL + 388479
    5 libcooliris.dylib 0x11d368ee CoolirisIsPrivilegedURL + 1004172
    6 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    7 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x96df768e _semwaitsignal + 10
    1 libSystem.B.dylib 0x96e2236d pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x92b8fb32 glvmDoWork + 162
    3 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    4 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x96df768e _semwaitsignal + 10
    1 libSystem.B.dylib 0x96e2236d pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x9206e45c pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x92080d8e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    5 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x96df04a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x96df7c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x94f360ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x94f36cf8 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00118d4d 0x1000 + 1146189
    5 com.apple.Safari 0x00117fd3 0x1000 + 1142739
    6 com.apple.Safari 0x00118081 0x1000 + 1142913
    7 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    8 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x96df04a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x96df7c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x94f360ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x94f36cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9185d100 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x917f9bad -[NSThread main] + 45
    6 com.apple.Foundation 0x917f9754 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    8 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x96e405e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    2 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x96df04a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x96df7c9c mach_msg + 72
    2 com.microsoft.net.coreclr 0x1a8027c2 GetCLRRuntimeHost + 2779250
    3 com.microsoft.net.coreclr 0x1a8016a8 GetCLRRuntimeHost + 2774872
    4 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    5 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x96e281de select$DARWIN_EXTSN$NOCANCEL + 10
    1 com.microsoft.net.coreclr 0x1a831314 PAL_InitializeCoreCLR + 84452
    2 com.microsoft.net.coreclr 0x1a8313a4 PAL_InitializeCoreCLR + 84596
    3 com.microsoft.net.coreclr 0x1a835a97 PAL_InitializeCoreCLR + 102759
    4 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    5 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    6 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x96df04ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96e22866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96e68371 pthreadcondwait + 48
    3 com.microsoft.net.coreclr 0x1a831b6d PAL_InitializeCoreCLR + 86589
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a831025 PAL_InitializeCoreCLR + 83701
    7 com.microsoft.net.coreclr 0x1a6a48c7 GetCLRRuntimeHost + 1345911
    8 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    9 com.microsoft.net.coreclr 0x1a6a46c3 GetCLRRuntimeHost + 1345395
    10 com.microsoft.net.coreclr 0x1a5a3b84 GetCLRRuntimeHost + 293940
    11 com.microsoft.net.coreclr 0x1a5a571f GetCLRRuntimeHost + 301007
    12 com.microsoft.net.coreclr 0x1a6b47d5 GetCLRRuntimeHost + 1411205
    13 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    14 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    15 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    16 com.microsoft.net.coreclr 0x1a6adb0d GetCLRRuntimeHost + 1383357
    17 com.microsoft.net.coreclr 0x1a6adb44 GetCLRRuntimeHost + 1383412
    18 com.microsoft.net.coreclr 0x1a5a5a5e GetCLRRuntimeHost + 301838
    19 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    20 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    21 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    22 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x96df04ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96e22866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96e68371 pthreadcondwait + 48
    3 com.microsoft.net.coreclr 0x1a831b6d PAL_InitializeCoreCLR + 86589
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a831025 PAL_InitializeCoreCLR + 83701
    7 com.microsoft.net.coreclr 0x1a6a48c7 GetCLRRuntimeHost + 1345911
    8 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    9 com.microsoft.net.coreclr 0x1a6a46c3 GetCLRRuntimeHost + 1345395
    10 com.microsoft.net.coreclr 0x1a4af34f CoreDllMain + 909871
    11 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    12 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    13 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    14 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x96df768e _semwaitsignal + 10
    1 libSystem.B.dylib 0x96e2236d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x9087324f TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x9085218e TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x908dca2b MPWaitForEvent + 197
    5 ...microsoft.SilverlightPlugin 0x1a053dc2 XcpFlatAllocate + 427394
    6 ...microsoft.SilverlightPlugin 0x19f3a240 BitmapImage_SetSource + 87008
    7 ...ple.CoreServices.CarbonCore 0x90871463 PrivateMPEntryPoint + 56
    8 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    9 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x96df768e _semwaitsignal + 10
    1 libSystem.B.dylib 0x96e2236d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x9087324f TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x9085218e TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x908dca2b MPWaitForEvent + 197
    5 ...microsoft.SilverlightPlugin 0x1a053dc2 XcpFlatAllocate + 427394
    6 ...microsoft.SilverlightPlugin 0x19f3a240 BitmapImage_SetSource + 87008
    7 ...ple.CoreServices.CarbonCore 0x90871463 PrivateMPEntryPoint + 56
    8 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    9 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x96df0506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96e2284f pthread_condwait + 1244
    2 libSystem.B.dylib 0x96e6d89b pthreadcondtimedwait + 47
    3 com.microsoft.net.coreclr 0x1a831b46 PAL_InitializeCoreCLR + 86550
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a8310e3 PAL_InitializeCoreCLR + 83891
    7 com.microsoft.net.coreclr 0x1a6a5819 GetCLRRuntimeHost + 1349833
    8 com.microsoft.net.coreclr 0x1a6b0828 GetCLRRuntimeHost + 1394904
    9 com.microsoft.net.coreclr 0x1a6b0d48 GetCLRRuntimeHost + 1396216
    10 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    11 com.microsoft.net.coreclr 0x1a6b104a GetCLRRuntimeHost + 1396986
    12 com.microsoft.net.coreclr 0x1a554ce3 CoreDllMain + 1588163
    13 com.microsoft.net.coreclr 0x1a46f276 CoreDllMain + 647510
    14 ??? 0x1df7821e 0 + 502759966
    15 ??? 0x1df78169 0 + 502759785
    16 ??? 0x1df780e5 0 + 502759653
    17 ??? 0x1df77ecf 0 + 502759119
    18 ??? 0x1cc45ac3 0 + 482630339
    19 ??? 0x1dd3c6bf 0 + 500418239
    20 ??? 0x1dd3c444 0 + 500417604
    21 ??? 0x1dd3c30d 0 + 500417293
    22 com.microsoft.net.coreclr 0x1a46f206 CoreDllMain + 647398
    23 com.microsoft.net.coreclr 0x1a48074a CoreDllMain + 718378
    24 com.microsoft.net.coreclr 0x1a5f8a81 GetCLRRuntimeHost + 641841
    25 com.microsoft.net.coreclr 0x1a5f8bb6 GetCLRRuntimeHost + 642150
    26 com.microsoft.net.coreclr 0x1a543fef CoreDllMain + 1519311
    27 com.microsoft.net.coreclr 0x1a6b47d5 GetCLRRuntimeHost + 1411205
    28 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    29 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    30 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    31 com.microsoft.net.coreclr 0x1a6ada13 GetCLRRuntimeHost + 1383107
    32 com.microsoft.net.coreclr 0x1a6b3f5c GetCLRRuntimeHost + 1409036
    33 com.microsoft.net.coreclr 0x1a6b47a9 GetCLRRuntimeHost + 1411161
    34 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    35 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    36 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    37 com.microsoft.net.coreclr 0x1a6ada5d GetCLRRuntimeHost + 1383181
    38 com.microsoft.net.coreclr 0x1a54452f CoreDllMain + 1520655
    39 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    40 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    41 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    42 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x96ea90b2 poll + 10
    1 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    2 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    3 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x96df04ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96e22866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96e68371 pthreadcondwait + 48
    3 com.microsoft.net.coreclr 0x1a831b6d PAL_InitializeCoreCLR + 86589
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a8310e3 PAL_InitializeCoreCLR + 83891
    7 com.microsoft.net.coreclr 0x1a6a5819 GetCLRRuntimeHost + 1349833
    8 com.microsoft.net.coreclr 0x1a6b0828 GetCLRRuntimeHost + 1394904
    9 com.microsoft.net.coreclr 0x1a6b0d48 GetCLRRuntimeHost + 1396216
    10 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    11 com.microsoft.net.coreclr 0x1a6b104a GetCLRRuntimeHost + 1396986
    12 com.microsoft.net.coreclr 0x1a554ce3 CoreDllMain + 1588163
    13 com.microsoft.net.coreclr 0x1a46f276 CoreDllMain + 647510
    14 ??? 0x1df7821e 0 + 502759966
    15 ??? 0x1df78169 0 + 502759785
    16 ??? 0x1df780e5 0 + 502759653
    17 ??? 0x1db24ad2 0 + 498223826
    18 ??? 0x1e39c9d4 0 + 507103700
    19 ??? 0x1e39c16c 0 + 507101548
    20 ??? 0x1e3b3135 0 + 507195701
    21 ??? 0x1e3ba64c 0 + 507225676
    22 ??? 0x1e397ddf 0 + 507084255
    23 ??? 0x1e397c9a 0 + 507083930
    24 ??? 0x1e3974b0 0 + 507081904
    25 ??? 0x1e2680d9 0 + 505839833
    26 ??? 0x1e265de5 0 + 505830885
    27 ??? 0x1dd3c444 0 + 500417604
    28 ??? 0x1e265d78 0 + 505830776
    29 ??? 0x1e265b96 0 + 505830294
    30 com.microsoft.net.coreclr 0x1a46f206 CoreDllMain + 647398
    31 com.microsoft.net.coreclr 0x1a48074a CoreDllMain + 718378
    32 com.microsoft.net.coreclr 0x1a564333 GetCLRRuntimeHost + 33763
    33 com.microsoft.net.coreclr 0x1a5643a1 GetCLRRuntimeHost + 33873
    34 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    35 com.microsoft.net.coreclr 0x1a564485 GetCLRRuntimeHost + 34101
    36 com.microsoft.net.coreclr 0x1a56456c GetCLRRuntimeHost + 34332
    37 com.microsoft.net.coreclr 0x1a54a104 CoreDllMain + 1544164
    38 com.microsoft.net.coreclr 0x1a6b47d5 GetCLRRuntimeHost + 1411205
    39 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    40 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    41 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    42 com.microsoft.net.coreclr 0x1a6ada13 GetCLRRuntimeHost + 1383107
    43 com.microsoft.net.coreclr 0x1a6b3f5c GetCLRRuntimeHost + 1409036
    44 com.microsoft.net.coreclr 0x1a6b47a9 GetCLRRuntimeHost + 1411161
    45 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    46 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    47 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    48 com.microsoft.net.coreclr 0x1a6ada5d GetCLRRuntimeHost + 1383181
    49 com.microsoft.net.coreclr 0x1a5a3512 GetCLRRuntimeHost + 292290
    50 com.microsoft.net.coreclr 0x1a6e0e37 GetCLRRuntimeHost + 1593063
    51 com.microsoft.net.coreclr 0x1a6e5a0c GetCLRRuntimeHost + 1612476
    52 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    53 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    54 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    55 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x96df0506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96e2284f pthread_condwait + 1244
    2 libSystem.B.dylib 0x96e6d89b pthreadcondtimedwait + 47
    3 com.microsoft.net.coreclr 0x1a831b46 PAL_InitializeCoreCLR + 86550
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a83074a PAL_InitializeCoreCLR + 81434
    6 com.microsoft.net.coreclr 0x1a83118e PAL_InitializeCoreCLR + 84062
    7 com.microsoft.net.coreclr 0x1a5c3173 GetCLRRuntimeHost + 422435
    8 com.microsoft.net.coreclr 0x1a5c3300 GetCLRRuntimeHost + 422832
    9 com.microsoft.net.coreclr 0x1a5c337b GetCLRRuntimeHost + 422955
    10 com.microsoft.net.coreclr 0x1a6e6784 GetCLRRuntimeHost + 1615924
    11 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    12 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    13 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x96df04ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96e22866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96e68371 pthreadcondwait + 48
    3 com.microsoft.net.coreclr 0x1a831b6d PAL_InitializeCoreCLR + 86589
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a8310e3 PAL_InitializeCoreCLR + 83891
    7 com.microsoft.net.coreclr 0x1a6a5819 GetCLRRuntimeHost + 1349833
    8 com.microsoft.net.coreclr 0x1a6b0828 GetCLRRuntimeHost + 1394904
    9 com.microsoft.net.coreclr 0x1a6b0d48 GetCLRRuntimeHost + 1396216
    10 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    11 com.microsoft.net.coreclr 0x1a6b104a GetCLRRuntimeHost + 1396986
    12 com.microsoft.net.coreclr 0x1a554ce3 CoreDllMain + 1588163
    13 com.microsoft.net.coreclr 0x1a46f276 CoreDllMain + 647510
    14 ??? 0x1df7821e 0 + 502759966
    15 ??? 0x1df78169 0 + 502759785
    16 ??? 0x1df780e5 0 + 502759653
    17 ??? 0x1db24ad2 0 + 498223826
    18 ??? 0x1e3b9ba8 0 + 507222952
    19 ??? 0x1e3940fa 0 + 507068666
    20 ??? 0x1dd3c6bf 0 + 500418239
    21 ??? 0x1dd3c444 0 + 500417604
    22 ??? 0x1dd3c30d 0 + 500417293
    23 com.microsoft.net.coreclr 0x1a46f206 CoreDllMain + 647398
    24 com.microsoft.net.coreclr 0x1a48074a CoreDllMain + 718378
    25 com.microsoft.net.coreclr 0x1a5f8a81 GetCLRRuntimeHost + 641841
    26 com.microsoft.net.coreclr 0x1a5f8bb6 GetCLRRuntimeHost + 642150
    27 com.microsoft.net.coreclr 0x1a543fef CoreDllMain + 1519311
    28 com.microsoft.net.coreclr 0x1a6b47d5 GetCLRRuntimeHost + 1411205
    29 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    30 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    31 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    32 com.microsoft.net.coreclr 0x1a6ada13 GetCLRRuntimeHost + 1383107
    33 com.microsoft.net.coreclr 0x1a6b3f5c GetCLRRuntimeHost + 1409036
    34 com.microsoft.net.coreclr 0x1a6b47a9 GetCLRRuntimeHost + 1411161
    35 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    36 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    37 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    38 com.microsoft.net.coreclr 0x1a6ada5d GetCLRRuntimeHost + 1383181
    39 com.microsoft.net.coreclr 0x1a54452f CoreDllMain + 1520655
    40 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    41 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    42 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    43 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x96df0506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96e2284f pthread_condwait + 1244
    2 libSystem.B.dylib 0x96e6d89b pthreadcondtimedwait + 47
    3 com.microsoft.net.coreclr 0x1a831b46 PAL_InitializeCoreCLR + 86550
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a831025 PAL_InitializeCoreCLR + 83701
    7 com.microsoft.net.coreclr 0x1a6a48c7 GetCLRRuntimeHost + 1345911
    8 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    9 com.microsoft.net.coreclr 0x1a6a46c3 GetCLRRuntimeHost + 1345395
    10 com.microsoft.net.coreclr 0x1a6e2a6f GetCLRRuntimeHost + 1600287
    11 com.microsoft.net.coreclr 0x1a6e58c1 GetCLRRuntimeHost + 1612145
    12 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    13 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    14 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    15 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 21:
    0 libSystem.B.dylib 0x96df0506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96e2284f pthread_condwait + 1244
    2 libSystem.B.dylib 0x96e6d89b pthreadcondtimedwait + 47
    3 com.microsoft.net.coreclr 0x1a831b46 PAL_InitializeCoreCLR + 86550
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a831025 PAL_InitializeCoreCLR + 83701
    7 com.microsoft.net.coreclr 0x1a6a48c7 GetCLRRuntimeHost + 1345911
    8 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    9 com.microsoft.net.coreclr 0x1a6a46c3 GetCLRRuntimeHost + 1345395
    10 com.microsoft.net.coreclr 0x1a6e2a6f GetCLRRuntimeHost + 1600287
    11 com.microsoft.net.coreclr 0x1a6e58c1 GetCLRRuntimeHost + 1612145
    12 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    13 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    14 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    15 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 22:
    0 libSystem.B.dylib 0x96df0506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x96e2284f pthread_condwait + 1244
    2 libSystem.B.dylib 0x96e6d89b pthreadcondtimedwait + 47
    3 com.microsoft.net.coreclr 0x1a831b46 PAL_InitializeCoreCLR + 86550
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a8310e3 PAL_InitializeCoreCLR + 83891
    7 com.microsoft.net.coreclr 0x1a6a5819 GetCLRRuntimeHost + 1349833
    8 com.microsoft.net.coreclr 0x1a6b0828 GetCLRRuntimeHost + 1394904
    9 com.microsoft.net.coreclr 0x1a6b0d48 GetCLRRuntimeHost + 1396216
    10 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    11 com.microsoft.net.coreclr 0x1a6b104a GetCLRRuntimeHost + 1396986
    12 com.microsoft.net.coreclr 0x1a554ce3 CoreDllMain + 1588163
    13 com.microsoft.net.coreclr 0x1a46f276 CoreDllMain + 647510
    14 ??? 0x1df7821e 0 + 502759966
    15 ??? 0x1df78169 0 + 502759785
    16 ??? 0x1df780e5 0 + 502759653
    17 ??? 0x1df77ecf 0 + 502759119
    18 ??? 0x1db0e240 0 + 498131520
    19 ??? 0x1e396e61 0 + 507080289
    20 ??? 0x1e395d58 0 + 507075928
    21 ??? 0x1e395c22 0 + 507075618
    22 ??? 0x18bcce58 0 + 415026776
    23 ??? 0x1e3b6f35 0 + 507211573
    24 ??? 0x1dd3c6bf 0 + 500418239
    25 ??? 0x1dd3c444 0 + 500417604
    26 ??? 0x1dd3c30d 0 + 500417293
    27 com.microsoft.net.coreclr 0x1a46f206 CoreDllMain + 647398
    28 com.microsoft.net.coreclr 0x1a48074a CoreDllMain + 718378
    29 com.microsoft.net.coreclr 0x1a5f8a81 GetCLRRuntimeHost + 641841
    30 com.microsoft.net.coreclr 0x1a5f8bb6 GetCLRRuntimeHost + 642150
    31 com.microsoft.net.coreclr 0x1a543fef CoreDllMain + 1519311
    32 com.microsoft.net.coreclr 0x1a6b47d5 GetCLRRuntimeHost + 1411205
    33 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    34 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    35 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    36 com.microsoft.net.coreclr 0x1a6ada13 GetCLRRuntimeHost + 1383107
    37 com.microsoft.net.coreclr 0x1a6b3f5c GetCLRRuntimeHost + 1409036
    38 com.microsoft.net.coreclr 0x1a6b47a9 GetCLRRuntimeHost + 1411161
    39 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    40 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    41 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    42 com.microsoft.net.coreclr 0x1a6ada5d GetCLRRuntimeHost + 1383181
    43 com.microsoft.net.coreclr 0x1a54452f CoreDllMain + 1520655
    44 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    45 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    46 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    47 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 23:
    0 libSystem.B.dylib 0x96df04ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96e22866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96e68371 pthreadcondwait + 48
    3 com.microsoft.net.coreclr 0x1a831b6d PAL_InitializeCoreCLR + 86589
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a8310e3 PAL_InitializeCoreCLR + 83891
    7 com.microsoft.net.coreclr 0x1a6a5819 GetCLRRuntimeHost + 1349833
    8 com.microsoft.net.coreclr 0x1a6b0828 GetCLRRuntimeHost + 1394904
    9 com.microsoft.net.coreclr 0x1a6b0d48 GetCLRRuntimeHost + 1396216
    10 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    11 com.microsoft.net.coreclr 0x1a6b104a GetCLRRuntimeHost + 1396986
    12 com.microsoft.net.coreclr 0x1a554ce3 CoreDllMain + 1588163
    13 com.microsoft.net.coreclr 0x1a46f276 CoreDllMain + 647510
    14 ??? 0x1df7821e 0 + 502759966
    15 ??? 0x1df78169 0 + 502759785
    16 ??? 0x1df780e5 0 + 502759653
    17 ??? 0x1df77ecf 0 + 502759119
    18 ??? 0x1db0e240 0 + 498131520
    19 ??? 0x1e396daa 0 + 507080106
    20 ??? 0x1e395d58 0 + 507075928
    21 ??? 0x1e395c22 0 + 507075618
    22 ??? 0x1e3b9e64 0 + 507223652
    23 ??? 0x1dd3c6bf 0 + 500418239
    24 ??? 0x1dd3c444 0 + 500417604
    25 ??? 0x1dd3c30d 0 + 500417293
    26 com.microsoft.net.coreclr 0x1a46f206 CoreDllMain + 647398
    27 com.microsoft.net.coreclr 0x1a48074a CoreDllMain + 718378
    28 com.microsoft.net.coreclr 0x1a5f8a81 GetCLRRuntimeHost + 641841
    29 com.microsoft.net.coreclr 0x1a5f8bb6 GetCLRRuntimeHost + 642150
    30 com.microsoft.net.coreclr 0x1a543fef CoreDllMain + 1519311
    31 com.microsoft.net.coreclr 0x1a6b47d5 GetCLRRuntimeHost + 1411205
    32 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    33 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    34 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    35 com.microsoft.net.coreclr 0x1a6ada13 GetCLRRuntimeHost + 1383107
    36 com.microsoft.net.coreclr 0x1a6b3f5c GetCLRRuntimeHost + 1409036
    37 com.microsoft.net.coreclr 0x1a6b47a9 GetCLRRuntimeHost + 1411161
    38 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    39 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    40 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    41 com.microsoft.net.coreclr 0x1a6ada5d GetCLRRuntimeHost + 1383181
    42 com.microsoft.net.coreclr 0x1a54452f CoreDllMain + 1520655
    43 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    44 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    45 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    46 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 24:
    0 libSystem.B.dylib 0x96df04ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96e22866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96e68371 pthreadcondwait + 48
    3 com.microsoft.net.coreclr 0x1a831b6d PAL_InitializeCoreCLR + 86589
    4 com.microsoft.net.coreclr 0x1a836703 PAL_InitializeCoreCLR + 105939
    5 com.microsoft.net.coreclr 0x1a830ad7 PAL_InitializeCoreCLR + 82343
    6 com.microsoft.net.coreclr 0x1a8310e3 PAL_InitializeCoreCLR + 83891
    7 com.microsoft.net.coreclr 0x1a6a5819 GetCLRRuntimeHost + 1349833
    8 com.microsoft.net.coreclr 0x1a6b0828 GetCLRRuntimeHost + 1394904
    9 com.microsoft.net.coreclr 0x1a6b0d48 GetCLRRuntimeHost + 1396216
    10 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    11 com.microsoft.net.coreclr 0x1a6b104a GetCLRRuntimeHost + 1396986
    12 com.microsoft.net.coreclr 0x1a554ce3 CoreDllMain + 1588163
    13 com.microsoft.net.coreclr 0x1a46f276 CoreDllMain + 647510
    14 ??? 0x1df7821e 0 + 502759966
    15 ??? 0x1df78169 0 + 502759785
    16 ??? 0x1df780e5 0 + 502759653
    17 ??? 0x1db24ad2 0 + 498223826
    18 ??? 0x1e39c58e 0 + 507102606
    19 ??? 0x1e265de5 0 + 505830885
    20 ??? 0x1dd3c444 0 + 500417604
    21 ??? 0x1e265d78 0 + 505830776
    22 ??? 0x1e265b96 0 + 505830294
    23 com.microsoft.net.coreclr 0x1a46f206 CoreDllMain + 647398
    24 com.microsoft.net.coreclr 0x1a48074a CoreDllMain + 718378
    25 com.microsoft.net.coreclr 0x1a564333 GetCLRRuntimeHost + 33763
    26 com.microsoft.net.coreclr 0x1a5643a1 GetCLRRuntimeHost + 33873
    27 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    28 com.microsoft.net.coreclr 0x1a564485 GetCLRRuntimeHost + 34101
    29 com.microsoft.net.coreclr 0x1a56456c GetCLRRuntimeHost + 34332
    30 com.microsoft.net.coreclr 0x1a54a104 CoreDllMain + 1544164
    31 com.microsoft.net.coreclr 0x1a6b47d5 GetCLRRuntimeHost + 1411205
    32 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    33 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    34 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    35 com.microsoft.net.coreclr 0x1a6ada13 GetCLRRuntimeHost + 1383107
    36 com.microsoft.net.coreclr 0x1a6b3f5c GetCLRRuntimeHost + 1409036
    37 com.microsoft.net.coreclr 0x1a6b47a9 GetCLRRuntimeHost + 1411161
    38 com.microsoft.net.coreclr 0x1a6b4893 GetCLRRuntimeHost + 1411395
    39 com.microsoft.net.coreclr 0x1a82afff PAL_InitializeCoreCLR + 59087
    40 com.microsoft.net.coreclr 0x1a6ad979 GetCLRRuntimeHost + 1382953
    41 com.microsoft.net.coreclr 0x1a6ada5d GetCLRRuntimeHost + 1383181
    42 com.microsoft.net.coreclr 0x1a5a3512 GetCLRRuntimeHost + 292290
    43 com.microsoft.net.coreclr 0x1a6e0e37 GetCLRRuntimeHost + 1593063
    44 com.microsoft.net.coreclr 0x1a6e5a0c GetCLRRuntimeHost + 1612476
    45 com.microsoft.net.coreclr 0x1a6a56ee GetCLRRuntimeHost + 1349534
    46 com.microsoft.net.coreclr 0x1a8293e7 PAL_InitializeCoreCLR + 51895
    47 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    48 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 25 Crashed:
    0 ??? 0x1e603d43 0 + 509623619
    1 ...microsoft.SilverlightPlugin 0x1a1a7b26 MinCryptVerifySignedHash + 8838
    2 ...microsoft.SilverlightPlugin 0x1a1a7f95 MinCryptVerifySignedHash + 9973
    3 ...microsoft.SilverlightPlugin 0x19ec0158 CreateMediaSourceFromStream + 56488
    4 ...microsoft.SilverlightPlugin 0x19d4c5bf XcpPlayerBeginCreateNetMediaSource + 5087
    5 ...microsoft.SilverlightPlugin 0x19d4dd94 XcpPlayerBeginCreateNetMediaSource + 11188
    6 ...microsoft.SilverlightPlugin 0x19d4fc7b XcpPlayerBeginCreateNetMediaSource + 19099
    7 ...microsoft.SilverlightPlugin 0x19d55030 XcpPlayerBeginCreateNetMediaSource + 40528
    8 ...microsoft.SilverlightPlugin 0x19d57e8f MFAllocateWorkQueue + 2879
    9 ...ple.CoreServices.CarbonCore 0x90871463 PrivateMPEntryPoint + 56
    10 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    11 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 26:
    0 libSystem.B.dylib 0x96df05c6 machwaituntil + 10
    1 libSystem.B.dylib 0x96e681e5 nanosleep + 314
    2 libSystem.B.dylib 0x96e680a5 usleep + 61
    3 ...microsoft.SilverlightPlugin 0x19f70f65 BitmapImage_SetSource + 311557
    4 ...microsoft.SilverlightPlugin 0x19eb97eb CreateMediaSourceFromStream + 29499
    5 ...ple.CoreServices.CarbonCore 0x90871463 PrivateMPEntryPoint + 56
    6 libSystem.B.dylib 0x96e216f5 pthreadstart + 321
    7 libSystem.B.dylib 0x96e215b2 thread_start + 34
    Thread 25 crashed with X86 Thread State (32-bit):
    eax: 0x19cd4242 ebx: 0x1a1a63c7 ecx: 0x00d135ff edx: 0x1a35a44c
    edi: 0x1a35a3e8 esi: 0x00000000 ebp: 0xb0d54c08 esp: 0xb0d51a84
    ss: 0x0000001f efl: 0x00010206 eip: 0x1e603d43 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x1e602000
    Binary Images:
    0x1000 - 0x1d7fe2 com.apple.Safari 3.2.1 (5525.27.1) <66278f41bc085c64e0f06ff487af4adc> /Applications/Safari.app/Contents/MacOS/Safari
    0x223000 - 0x232ff8 SyndicationUI ??? (???) <edde0133829971dbd8a0f3473cdb85fc> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x291000 - 0x292fff +com.cooliris.safariplugin ??? (1.7) <2f6e13eaf1cfe79d955b996953e4c54a> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/Cooliris
    0x29b000 - 0x29dff7 +libpiclenshelper.dylib ??? (???) <27ffebf6d972156ba81c3ac5d08d8183> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/libpiclenshelper .dylib
    0x2b3000 - 0x2edfeb +libfreetype.dylib ??? (???) <b73626483441beb09537c527792cca29> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/libfreetype.dyli b
    0x500000 - 0x5b3fff +libav.dylib ??? (???) <e581d9d4cd5317a1d83cc56048570520> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/libav.dylib
    0x63e000 - 0x65aff7 GLRendererFloat ??? (???) <c87cf601b3d09de41ec0e742e7afda79> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x119c3000 - 0x11babfff com.apple.RawCamera.bundle 2.0.11 (410) <7704cc57f7daceb81672bfdc4434da40> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x11c37000 - 0x1205dfff +libcooliris.dylib ??? (???) <51910647633f0d1ab2076b83b6a24f52> /Library/InputManagers/Cooliris/Cooliris.bundle/Contents/MacOS/libcooliris.dyli b
    0x120fe000 - 0x12281fe3 GLEngine ??? (???) <53be12846de26d4d81d58a074b55c877> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x122af000 - 0x12616fe8 com.apple.GeForce8xxxGLDriver 1.5.30 (5.3.0) <c0351f8eba6ca8205626e8081a2a9020> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x18a63000 - 0x18a68ff3 libCGXCoreImage.A.dylib ??? (???) <31761f6461b8dd390dc4df480b1fb564> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x18d81000 - 0x18d81ffe com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <b08d1285182ffcbaedd747d17fdaeefd> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x19240000 - 0x19246ffd com.apple.JavaVM 12.2.0 (12.2.0) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x19d00000 - 0x1a2c5fef +com.microsoft.SilverlightPlugin 2.0.31005.0 (2.0.31005.0) <562e46aeae4db50e573c14dfc004f632> /Library/Internet Plug-Ins/Silverlight.plugin/Contents/MacOS/agcore
    0x1a3cf000 - 0x1a900ffb +com.microsoft.net.coreclr 2.0 (2.0.31005.0) <c956c511f7a6047f7b66c4a8b3ff087b> /Library/Internet Plug-Ins/Silverlight.plugin/Contents/MacOS/CoreCLR.bundle/Contents/MacOS/corecl r
    0x1e500000 - 0x1e5e1ff7 +agdrm000.dylib ??? (???) <8699842a3e6b707eda05fe86e74d9ef8> /Users/aaron/Library/Application Support/Microsoft/Silverlight/DRM/agdrm000.dylib
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <14ac3b684fa5a31932fa89c4bba7a29b> /usr/lib/dyld
    0x90003000 - 0x90003ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90004000 - 0x90042fff libGLImage.dylib ??? (???) <f0fe2252f6b1ca341bc7837fe2dcf11a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90043000 - 0x90050fe7 com.apple.opengl 1.5.7 (1.5.7) <db835aeb1ffca9f5b5647dd0829a5b2c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90051000 - 0x90061ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90067000 - 0x9008bfff libxslt.1.dylib ??? (???) <ea5c8d349a3934ecc2b936f9cdfaba04> /usr/lib/libxslt.1.dylib
    0x9008d000 - 0x90114ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x90115000 - 0x901f5fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x901f6000 - 0x90200feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90482000 - 0x904a6feb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x904b1000 - 0x90563ffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x90564000 - 0x90564ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9059a000 - 0x9059efff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9059f000 - 0x9066dff3 com.apple.JavaScriptCore 5525.26 (5525.26.2) <69e219e81bc886a94c4d4b310d393ab9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90674000 - 0x90674ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90675000 - 0x90776fef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90777000 - 0x907a2fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x907a3000 - 0x90827fe3 com.apple.CFNetwork 339.5 (339.5) <c6565c13b0356e1d4bb99a68398d558b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90828000 - 0x90b02ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <5682aae1e2cf5ae750d5a4dea98c084c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90b03000 - 0x90b8dfe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90b8e000 - 0x90c08ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90c09000 - 0x90c18ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90c88000 - 0x90cb7fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90cb8000 - 0x90cbfffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x90cc0000 - 0x914bdfef com.apple.AppKit 6.5.3 (949.34) <4c7af9b12c894d4a528fda29377f143b> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x914be000 - 0x91585ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91586000 - 0x915c8fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91702000 - 0x9170bfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <73cf6b3c5ddf94d7ce9ae2c81c1b558c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x917af000 - 0x917eefef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x917ef000 - 0x91a6afe7 com.apple.Foundation 6.5.6 (677.21) <5cfa0aa8b9b43193955d601ba6c2591a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91a6b000 - 0x91a7fff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91a80000 - 0x91a88fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91a89000 - 0x91b30feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91b3d000 - 0x91b3dffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91b3e000 - 0x91b4aff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91b50000 - 0x91b50ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91c1b000 - 0x91c1dfff com.apple.CrashReporterSupport 10.5.5 (159) <9a0fe0419410218e5b1a25c08d4531cd> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x91c1e000 - 0x91c1effb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91c1f000 - 0x91c3effa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91c3f000 - 0x91f46fff com.apple.HIToolbox 1.5.4 (???) <5e2af960b53059c648af4adb99471032> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91f47000 - 0x91f47ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91f48000 - 0x91f7ffff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91f80000 - 0x9203afe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9203b000 - 0x92106fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92107000 - 0x92161ff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92162000 - 0x92168fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92169000 - 0x921b9ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x921ba000 - 0x92246ff7 com.apple.LaunchServices 290 (290) <61af37aac50984d220dd176f777e3b72> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92298000 - 0x92315fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92324000 - 0x92324ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92355000 - 0x9238fffe com.apple.securityfoundation 3.0 (32989) <36f7f260187c435b2670bcb24acd4219> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92396000 - 0x923a1fe7 libCSync.A.dylib ??? (???) <86d2f2e167ba6f74f45a186f5c7f8980> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x923a2000 - 0x923c0fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x923c1000 - 0x92427ffb com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92428000 - 0x92469fe7 libRIP.A.dylib ??? (???) <1f09316e876fe813271bdfb9eb5b229e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9246a000 - 0x9246dfff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92485000 - 0x924e2ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x924e3000 - 0x925c4ff7 libxml2.2.dylib ??? (???) <d69560099d9eb32ba7f8a17baa65a28d> /usr/lib/libxml2.2.dylib
    0x92605000 - 0x92a15fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92a16000 - 0x92b3afe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92b3b000 - 0x92b40fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92b41000 - 0x92b50fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x92b51000 - 0x92b67fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92b68000 - 0x93039f3e libGLProgrammability.dylib ??? (???) <fe1a33d4919c121aab831ad516da6a89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9303a000 - 0x9368bfff com.apple.WebCore 5525.26 (5525.26.6) <8676962ab93f003cf9b10748725c1bc2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9368c000 - 0x93693ff7 libCGATS.A.dylib ??? (???) <973c01cc14f3d673270e269ccfaec660> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x93694000 - 0x93744fff edu.mit.Kerberos 6.0.12 (6.0.12) <da7253e3fb7e47e46cb46d47ed320ffc> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9384c000 - 0x93879feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93897000 - 0x938b2ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x938b3000 - 0x938b5ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x938b6000 - 0x938d4ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <4b81063df189bc462f012a169474fcbc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x938d5000 - 0x93954ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93955000 - 0x93cf2fe7 com.apple.QuartzCore 1.5.5 (1.5.5) <82435993614a3fff1236be18f82188bf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93cf3000 - 0x93ec1fff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93ec2000 - 0x93ec4fff com.apple.securityhi 3.0 (30817) <31baaf7ea27b41480604ffc910fe827f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93ec5000 - 0x9400bff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x941ab000 - 0x94204ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94205000 - 0x94237fff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94238000 - 0x94246ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x94247000 - 0x943c6fff com.apple.AddressBook.framework 4.1.1 (696) <bb7f2d5f0b2d180288cd959cd9ba6c1a> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9443a000 - 0x94462ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94463000 - 0x9447bfff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9447c000 - 0x9450ffff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94510000 - 0x94511ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x94512000 - 0x94522fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x946b3000 - 0x946bfffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x946c0000 - 0x9470afe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94713000 - 0x94a35fe2 com.apple.QuickTime 7.5.5 (990.7) <87077cec43c7e9b02c8ee80e50b8b81f> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a68000 - 0x94af3fff com.apple.framework.IOKit 1.5.1 (???) <324526f69e1443f2f9fb722cc88a23ec> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94b25000 - 0x94b4dfff libcups.2.dylib ??? (???) <1031ca5b692b80a9568e57a342b60157> /usr/lib/libcups.2.dylib
    0x94b4e000 - 0x94b97fef com.apple.Metadata 10.5.2 (398.22) <a6b676925dd832780daf991e79adfebd> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94b98000 - 0x94cd0ff7 libicucore.A.dylib ??? (???) <3d8fdaf51c2664ab620f1688203caf26> /usr/lib/libicucore.A.dylib
    0x94cd1000 - 0x94d2dff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94d7d000 - 0x94df9feb com.apple.audio.CoreAudio 3.1.0 (3.1) <fd70d88739fd63baf0b05a18999ea080> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x94dfa000 - 0x94eb8fff com.apple.WebKit 5525.27 (5525.27.1) <a15e548666c9a463d61be1f114b2fa27> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94eb9000 - 0x94ebefff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94ebf000 - 0x94ec3fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94ec4000 - 0x94ff6fff com.apple.CoreFoundation 6.5.4 (476.15) <e2869ad6dc1dd289f21b305b0bea9158> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94ff7000 - 0x9502dfef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x9509c000 - 0x95738fff com.apple.CoreGraphics 1.351.33 (???) <481a77e81d9e53589a05e80cfa90bbb5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95739000 - 0x95739fff com.apple.Carbon 136 (136) <27d42531a2cbeb05a7f4d05a28281bd7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9573a000 - 0x95af8fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95cb5000 - 0x95d48ff3 com.apple.ApplicationServices.ATS 3.4 (???) <a96cd91dabc68545183c11de8f92c7e4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95d49000 - 0x95d5ffe7 com.apple.CoreVideo 1.5.1 (1.5.1) <001910004257f1386724398f584b30b5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95d60000 - 0x95d9afe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96def000 - 0x96f4fff3 libSystem.B.dylib ??? (???) <98fc91f31f185411ddc46d3225e9af55> /usr/lib/libSystem.B.dylib
    0x96f50000 - 0x96f57fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x96f65000 - 0x9704aff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <349492efc0f6371227a6330d8b2c4fa5> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    The problems are caused by third party input managers/enhancers that have not yet been updated by their developers to comply with the standards used by Safari 3.2.1.
    In your case these are Cooliris:
    You fill find them in one or either or these folders (and there are lots of Cooliris files):
    Home/Library/Input Managers
    Hard Disk/library/Input Managers
    Hard Disk/Library/Application Support
    although the exact location is indicated in your crash report - look under 'Binary Images'.
    Close Safari and delete them, then restart Safari and it should be working normally.
    The Silverlight plug-in has not previously been noted to cause problems with Safari 3.2.1 - it doesn't on mine - but it may nevertheless require updating.

Maybe you are looking for

  • Change font of a single word in JTextArea

    Hallo, I would like to change the font of a word in a string in a JTextArea. I only found jtextArea.setFont(). thank you.

  • Classical music playlists

    Hi, Desperately seeking software tools to aid in building classical music playlists that sort the symphony movements correctly.  There are no standards in the classical world to labeling the different movements--typically, four (or five) movements to

  • PS7.0 Has suddenly stopped working - APPCRASH

    Can someone please help - this is driving me nuts! I have had PS7.0 installed on my PC for years with no issues - then suddenly today it wouldn't open - Partly loads and then says "Adobe Photoshop has Stopped working" and shows the following error: A

  • Steps to connect my AE to my new Drobo

    I purchased a Drobo to back up my computers and wish to do so with my Airport Extreme so as back up my iMac as well as a Powerbook on a schedule. Can anyone point me to a easy to follow set of directions for doing so? Details on the computers etc if

  • Save SharePoint list item view form as a word document

    I have a view form in SharePoint 2013, and I am trying to create a button that will export the form into a MS word document. So really I am trying save a SharePoint form to a word file. Is that possible?