The VCD - vCenter Glue - Linking VMs and Events

Hi All
I have sucessfully talked to the vCenter running our Blades and hosting vCLoud, and vCloud itself
I can see VMs from both sides.
1. What i am looking for is the glue that allows you to link the vCD VM to the underlying one.
Why ? So i can get the OS name for the vm, the CI VM interface does not return this.
[Found Linking your vCloud Director VMs and vSphere VMs | VMware PowerCLI Blog - VMware Blogs however the "$vsphereVMView = Get-View –RelatedObject $VM.ExtensionData" returns a $null object]
There are also references to examples like ' Get-CIVM -Name ‘MyVM’ | Get-CIView | Get-View ' this works to the Get-CIView level but not the Get-View level, it is like functionality was broken or changed from v5.1 to v5.5. I am using v5.5
2. I assume with this link then events can be grabbed for a vm ?
(the reason being i found no Get-CIEvent and when passing the vCD VM info to this Get-Event -vm vcdtoken this does not work)
3. Also is there a camlett for vCD events ? (i did not see one)
4. I am guessing multple opens are needed to reference objects ? e.g.
   Connect-CIServer & COnnect-VIServer (even though the CIServer should have some internal object to the underlying vCenter ?)
[YES}
Many thanks
NB: For 1. I did which is fairly ugly but worked, i.e. relying on the naming convention, however there has to be a better way, it is documented as working for v5
Function ConvertCIVM-ToVM {
    <#
        .SYNOPSIS
            Converts a vCloud VM into a vCenter VM Object
        .DESCRIPTION
            Converts a vCloud VM into a vCenter VM Object
   This is the single object form
        .PARAMETER  CIVM
            One or more vCloud VMs
        .EXAMPLE
            PS C:\> Get-CIVM -Name 'xxxx' | ConvertCIVM-ToVM
    #>
    [CmdletBinding()]
    Param (
        [Parameter(Mandatory=$true)]
        [Object]$CIVM
    process {
        If ((-not $DefaultCIServers) -or (-not $DefaultVIServer)){
            Write-Host -ForegroundColor Red "You will need to be connected to both the CIServer and VIServer for this cmdlet to work"
            Return
  # Build name - do the easy way
  $items = $CIVM.Id.Split(':')
  $vm = $CIVM.Name + ' (' + $items[3] + ')';
  return Get-VM -Server $global:DefaultVIServer -Name $vm

I've been looking at doing a similar job because I want to get to the Tags that a virtual machines datastores have (we have a Replicated Tag so it'd help to identify replication VMs). I noted that the CIVM object type has a 'ToVirtualMachine' method but not had any success using it as yet. This might be a step in the right direction if that function could work (or even if it's supposed to) (Documentation is at VmRelatedObject)
PowerCLI C:\Windows\system32> $vivm = $VMs[0].ToVirtualMachine()
PowerCLI C:\Windows\system32> $vivm
An error occurred while enumerating through a collection: Unexpected exception has occured.
At line:1 char:1
+ $vivm
+ ~~~~~
    + CategoryInfo          : InvalidOperation: (VMware.VimAutom...ualMachine>d__0:<ToVirtualMachine>d__0) [], Runtime
   Exception
    + FullyQualifiedErrorId : BadEnumeration

Similar Messages

  • How to Bind a Combo Box so that it retrieves and display content corresponding to the Id in a link table and populates itself with the data in the main table?

    I am developing a desktop application in Wpf using MVVM and Entity Frameworks. I have the following tables:
    1. Party (PartyId, Name)
    2. Case (CaseId, CaseNo)
    3. Petitioner (CaseId, PartyId) ............. Link Table
    I am completely new to .Net and to begin with I download Microsoft's sample application and
    following the pattern I have been successful in creating several tabs. The problem started only when I wanted to implement many-to-many relationship. The sample application has not covered the scenario where there can be a any-to-many relationship. However
    with the help of MSDN forum I came to know about a link table and managed to solve entity framework issues pertaining to many-to-many relationship. Here is the screenshot of my application to show you what I have achieved so far.
    And now the problem I want the forum to address is how to bind a combo box so that it retrieves Party.Name for the corresponding PartyId in the Link Table and also I want to populate it with Party.Name so that
    users can choose one from the dropdown list to add or edit the petitioner.

    Hello Barry,
    Thanks a lot for responding to my query. As I am completely new to .Net and following the pattern of Microsoft's Employee Tracker sample it seems difficult to clearly understand the concept and implement it in a scenario which is different than what is in
    the sample available at the link you supplied.
    To get the idea of the thing here is my code behind of a view vBoxPetitioner:
    <UserControl x:Class="CCIS.View.Case.vBoxPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:v="clr-namespace:CCIS.View.Case"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    d:DesignWidth="300"
    d:DesignHeight="200">
    <UserControl.Resources>
    <DataTemplate DataType="{x:Type vm:vmPetitioner}">
    <v:vPetitioner Margin="0,2,0,0" />
    </DataTemplate>
    </UserControl.Resources>
    <Grid>
    <HeaderedContentControl>
    <HeaderedContentControl.Header>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
    <TextBlock Margin="2">
    <Hyperlink Command="{Binding Path=AddPetitionerCommand}">Add Petitioner</Hyperlink>
    | <Hyperlink Command="{Binding Path=DeletePetitionerCommand}">Delete</Hyperlink>
    </TextBlock>
    </StackPanel>
    </HeaderedContentControl.Header>
    <ListBox BorderThickness="0" SelectedItem="{Binding Path=CurrentPetitioner, Mode=TwoWay}" ItemsSource="{Binding Path=tblParties}" />
    </HeaderedContentControl>
    </Grid>
    </UserControl>
    This part is working fine as it loads another view that is vPetioner perfectly in the manner I want it to be.
    Here is the code of vmPetitioner, a ViewModel:
    Imports Microsoft.VisualBasic
    Imports System.Collections.ObjectModel
    Imports System
    Imports CCIS.Model.Party
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' ViewModel of an individual Email
    ''' </summary>
    Public Class vmPetitioner
    Inherits vmParty
    ''' <summary>
    ''' The Email object backing this ViewModel
    ''' </summary>
    Private petitioner As tblParty
    ''' <summary>
    ''' Initializes a new instance of the EmailViewModel class.
    ''' </summary>
    ''' <param name="detail">The underlying Email this ViewModel is to be based on</param>
    Public Sub New(ByVal detail As tblParty)
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Me.petitioner = detail
    End Sub
    ''' <summary>
    ''' Gets the underlying Email this ViewModel is based on
    ''' </summary>
    Public Overrides ReadOnly Property Model() As tblParty
    Get
    Return Me.petitioner
    End Get
    End Property
    ''' <summary>
    ''' Gets or sets the actual email address
    ''' </summary>
    Public Property fldPartyId() As String
    Get
    Return Me.petitioner.fldPartyId
    End Get
    Set(ByVal value As String)
    Me.petitioner.fldPartyId = value
    Me.OnPropertyChanged("fldPartyId")
    End Set
    End Property
    End Class
    End Namespace
    And below is the ViewMode vmParty which vmPetitioner Inherits:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Collections.Generic
    Imports CCIS.Model.Case
    Imports CCIS.Model.Party
    Imports CCIS.ViewModel.Helpers
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' Common functionality for ViewModels of an individual ContactDetail
    ''' </summary>
    Public MustInherit Class vmParty
    Inherits ViewModelBase
    ''' <summary>
    ''' Gets the underlying ContactDetail this ViewModel is based on
    ''' </summary>
    Public MustOverride ReadOnly Property Model() As tblParty
    '''' <summary>
    '''' Gets the underlying ContactDetail this ViewModel is based on
    '''' </summary>
    'Public MustOverride ReadOnly Property Model() As tblAdvocate
    ''' <summary>
    ''' Gets or sets the name of this department
    ''' </summary>
    Public Property fldName() As String
    Get
    Return Me.Model.fldName
    End Get
    Set(ByVal value As String)
    Me.Model.fldName = value
    Me.OnPropertyChanged("fldName")
    End Set
    End Property
    ''' <summary>
    ''' Constructs a view model to represent the supplied ContactDetail
    ''' </summary>
    ''' <param name="detail">The detail to build a ViewModel for</param>
    ''' <returns>The constructed ViewModel, null if one can't be built</returns>
    Public Shared Function BuildViewModel(ByVal detail As tblParty) As vmParty
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Dim e As tblParty = TryCast(detail, tblParty)
    If e IsNot Nothing Then
    Return New vmPetitioner(e)
    End If
    Return Nothing
    End Function
    End Class
    End Namespace
    And final the code behind of the view vPetitioner:
    <UserControl x:Class="CCIS.View.Case.vPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    Width="300">
    <UserControl.Resources>
    <ResourceDictionary Source=".\CompactFormStyles.xaml" />
    </UserControl.Resources>
    <Grid>
    <Border Style="{StaticResource DetailBorder}">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Text="Petitioner:" />
    <ComboBox Grid.Column="1" Width="240" SelectedValuePath="." SelectedItem="{Binding Path=tblParty}" ItemsSource="{Binding Path=PetitionerLookup}" DisplayMemberPath="fldName" />
    </Grid>
    </Border>
    </Grid>
    </UserControl>
    The problem, presumably, seems to be is that the binding path "PetitionerLookup" of the ItemSource of the Combo box in the view vPetitioner exists in a different ViewModel vmCase which serves as an ObservableCollection for MainViewModel. Therefore,
    what I need to Know is how to route the binding path if it exists in a different ViewModel?
    Sir, I look forward to your early reply bringing a workable solution to the problem I face. 
    Warm Regards,
    Arun

  • What is the best application to sync meetings and events through the iPhone and iPad with Outlook work e mail

    i need my secritart to place events on my calendar through an application without having to go through my works calendar ,,
    for example if there is an event sceduled for tomorrow i want them to just log into the app assign the event date and time on the calendar and it will automatically be synced on my iphone's / ipad's calendar and alurt me without me having to accept the event
    is there such an app?

    Note, I'm on the latest iOS - not 6.1.1 as the original post suggests.

  • Cannot email the web page's link, copy and pass the link are no under line and no links.

    I can't send a website links using yahoo-Email through Firefox 3.6.19 on my Mac Os X Version 10.4.11.
    And this just happed on July 19th 2011, yesterday.
    Please tell me why suddenly when I copy and pass the website address did not have under line and did not link?
    Thank you very much!

    You're welcome

  • Training and Event Management Implementation based on competencies

    Dear Friends,
    My client is going ahead for Training and Event Managment Implementation. They have a basic requirement to start with and that is :
    1) They have done competency mapping for all its employees and they want that the competencies of each employees(along with the skill levels) to be recorded in the system and that has to be the starting point of using Training and Event Management module.
    2) They want, if the competencies can flow based on Job/ Position.
    3) Some identifier to the competencies, whther it has flowed from Appraisal or any other sources in the Final Training Needs.
    Kindly provide me help, as to how I will be able to achieve that and in what Infotypes the data pertaining to Training and Event Managment will be stored.
    If u all can kindly share with me the User Manuals and Configuration Docs of Training and Event Management, it will be of great help.
    Thank you all.

    Hi,
    Competencies can be stored as qualifications in PD and then by activation of PD PA intergration can be seen from pa30 infotype 24.
    Qualifications can be stored against a Job/Position and are called as the Requirements. They are seen as a separate Tab and to which ever position the person is linked to the corresponding qualifications of the position will appear in the requirements tab.
    You can maintain the proficiency and a note along with the qualification when assigned to a person.
    Also Appraisals can have qualifications in the template rather than criteria and criteria groups.
    Also after training is completed during the follow up we can create an appraisal and transfer the qualifications or simply transfer the qualifications to the employee.
    Regards,
    Divya

  • PS Objects and Events for Workflow Builder

    Hi experts, i would like to ask assistance if you have the list of all existing objects and events or even the workflow already available on SAP handling PS transaction?
    Im thinking to create a work flow for approval of supplemental budget for the project.

    Hi
    Check this link.
    http://help.sap.com/erp2005_ehp_04/helpdata/DE/92/bc26a6ec2b11d2b4b5006094b9ea0d/frameset.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/9b/572614f6ca11d1952e0000e82dec10/frameset.htm
    Thanks
    S.Murali
    Edited by: S. Murali on Jul 3, 2009 3:29 PM

  • DSC 8.01 Configuring alarm and event display control

    Hi all,
    How to configure the columns in this control (alarm and event display control) in order to hide columns, changing the langage ?
    In the previous DSC version it was different.
    Thanks
    Best regards,
    Julien

    Hello Julien,
    At my knowledge, such a control is not customisable. I think you should use the "Alarm and query filter" control (in your FP) linked to the filter input of the "Alarm and query" vi (in your diagram). This should enable you to select the alarms to display
    Regards,
    Mathieu Steiner, Test System Engineer, Safran Engineering
    CLD, ISTQB

  • Training and event management configuration.

    Hello experts,
    I need the complete configuration steps of training and event management in sap hr. I am not working with lso.
    Thanks and regards,
    Kanika talwar.
    Dear User ,
    Useing of Bold letters is against the forume rules

    Hi,
    You can go to spro and follow as below:
    Payroll-> Payroll: France->Training Needs Management->Activate Function Training Needs Management->then select the option -> Activate SAP Training Need Management. The system status wil become as SAP Training Need Management is deactivated.
    Thanks,
    Padmaja.

  • Workflows in HR: Training and Event Management (BO PDRELA_025)

    Hi expert!
    I have a problem in the context of SAP HCM Training and Event Management and the generation of a workflow event for BO PDRELA_025! 
    I have created entries in table T779X (through SWEHR3) as:
    E 1001 A025 * BOKF 0 PDRELA_025 REQUESTED
    E 1001 A025 * BOKP 0 PDRELA_025 REQUESTED
    E 1001 A025 * BOKW 0 PDRELA_025 REQUESTED
    E 1001 A025 * CNOW 0 PDRELA_025 DELETEREQUESTED
    E 1001 A025 * CPRB 0 PDRELA_025 DELETEREQUESTED
    ...but as soon as it calls function RH_OBJECTKEY_BUILD, it fails and doesn't create the REQUESTED event.
    As the key field for AttendeeID in object PDRELA_025 references OBJEC-REALO, function RH_OBJECTKEY_BUILD tries to find a corresponding field in structure PPKEY to create the object key. As it can't find this field in PPKEY, it fails and doesn't create the REQUESTED event. Is there something I've done wrong?
    Can anybody help me please?
    Michael

    Hi Rick,
    Thank you for your help.
    The problem occurs in function module RH_OBJECTKEY_BUILD. Following raise is the problem.
        loop at bor_keyfields where bor_object_type = bor_object_type.
          read table structure_key with key
                                   fieldname = bor_keyfields-reffield
                                   binary search.
          if sy-subrc = 0.
            bor_objectkey+bor_keyfields-offset(bor_keyfields-ddlength) =
            hr_record_key+structure_key-offset(structure_key-leng).
          else.
    *     FATAL ERROR!!!! BusObjectKey do not refer Infotypekey of DDIC!!!
            raise problem_to_build_borkey.*
          endif.
        endloop.
    If found SAPNote 1066444 but the recommanted SP is already imported?!
    Can you help me??

  • Delete Log File: Correspondence in Training and Event Management ( t77vp)

    Is there a standard way of deleting the Log File: Correspondence in Training and Event Management ( T77VP ) from the system.
    Thanks for your help.
    Andi

    Hi Niladri,
    Please open a new discussion for this as it's a different question. Not only is this stated in the guidelines and makes it easier for other members to search for the right things, but it also increases your chances of getting the right answers, because users know you are looking at LSO rather than TEM and because many users, sadly, are driven by points primarily for giving answers and know you could not mark their answer as correct, because it's not your post.
    Please also give context info: which correspondence solution are you using (Smartforms, Adobe forms, SAPscript) and which version of LSO. 

  • Questions about tuning the USRP packet -based link examples

    Hi everyone,
       Today I do some tests and tunning on the USRP packet-based link examples, and I find these questions:
       First I set the following parameters to the Packet Transmitter.vi: Tx frequency=2441M, samples per symblol=8, sample rate=800k, then the symbol rate should be 100k
       Then I set the Rx frequency to 2441=M and do three tests to the USRP packet receiver.vi:
       1. set the samples per symbol to 8,  the sample rate to 800k, all the packets can be received correctly very fast.
       2. set the samples per symbol to 40, the sample rate to 4M, all the packtes can be received correctly, but slower than the former test.
       3. set the samples per symbol to 50, the sample rate to 5M, all the packets can be received correctly, but much slower than the former two tests.
       4.  set the samples per symbol to 40, the sample rate to 5M, but change the sample rate to  4M  when input the argument to the resample&demod_shell.vi, then I find that no packets can be received correctly.(According to my understanding, resampling the data with 4M sample rate should make the input data time-aligned)
       Can anyone help me interprete above  test? Thanks in advance!

    Hi 0711,
    You are correct.  If you sample at 5MS/s and have a samples/sym of 40, resampling with a sample rate of 4MS/s will allow you to receive the signal.  Digging into the sub_resample_and_demodulate.vi, I found the issue.  The modulation toolkit resample VI that is being used pulls the sample rate of the incoming signal from the incoming waveform (or the dt of the incoming waveform).  In the resample and demodulate subvi, the dt of the incoming signal was hard wired to be 1/x of the desired sampling rate.  For all other uses cases, having these 2 parameters hard wired together does not cause a problem, but for the 4th case you described it does.  I edited the subvi like shown in the image below and was able to get it working:
    Hope that helps and let me know if you have any further questions.  I'll do my best to get you an answer.
    Sarah Y
    SDR Product Manager
    National Instruments | Ettus Research

  • Reg: How add methods and events to standard BOR

    HI Gurus,
    Can any provide me the details
    How to add methods and events to standard bor ?
    Please provide me details
    thanks in advance
    Rameshg

    Create a new Z_object BOR (subtype) using the standard BOR as Supertype.
    (Look also under [BAPI Modifications|http://help.sap.com/saphelp_nw04/helpdata/en/df/0495e4bd6f11d1ad09080009b0fb56/content.htm] at [Creating Subtypes|http://help.sap.com/saphelp_nw04/helpdata/en/df/0495e4bd6f11d1ad09080009b0fb56/frameset.htm])
    Regards,
    Raymond

  • Email link - link problem on events and blog pages

    I added a email link on a master page - link works properly on all except blog pages and events pages -
    on these pages it links to http://www.h2oonstone.com/mailto:[email protected]  which brings up a bad request
    the link on my celebration page works Celebration | Water on Stone Productions | Art, Music, Magic
    but on the individual events pages they don't - example National Wildlife Day -
    also doesn't work on blog main Water on Stone Watershed
    or on the individual pages  Smoothie Love | Watershed | Water on Stone Productions

    Hi Sanjit -
    The workaround works - but - I had to fix it on the events and e-commerce templates too - and the error template as well.
    The problem is is that every time I make a change and upload the muse file I will have to modify these html pages and that is unsustainable… way too much work as I will be modifying the pages frequently till I have site completed.
    Also strange - on the Blog pages that when I reimplemented the email link (on the master page)  that the normal state does not remain white but defaults to a black - which I suspect has to do with the link default states. I haven't been able to fix this today.
    All the other buttons - with links off-site maintain the states and links work.
    Thanks, Ann

  • My imovie seems to have completely crashed... and I'm hoping someone can help me. I have moved all my projects and events to a folder on my desktop. I've deleted all the plist files I can find and I still cannot get it to open.

    Please help... it seems all is lost as all I kind find on this subject seem to lead to nowhere. My engagement was on imovie, a school project, several videos of our son. You will have to hold my hand through this process... as I am not very good at this type of thing. I believe I have deleted all the necessary plist files and moved my projects and events to a folder on my desktop. imovie has been upgraded to version 9.0.9... Whenever I open it I just get the beachball and then I have to force quit and I get the following report:
    Date/Time:  
    2013-08-02 23:48:24 -0500
    OS Version: 
    10.7.5 (Build 11G63b)
    Architecture:
    x86_64
    Report Version:  9
    Command:    
    iMovie
    Path:       
    /Applications/iMovie.app/Contents/MacOS/iMovie
    Version:    
    9.0.9 (1795)
    Build Version:   2
    Project Name:
    iMovieApp
    Source Version:  1795000000000000
    App Item ID:
    408981434
    App External ID: 15340117
    Parent:     
    launchd [120]
    PID:        
    1184
    Event:      
    hang
    Duration:   
    2.60s
    Steps:      
    27 (100ms sampling interval)
    Pageins:    
    0
    Pageouts:   
    0
    Process:    
    iMovie [1184]
    Path:       
    /Applications/iMovie.app/Contents/MacOS/iMovie
    Architecture:
    i386
    UID:        
    504
      Thread 0x3dd6 
      User stack:
    27 ??? (in iMovie) [0xf9c95]
    27 ??? (in iMovie) [0xfa12a]
    27 NSApplicationMain + 1054 (in AppKit) [0x92d8fac5]
    27 -[NSApplication run] + 911 (in AppKit) [0x92afeac1]
    27 ??? (in iMovie) [0x1485be]
    27 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113 (in AppKit) [0x92b02752]
    27 _DPSNextEvent + 678 (in AppKit) [0x92b02ee8]
    27 BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x9c85671a]
    27 ReceiveNextEventCommon + 381 (in HIToolbox) [0x9c8568ab]
    27 RunCurrentEventLoopInMode + 318 (in HIToolbox) [0x9c84f543]
    27 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x9ad10088]
    27 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x9ad101dc]
    27 __CFRunLoopRun + 1112 (in CoreFoundation) [0x9ad109c8]
    27 __CFRunLoopDoSources0 + 246 (in CoreFoundation) [0x9ace6af6]
    27 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15 (in CoreFoundation) [0x9ace713f]
    27 __NSThreadPerformPerform + 503 (in Foundation) [0x95e5fe0c]
    27 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x9ad6fd11]
    27 -[ILMediaGroupsTreeController _reloadFinished:] + 715 (in iLifeMediaBrowser) [0x94ff72a0]
    27 -[ILMediaGroupsTreeController setAllGroups:] + 180 (in iLifeMediaBrowser) [0x94ff8dee]
    27 -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 131 (in Foundation) [0x95e2316d]
    27 NSKeyValueDidChange + 279 (in Foundation) [0x95e7bbf1]
    27 NSKeyValueNotifyObserver + 387 (in Foundation) [0x95e59194]
    27 -[ILMediaObjectsViewController observeValueForKeyPath:ofObject:change:context:] + 1217 (in iLifeMediaBrowser) [0x9500538b]
    27 -[ILMediaObjectsViewController syncTreeNodeSelections] + 419 (in iLifeMediaBrowser) [0x9501179d]
    27 -[ILMediaObjectsViewController groupSelectionChanged:] + 233 (in iLifeMediaBrowser) [0x95007225]
    27 -[ILMediaObjectsViewController updateMediaObjectsViewToSelectedGroups:] + 2002 (in iLifeMediaBrowser) [0x9501035f]
    27 -[NSArrayController setContent:] + 858 (in AppKit) [0x92d97f3f]
    27 -[NSArrayController _arrangeObjectsWithSelectedObjects:avoidsEmptySelection:operationsMask:useBasis :] + 856 (in AppKit) [0x92d95aa0]
    27 -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 53 (in AppKit) [0x92d96231]
    27 -[NSController didChangeValueForKey:] + 48 (in AppKit) [0x92b18430]
    27 -[NSController _notifyObserversForKeyPath:change:] + 238 (in AppKit) [0x92b18526]
    27 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1026 (in Foundation) [0x95e52f44]
    27 NSKeyValueNotifyObserver + 387 (in Foundation) [0x95e59194]
    27 -[ILMediaObjectsViewController observeValueForKeyPath:ofObject:change:context:] + 299 (in iLifeMediaBrowser) [0x95004ff5]
    27 -[IKImageBrowserView(ImageBrowserDatasource) reloadData] + 368 (in ImageKit) [0x9b96ba12]
    27 -[IKImageBrowserView(ImageBrowserLayout) updateLayoutOfCells] + 100 (in ImageKit) [0x9b978e18]
    27 -[IKImageBrowserView(ImageBrowserLayout) updateLayoutOfCellsAtIndexes:] + 174 (in ImageKit) [0x9b978d52]
    27 -[IKImageBrowserView(ImageBrowserScrolling) adjustDocumentSize] + 49 (in ImageKit) [0x9b98170c]
    27 -[IKImageBrowserLayoutManager contentSize] + 100 (in ImageKit) [0x9b9d6fbc]
    27 -[IKImageBrowserLayoutManager updateIfNeeded] + 44 (in ImageKit) [0x9b9d4a9d]
    27 -[IKImageBrowserLayoutManager update] + 213 (in ImageKit) [0x9b9d4a46]
    27 -[IKImageBrowserSubsetLayoutManager updateLayout] + 60 (in ImageKit) [0x9ba0451a]
    27 -[IKImageBrowserGrid computeContentSize] + 399 (in ImageKit) [0x9b941329]
    27 -[IKImageBrowserGrid translationRatioAtRow:] + 63 (in ImageKit) [0x9b94095e]
    27 -[IKImageBrowserGrid validateRowsTranslationsToRowIndex:] + 621 (in ImageKit) [0x9b941015]
    27 -[IKImageBrowserCell aspectRatio] + 44 (in ImageKit) [0x9b94950e]
    27 -[IKImageBrowserCell _computeAspectRatio] + 36 (in ImageKit) [0x9b949585]
    27 -[IKImageCell validateDatasource] + 1118 (in ImageKit) [0x9ba2af82]
    27 -[NSObject(IKImageBrowserItemOptional) IKImageRepresentationWithType:] + 33 (in ImageKit) [0x9ba26f8f]
    27 -[ILMediaObject imageRepresentation] + 533 (in iLifeMediaBrowser) [0x94feffd4]
    27 -[ILMediaObject thumbnailPath] + 86 (in iLifeMediaBrowser) [0x94ff43b5]
    27 -[ILMediaObject _internal_thumbnailPath] + 52 (in iLifeMediaBrowser) [0x94ff4453]
    27 -[ILMediaObject refreshThumbnailCacheInfo] + 62 (in iLifeMediaBrowser) [0x94ff0199]
    27 -[ILMediaBrowserImageManager loadCachedAttributesForMediaObject:] + 48 (in iLifeMediaBrowser) [0x94ffa93d]
    22 -[ILMediaBrowserImageManager loadCachedAttributesForMediaObject:updateIfNotFound:] + 466 (in iLifeMediaBrowser) [0x94ffab14]
    22 -[ILMediaBrowserImageManager updateThumbnailDataXmlForPath:info:] + 116 (in iLifeMediaBrowser) [0x94ffa906]
    15 -[NSDictionary(NSDictionary) writeToFile:atomically:] + 236 (in Foundation) [0x95e2a2fe]
    15 CFPropertyListCreateXMLData + 32 (in CoreFoundation) [0x9ad44640]
    15 _CFPropertyListCreateXMLData + 203 (in CoreFoundation) [0x9ad4471b]
    7 _CFAppendXML0 + 3261 (in CoreFoundation) [0x9ad4561d]
    2 _CFAppendXML0 + 3261 (in CoreFoundation) [0x9ad4561d]
    1 _CFAppendXML0 + 290 (in CoreFoundation) [0x9ad44a82]
    1 _appendEscapedString + 602 (in CoreFoundation) [0x9ad461ea]
    1 _plistAppendCharacters + 80 (in CoreFoundation) [0x9ad44850]
    1 _CFAppendXML0 + 5210 (in CoreFoundation) [0x9ad45dba]
    1 __CFNumberCreateFormattingDescriptionAsFloat64 + 181 (in CoreFoundation) [0x9ad61df5]
    1 CFStringCreateWithFormat + 110 (in CoreFoundation) [0x9ace102e]
    1 __CFStringAppendFormatCore + 6588 (in CoreFoundation) [0x9acdad9c]
    1 _CFAppendXML0 + 2847 (in CoreFoundation) [0x9ad4547f]
    1 CFRelease + 169 (in CoreFoundation) [0x9acde039]
    1 _objc_rootRelease + 47 (in libobjc.A.dylib) [0x99b0854e]
    1 -[__NSArrayM dealloc] + 394 (in CoreFoundation) [0x9ad084da]
    1 -[NSObject dealloc] + 107 (in CoreFoundation) [0x9ad0855b]
    1 _object_dispose + 78 (in libobjc.A.dylib) [0x99b11dc0]
    1 szone_size + 0 (in libsystem_c.dylib) [0x98b64cd1]
    1 _CFAppendXML0 + 2616 (in CoreFoundation) [0x9ad45398]
    1 CFDictionaryGetKeysAndValues + 455 (in CoreFoundation) [0x9aceb567]
    1 CFBasicHashGetElements + 207 (in CoreFoundation) [0x9aceb63f]
    1 _CFAppendXML0 + 3128 (in CoreFoundation) [0x9ad45598]
    1 _appendEscapedString + 653 (in CoreFoundation) [0x9ad4621d]
    1 _plistAppendCharacters + 80 (in CoreFoundation) [0x9ad44850]
    1 _CFAppendXML0 + 2778 (in CoreFoundation) [0x9ad4543a]
    1 CFArraySortValues + 1183 (in CoreFoundation) [0x9ace86ef]
    1 CFQSortArray + 231 (in CoreFoundation) [0x9ace8927]
    1 CFSortIndexes + 1494 (in CoreFoundation) [0x9ad18466]
    1 __CFSimpleMergeSort + 124 (in CoreFoundation) [0x9ad1850c]
    1 __CFQSortArray_block_invoke_1 + 47 (in CoreFoundation) [0x9ad186ef]
    1 __CFArrayCompareValues + 36 (in CoreFoundation) [0x9ad18724]
    1 CFStringCompare + 60 (in CoreFoundation) [0x9acf4c8c]
    1 CFStringCompareWithOptionsAndLocale + 35 (in CoreFoundation) [0x9acf4cc3]
    1 CFStringGetLength + 108 (in CoreFoundation) [0x9acdc97c]
    1 _CFAppendXML0 + 2722 (in CoreFoundation) [0x9ad45402]
    1 CFArrayReplaceValues + 135 (in CoreFoundation) [0x9ace8ac7]
    1 -[NSMutableArray replaceObjectsInRange:withObjects:count:] + 979 (in CoreFoundation) [0x9ad27e93]
    4 _CFAppendXML0 + 3128 (in CoreFoundation) [0x9ad45598]
    2 _appendEscapedString + 340 (in CoreFoundation) [0x9ad460e4]
    1 CFStringGetCharacters + 143 (in CoreFoundation) [0x9aced27f]
    1 CFStringGetCharacters + 20 (in CoreFoundation) [0x9aced204]
    2 _appendEscapedString + 602 (in CoreFoundation) [0x9ad461ea]
    2 _plistAppendCharacters + 150 (in CoreFoundation) [0x9ad44896]
    2 CFDataAppendBytes + 163 (in CoreFoundation) [0x9aceb793]
    1 CFDataReplaceBytes + 487 (in CoreFoundation) [0x9ace9857]
    1 __CFDataGrow + 354 (in CoreFoundation) [0x9acec362]
    1 realloc + 175 (in libsystem_c.dylib) [0x98ba56f6]
    1 malloc_zone_realloc + 84 (in libsystem_c.dylib) [0x98ba47c0]
    1 szone_realloc + 2552 (in libsystem_c.dylib) [0x98b6f6f4]
    1 vm_copy + 167 (in libsystem_kernel.dylib) [0x9a73fa6c]
    1 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9a741c22]
    1 CFDataReplaceBytes + 727 (in CoreFoundation) [0x9ace9947]
    1 memmove$VARIANT$sse42 + 39 (in libsystem_c.dylib) [0x98b279e4]
    2 _CFAppendXML0 + 3239 (in CoreFoundation) [0x9ad45607]
    2 CFDictionaryGetValue + 135 (in CoreFoundation) [0x9acd6a87]
    1 CFBasicHashFindBucket + 1844 (in CoreFoundation) [0x9acd71d4]
    1 __CFDictionaryStandardEquateKeys + 46 (in CoreFoundation) [0x9ace422e]
    1 CFEqual + 91 (in CoreFoundation) [0x9ace429b]
    1 CFBasicHashFindBucket + 1679 (in CoreFoundation) [0x9acd712f]
    1 __CFDictionaryStandardHashKey + 32 (in CoreFoundation) [0x9acd7700]
    1 __CFStringHash + 125 (in CoreFoundation) [0x9ace0a4d]
    2 _CFAppendXML0 + 2778 (in CoreFoundation) [0x9ad4543a]
    2 CFArraySortValues + 1183 (in CoreFoundation) [0x9ace86ef]
    2 CFQSortArray + 231 (in CoreFoundation) [0x9ace8927]
    2 CFSortIndexes + 1494 (in CoreFoundation) [0x9ad18466]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 400 (in CoreFoundation) [0x9ad18620]
    1 __CFQSortArray_block_invoke_1 + 47 (in CoreFoundation) [0x9ad186ef]
    1 __CFArrayCompareValues + 36 (in CoreFoundation) [0x9ad18724]
    1 CFStringCompare + 60 (in CoreFoundation) [0x9acf4c8c]
    1 bcmp + 153 (in libsystem_c.dylib) [0x98b9f1b9]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 400 (in CoreFoundation) [0x9ad18620]
    1 __CFQSortArray_block_invoke_1 + 47 (in CoreFoundation) [0x9ad186ef]
    1 __CFArrayCompareValues + 36 (in CoreFoundation) [0x9ad18724]
    1 CFStringCompare + 60 (in CoreFoundation) [0x9acf4c8c]
    1 bcmp + 132 (in libsystem_c.dylib) [0x98b9f1a4]
    5 -[NSDictionary(NSDictionary) writeToFile:atomically:] + 287 (in Foundation) [0x95e2a331]
    5 -[NSData(NSData) writeToFile:atomically:] + 103 (in Foundation) [0x95e2a51e]
    5 _NSWriteBytesToFile + 60 (in Foundation) [0x95e2a565]
    4 __fsync + 10 (in libsystem_kernel.dylib) [0x9a7445fa]
    1 _NSWriteBytesToFileWithExtendedAttributes + 1253 (in Foundation) [0x95e2aa52]
    1 __rename + 10 (in libsystem_kernel.dylib) [0x9a743b0a]
    2 -[NSDictionary(NSDictionary) writeToFile:atomically:] + 61 (in Foundation) [0x95e2a24f]
    1 _NSIsPList + 793 (in Foundation) [0x95e28608]
    1 _NSIsPList + 659 (in Foundation) [0x95e28582]
    1 -[__NSCFDictionary keyEnumerator] + 97 (in CoreFoundation) [0x9ad5e271]
    1 -[__NSCFDictionary retain] + 25 (in CoreFoundation) [0x9ad3bec9]
    1 _NSIsPList + 770 (in Foundation) [0x95e285f1]
    1 -[__NSCFDictionary objectForKey:] + 28 (in CoreFoundation) [0x9ad3897c]
    1 CFDictionaryGetValue + 135 (in CoreFoundation) [0x9acd6a87]
    1 CFBasicHashFindBucket + 1844 (in CoreFoundation) [0x9acd71d4]
    1 __CFDictionaryStandardEquateKeys + 46 (in CoreFoundation) [0x9ace422e]
    1 CFEqual + 261 (in CoreFoundation) [0x9ace4345]
    1 bcmp + 128 (in libsystem_c.dylib) [0x98b9f1a0]
    5 -[ILMediaBrowserImageManager loadCachedAttributesForMediaObject:updateIfNotFound:] + 411 (in iLifeMediaBrowser) [0x94ffaadd]
    5 -[ILMediaBrowserImageManager loadAttributes:forMediaObject:atPath:] + 79 (in iLifeMediaBrowser) [0x94ffab80]
    5 -[ILMediaBrowserImageManager loadAttributes:forImageMediaObject:atPath:] + 720 (in iLifeMediaBrowser) [0x94ffd6ca]
    3 -[IKImageWrapper saveAsTIFFAtPath:] + 69 (in ImageKit) [0x9b91df81]
    3 -[NSData(NSData) writeToFile:atomically:] + 103 (in Foundation) [0x95e2a51e]
    3 _NSWriteBytesToFile + 60 (in Foundation) [0x95e2a565]
    3 __fsync + 10 (in libsystem_kernel.dylib) [0x9a7445fa]
    2 -[IKImageWrapper saveAsTIFFAtPath:] + 36 (in ImageKit) [0x9b91df60]
    1 -[IKImageWrapper TIFFRepresentation] + 82 (in ImageKit) [0x9b91eb1c]
    1 -[NSImage TIFFRepresentation] + 49 (in AppKit) [0x92d505e3]
    1 -[NSImage TIFFRepresentationUsingCompression:factor:] + 806 (in AppKit) [0x92d50911]
    1 +[NSBitmapImageRep TIFFRepresentationOfImageRepsInArray:] + 56 (in AppKit) [0x92d50dd9]
    1 +[NSBitmapImageRep(NSBitmapImageFileTypeExtensions) representationOfImageRepsInArray:usingType:properties:] + 2439 (in AppKit) [0x92d51768]
    1 CGImageDestinationFinalize + 158 (in ImageIO) [0x961dc693]
    1 _CGImagePluginWriteTIFF + 3885 (in ImageIO) [0x961dd5e9]
    1 CGAccessSessionGetBytes + 164 (in CoreGraphics) [0x99202dbc]
    1 memmove$VARIANT$sse42 + 136 (in libsystem_c.dylib) [0x98b27a45]
    1 -[IKImageWrapper TIFFRepresentation] + 64 (in ImageKit) [0x9b91eb0a]
    1 -[IKImageWrapper nsImage:] + 53 (in ImageKit) [0x9b92139b]
    1 -[IKImageWrapper _nsImage] + 261 (in ImageKit) [0x9b921519]
    1 IKCGImageFromIconRef + 309 (in ImageKit) [0x9b924834]
    1 PlotIconRefInContext + 403 (in HIServices) [0x93b65a15]
    1 PlotISImageRefInContext + 2063 (in HIServices) [0x93b63375]
    1 CGContextDrawImage + 457 (in CoreGraphics) [0x992b0855]
    1 ripc_DrawImage + 951 (in libRIP.A.dylib) [0x9ce94e6f]
    1 ripc_AcquireImage + 1901 (in libRIP.A.dylib) [0x9ce9661d]
    1 CGSImageDataLock + 165 (in CoreGraphics) [0x992b0c5c]
    1 img_data_lock + 8151 (in CoreGraphics) [0x9922867d]
                                                          

    Hi
    Yes this can be many things - and I can only guess/suggest.
    A. a very common origin to make the Mac un-happy is to - PANIC-HALT - when the round multicolored thing appear.
    So much can go wrong by doing this - and if done often problem builds up that can result in a real disaster.
    B. NEVER - move or alter any folder named - iMovie Event's resp. iMovie Project's - as iMovie has no search function - moving them results in that iMovie get's 100% lost.
    One can move them - but this HAS TO BE done within the iMovie application (as it is up and running)
    C. preference files - there are TWO or more Libraries on Your Mac. First and easy to find is the one You see when opening Your Start-Up Hard Disk window = Root Library == the WRONG ONE
    What we need to find is the one in Your User-Account folder (icon as a house) - and this is in Mac OS X.7, X.8 and X.9 HIDDEN. To see it do:
    ( It can be done like this: Open Terminal, then enter:
    chflags nohidden ~/Library
    Press return, then restart, and it will always be visible until the next major update, when you do the same thing again. )
    or - do like this. 
    On the Finder window at the top left of the screen,
    Hold down the Option key and clicked on Go. 
    This allowed You to see the Library folder and select it. 
    Then keep the Option button pressed down in order to see and select the Library folder. 
    Once found it, You are able to navigate to the iMovie preferences file and move it to the trash.  iMovie then start’s up fine! 
    Now here in Your User Library - find Preferences and trash
    com.apple.iMovie.plist
    com.apple.iMovie3.plist
    com.apple.iMovie7.plist
    com.apple.iMovie8.plist
    com.apple.iMovie9.plist
    com.apple.iMovieApp.plist
    and find
    com.apple.iApps.plist
    While iMovie is NOT RUNNING - move this/these file/s out on to desk-top.
    Now restart iMovie.
    I Prefere another way to find out if this is the problem.
    (after all folders (iMovie Event/Projects are moved into original place)
    • go up to Apple Menu
    • Down to System Pref's
    • Select Accounts - Create a new User
    • Go down the Apple menu - Log OUT
    • Log into as the new User
    Now try iMovie
    Does it work at all ? (Yes You don't see Events or Projects in Your original Account just now)
    If so - Then we know that there is a corrupted pref file to be trashed.
    Else - the problem are much more severe.
    D. After Panic Halt / Forced Quit - I always do -. to keep disasters on arms length.
    • Repair Permissions (Apple Disk Util tool)
    • Start from other HD or DVD - then run Repair Hard Disk (Apple Disk Util tool)
    Yours trying to be of help - Bengt W

  • If my phone service is disconnected, can I still use the number to iMessage? Under my setting in iMessages it only allows me to select my linked emails and the telephone number is there but grayed out and i can't seletect it !

    If my phone service is disconnected, can I still use the number to iMessage? Under my setting in iMessages it only allows me to select my linked emails and the telephone number is there but grayed out and i can't seletect it ! It wont activate. I just recentely got AT&T.  When I had verizon before and my phone got disconnected it allowed me to still iMessage off my number.

    If your phone service is disconnected, it's not your number any more.
    If you "just got AT&T", how can it be disconnected?

Maybe you are looking for

  • [Ljava.lang.Character; error.

    Hi, just noticed this, When ever a character is required the tool will map it to [Ljava.lang.Character; cheers.

  • I have a problem with a cd player

    My boyfriend is incarcerated and he bought a Sony cd player from Access Secure Pak in 2011. The ball bearing which he says reads the cd's and makes them play came out. I just need to know how much will it cost to get it fixed and how can he go about

  • Where do the UCS blades get their system time from?

    Hello, I'm curious how the system clock gets set on UCS blades? I have NTP setup in UCSM and expected the blades to set their time based on that during first boot at the very least. I recently associated a new service profile to a blade and installed

  • How do i uninstall applications and their packages without littering trashcan

    how do i uninstall applications and their packages without littering trashcan.                                                                                                    *sincerly nube*

  • Dedup showing 0% savings

    Hi Everyone, I enabled dedup on a backup drives used for SQL server backups and left it a couple of days. When I check the folder properties it has the following proeprties: Size: 418GB Size on Disk : 140GB But overall usage on the drive as reported