bem... para usar o trace deves ter o debugger instalado, e executar atraves do debugger (icone do insetinho)...
sobre o efeito nao funcionar: /********************************************************** resize Event Event Object Type: mx.events.ResizeEvent property ResizeEvent.type = mx.events.ResizeEvent.RESIZE Dispatched when the component is resized. You can resize the component by setting the width or height property, by calling the setActualSize() method, or by setting one of the following properties either on the component or on other components such that the LayoutManager needs to change the width or height properties of the component: minWidth minHeight maxWidth maxHeight explicitWidth explicitHeight The resize event is not dispatched until after the property changes. **********************************************/ Como height não está na lista de propriedades cuja mudança dispara um resize, parece que o que acontece é que: - includeinLayout dispara, sem mudar o height do VBox - isso dispara uma invalidação no tamanho - que deve disparar o método measure - que muda measuredHeight - e depois tambem atualiza height... --~--~---------~--~----~------------~-------~--~----~ Você recebeu esta mensagem porque está inscrito na lista "flexdev" Para enviar uma mensagem, envie um e-mail para [email protected] Para sair da lista, envie um email em branco para [email protected] Mais opções estão disponíveis em http://groups.google.com/group/flexdev -~----------~----~----~----~------~----~------~--~---
