[flex-brasil] Resumo 2959

Mensagens neste resumo (15 Mensagens)

1.1.
Re: VGroup e HGroup e a propriedade Background De: Igor Costa
2.1.
Re: [flex-brasil] MUDAR COR DE BOTÃO E COLOCAR EFEITO De: Igor Costa
2.2.
RES: [flex-brasil] MUDAR COR DE BOTÃO E COLOCAR EFEITO De: roger.rayner
3.
Application De: Douglas Lira
4.1.
Re: Download do SDK Open Source De: fourctv
5.
ERRO EM CHAMADA REMOTA De: roger.rayner
6.1.
Som no Flex De: wellingtonsousa
6.2.
Re: Som no Flex De: Mário Júnior
6.3.
Re: Som no Flex De: Wellington Gonçalves de Sousa
6.4.
Res: [flex-brasil] Som no Flex De: Rodrigo Nunes
6.5.
Re: Som no Flex De: Wellington Gonçalves de Sousa
7.
RES: [flexdev] ERRO EM CHAMADA REMOTA De: roger.rayner
8.
FlexPrintJob mudar nome da impressão De: c4viny
9.
Para projeto em BH De: Hudson Yahoo
10.
Custom click em Componente Proprio De: Ricardo Cardoso

Mensagens

1.1.

Re: VGroup e HGroup e a propriedade Background

Enviado por: "Igor Costa" igorcosta@gmail.com   igorfrombrazil

Dom, 17 de Out de 2010 6:16 pm



Boa tarde Luis

O caso é que no Flex 4 tudo está desacoplado do componente, seja Skins,
Estilos e até comportamento, tudo é agnóstico ao componente.

Então para você colocar um background em um VGroup ou HGroup, você terá que
desenhar usando o FXG ou criar um skin para que isso ocorra.

Assim voce pode usar qualquer cor que queira. O exemplo abaixo mostra
justamente um desenho de um objeto primitivo FXG.
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
minHeight="600">

<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here
-->
</fx:Declarations>
<s:Group x="359" y="91" width="214" height="208">
<s:Rect width="100%" height="100%">
<s:fill>
<s:SolidColor color="#000000"/>
</s:fill>
</s:Rect>
<s:HGroup >
<s:Button label="Luis Quinhone"/>
<s:Button label="Luis Quinhone"/>
<s:Button label="Luis Quinhone"/>
</s:HGroup>
</s:Group>
</s:Application>

O uso do borderContainer eu desaconselho agora justamente por que é um
"memory fog" consome muita memória. No SDK 4.5 eles melhoraram bastante a
maneira do re-desenho constante do BorderContainer, e pode ser usado.
Anterior ao 4.5 a melhor forma é assim.

Att

----------------------------
Igor Costa
www.igorcosta.com
www.igorcosta.org

2010/10/16 Luis Carlos Quinhone <lcquinhone@yahoo.com.br>

>
>
> Olá pessoal, no Flex 3, sempre usava o HBox e VBox para posicionar
> componentes, hoje no Flex 4 mudou para HGroup e VGroup
> mas agora ele não tem a propriedade background não tem como colocar uma
> cor nele, alguém sabe se tem algum segredo pra isso?
>
> Alguns vão dizer pra usar o borderContainer ou o BorderSkining, mas
> esses não tem a propriedade horizontalAlign e VerticalAlign.
>
> Eu até consegui fazer mas achei muito POG pro meu gosto.
>
> Att
>
> Luis Carlos
>
>

[As partes desta mensagem que não continham texto foram removidas]

2.1.

Re: [flex-brasil] MUDAR COR DE BOTÃO E COLOCAR EFEITO

Enviado por: "Igor Costa" igorcosta@gmail.com   igorfrombrazil

Dom, 17 de Out de 2010 6:40 pm



Roger

Espero que esteja com o Flex 3.x, Veja como voce pode fazer abaixo.

package com.datasul
{
import flash.events.MouseEvent;

import mx.controls.Button;
import mx.styles.StyleManager;

public class LiveButtonRoger extends Button
{
public function LiveButtonRoger()
{
super();
this.addEventListener(MouseEvent.MOUSE_OVER,mouse_sobreHandler);
this.addEventListener(MouseEvent.MOUSE_OUT,remover_foraHandler);
}

private function remover_foraHandler(event:MouseEvent):void
{
var coresOriginaisdoFlex3:Array = [0xffffff, 0xcccccc, 0xffffff,
0xeeeeee];
this.setStyle('fillColors',coresOriginaisdoFlex3);
}

private function mouse_sobreHandler(event:MouseEvent):void
{
this.setStyle('textRollOverColor',0xff9900);

var cores:Array = [0x000000, 0x333333, 0x000000, 0x000000];
this.setStyle('fillColors',cores);

}
}
}

Att
Igor Costa
----------------------------
Igor Costa
www.igorcosta.com
www.igorcosta.org

2010/10/16 roger.rayner <roger.rayner@totvs.com.br>

>
>
> Boa noite galera....
>
> Estou tentando criar um Button customizado e estou meio que barrado numa
> pequena parte... eu quero incluir evento para quando o mouse passe em cima
> do botão ou que saia dele mude a cor do botão.... fiz como abaixo... só que
> quando incluo esse meu botão num application para testar da o seguinte
> erro... Alguem poderia me dar uma luz?
>
> public class LiveSystemButton extends Button
>
> {
>
> private var _mouseUpDownColorStart:uint;
>
> private var _mouseUpDownColorEnd:uint;
>
> private var _mouseUpDownColor:uint;
>
> public function LiveSystemButton()
>
> {
>
> super();
>
> this.addEventListener(MouseEvent.MOUSE_UP, mouseUpEvent);
>
> }
>
> private function mouseUpEvent(evt:MouseEvent):void{
>
> this.setStyle("color", _mouseUpDownColor);
>
> this.setStyle("fillColors",
>
> [ColorUtils.interpolateColors( _mouseUpDownColorStart,
> _mouseUpDownColorEnd, 1),
>
> ColorUtils.interpolateColors(
> _mouseUpDownColorStart, _mouseUpDownColorEnd, 1),
>
> ColorUtils.interpolateColors(
> _mouseUpDownColorStart, _mouseUpDownColorEnd, 1),
>
> ColorUtils.interpolateColors(
> _mouseUpDownColorStart, _mouseUpDownColorEnd, 1)]);
>
> }
>
> Error: Error #1023: Estouro de pilha.
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> Att.,
>
> Roger Rayner
>
> Analista de Sistemas
>
> TOTVS BAHIA
> ( 55 (71) 9616 - 6876
> + <mailto:roger.rayner@totvs.com.br <roger.rayner%40totvs.com.br>>
> roger.rayner@totvs.com.br <roger.rayner%40totvs.com.br>
>
>
>
> http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/datasul.j
> pg
>
> http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/totvs.jpg
>
> "A Humildade é o alicerce dos Sábios... e o Orgulho a coluna dos Débeis!!!"
>
> (Augusto Cury)
>
> [As partes desta mensagem que não continham texto foram removidas]
>
>
>

[As partes desta mensagem que não continham texto foram removidas]

2.2.

RES: [flex-brasil] MUDAR COR DE BOTÃO E COLOCAR EFEITO

Enviado por: "roger.rayner" roger.rayner@totvs.com.br   rogerrayner2000

Seg, 18 de Out de 2010 12:07 am



Obrigado Igor é isso mesmo que eu queria.

Vlew.

Att.,

Roger Rayner

Analista de Sistemas

TOTVS BAHIA
( 55 (71) 9616 - 6876
+ <mailto:roger.rayner@totvs.com.br> roger.rayner@totvs.com.br

http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/datasul.jpg http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/totvs.jpg

"A Humildade é o alicerce dos Sábios... e o Orgulho a coluna dos Débeis!!!"

(Augusto Cury)

De: flex-brasil@yahoogrupos.com.br [mailto:flex-brasil@yahoogrupos.com.br] Em nome de Igor Costa
Enviada em: domingo, 17 de outubro de 2010 18:40
Para: flex-brasil@yahoogrupos.com.br
Assunto: Re: [flex-brasil] MUDAR COR DE BOTÃO E COLOCAR EFEITO

Roger

Espero que esteja com o Flex 3.x, Veja como voce pode fazer abaixo.

package com.datasul
{
import flash.events.MouseEvent;

import mx.controls.Button;
import mx.styles.StyleManager;

public class LiveButtonRoger extends Button
{
public function LiveButtonRoger()
{
super();
this.addEventListener(MouseEvent.MOUSE_OVER,mouse_sobreHandler);
this.addEventListener(MouseEvent.MOUSE_OUT,remover_foraHandler);
}

private function remover_foraHandler(event:MouseEvent):void
{
var coresOriginaisdoFlex3:Array = [0xffffff, 0xcccccc, 0xffffff,
0xeeeeee];
this.setStyle('fillColors',coresOriginaisdoFlex3);
}

private function mouse_sobreHandler(event:MouseEvent):void
{
this.setStyle('textRollOverColor',0xff9900);

var cores:Array = [0x000000, 0x333333, 0x000000, 0x000000];
this.setStyle('fillColors',cores);

}
}
}

Att
Igor Costa
----------------------------
Igor Costa
www.igorcosta.com
www.igorcosta.org

2010/10/16 roger.rayner <roger.rayner@totvs.com.br <mailto:roger.rayner%40totvs.com.br> >

>
>
> Boa noite galera....
>
> Estou tentando criar um Button customizado e estou meio que barrado numa
> pequena parte... eu quero incluir evento para quando o mouse passe em cima
> do botão ou que saia dele mude a cor do botão.... fiz como abaixo... só que
> quando incluo esse meu botão num application para testar da o seguinte
> erro... Alguem poderia me dar uma luz?
>
> public class LiveSystemButton extends Button
>
> {
>
> private var _mouseUpDownColorStart:uint;
>
> private var _mouseUpDownColorEnd:uint;
>
> private var _mouseUpDownColor:uint;
>
> public function LiveSystemButton()
>
> {
>
> super();
>
> this.addEventListener(MouseEvent.MOUSE_UP, mouseUpEvent);
>
> }
>
> private function mouseUpEvent(evt:MouseEvent):void{
>
> this.setStyle("color", _mouseUpDownColor);
>
> this.setStyle("fillColors",
>
> [ColorUtils.interpolateColors( _mouseUpDownColorStart,
> _mouseUpDownColorEnd, 1),
>
> ColorUtils.interpolateColors(
> _mouseUpDownColorStart, _mouseUpDownColorEnd, 1),
>
> ColorUtils.interpolateColors(
> _mouseUpDownColorStart, _mouseUpDownColorEnd, 1),
>
> ColorUtils.interpolateColors(
> _mouseUpDownColorStart, _mouseUpDownColorEnd, 1)]);
>
> }
>
> Error: Error #1023: Estouro de pilha.
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> at br.com.livesystem.components::LiveSystemButton/set
> mouseUpDownColorEnd()[D:\PROGRAMAÇÃO\PROGRAMAS
>
> JAVA-FLEX\FrameworkLiveSystem\src\br\com\livesystem\components\LiveSystemBut
> ton.as:36]
>
> Att.,
>
> Roger Rayner
>
> Analista de Sistemas
>
> TOTVS BAHIA
> ( 55 (71) 9616 - 6876
> + <mailto:roger.rayner@totvs.com.br <mailto:roger.rayner%40totvs.com.br> <roger.rayner%40totvs.com.br>>
> roger.rayner@totvs.com.br <mailto:roger.rayner%40totvs.com.br> <roger.rayner%40totvs.com.br>
>
>
>
> http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/datasul.j
> pg
>
> http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/totvs.jpg
>
> "A Humildade é o alicerce dos Sábios... e o Orgulho a coluna dos Débeis!!!"
>
> (Augusto Cury)
>
> [As partes desta mensagem que não continham texto foram removidas]
>
>
>

[As partes desta mensagem que não continham texto foram removidas]

[As partes desta mensagem que não continham texto foram removidas]

3.

Application

Enviado por: "Douglas Lira" douglas.lira.web@gmail.com   douglas_lira

Seg, 18 de Out de 2010 12:17 am



Boa noite galera, é o seguinte... tenho minha application que contem um
grupo de icones e um menu bar, até ai tudo bem, porem gostaria que ao clicar
no icone fosse criado dinamicamente um canvas que ficasse por cima de toda a
minha aplicação... como faço?

tentei:

FlexGlobals.topLevelApplication.addElement mas mesmo assim nada :S

--
Atenciosamente,

Douglas Lira - Web/Mobile Development
"No que diz respeito ao empenho, ao compromisso, ao esforço, à dedicação,
não existe meio termo. Ou você faz a coisa bem feita ou não faz."

[As partes desta mensagem que não continham texto foram removidas]

4.1.

Re: Download do SDK Open Source

Enviado por: "fourctv" no_reply@yahoogrupos.com.br   fourctv

Seg, 18 de Out de 2010 8:10 am



4.5? Hero? em nenhum lugar... talvez tenhamos novidades depois da Adobe MAX próxima semana, mas o "preview" do Hero está prometido para "final de 2010".

--- Em flex-brasil@yahoogrupos.com.br, Ricardo Cardoso <rickdukflex@...> escreveu
>
> Vixe, mas ai ferro hein.. Será que acho em algum lugar o Flex SDK 4.5?
>
> --- Em sáb, 16/10/10, fourctv <no_reply@yahoogrupos.com.br> escreveu:
>
> De: fourctv <no_reply@yahoogrupos.com.br>
> Assunto: [flex-brasil] Re: Download do SDK Open Source
> Para: flex-brasil@yahoogrupos.com.br
> Data: Sábado, 16 de Outubro de 2010, 12:51
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>  
>
>
>
>
>
>
>
>
>
> está fora do ar, "em manutenção"...
>
> olha aqui: http://blogs.adobe.com/flex/2010/10/status-of-opensource-adobe-com.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+flexteam+%28The+Official+Flex+Team+Blog%29
>
>
>
> --- Em flex-brasil@yahoogrupos.com.br, Ricardo Cardoso <rickdukflex@> escreveu
>
> >
>
> > Alguém ai ta conseguindo baixar o SDK do Flex no site da Adobe, faz dias que estou entrando lá para atualizar o sdk e nada do site funcionar... Alguém tem link proprio do sdk?Alguém sabe de alguma coisa que aconteceu?Abraços
>
> >
>
> >
>
> >
>
> >
>
> > [As partes desta mensagem que não continham texto foram removidas]
>
> >
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> [As partes desta mensagem que não continham texto foram removidas]
>

5.

ERRO EM CHAMADA REMOTA

Enviado por: "roger.rayner" roger.rayner@totvs.com.br   rogerrayner2000

Seg, 18 de Out de 2010 10:35 am



Bom dia,

Estou com um erro que já solucionei mas não entendi o porque que estava
ocorrendo se alguém puder me esclarecer.... no meu creationComplete de uma
tela eu faço várias chamadas ao Java conforme abaixo.

remoteBancoBean.getAllBancos();

remoteUsuarioBean.getAllUsuariosSistema();

remoteFasesBean.getAllFases();

Dessa forma da algum erro e as fases não mostram nem os usuários.....

Ai oq eu tive que fazer foi no result no getAllBancos chamar o
getAllUsuariosSistema e no result no getAllUsuariosSistema chamar o
getAllFases. Assim funcionou mas eu realmente não entendi o porque.

Se puderem me esclarecer.

Obrigado.

Att.,

Roger Rayner

Analista de Sistemas

TOTVS BAHIA
( 55 (71) 9616 - 6876
+ <mailto:roger.rayner@totvs.com.br> roger.rayner@totvs.com.br

http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/datasul.j
pg
http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/totvs.jpg

"A Humildade é o alicerce dos Sábios... e o Orgulho a coluna dos Débeis!!!"

(Augusto Cury)

[As partes desta mensagem que não continham texto foram removidas]

6.1.

Som no Flex

Enviado por: "wellingtonsousa" wellgsousa@gmail.com   wellingtongsousa

Seg, 18 de Out de 2010 10:45 am



Bom dia pessoal,

alguém já desenvolveu algo que faz o Flex emitir um som?

Ex: quando eu clicar no botão o sistema emite um som.

Me ajudem ai.

Valeu!!

6.2.

Re: Som no Flex

Enviado por: "Mário Júnior" juninhog12@gmail.com   juninhog123

Seg, 18 de Out de 2010 11:04 am



J� procurou saber na documenta��o sobre a classe Sound?
l� tem at� c�digo pronto, d� pra acreditar?!

Lembrando o bom senso da lista:
- Pesquise na documenta��o.
- Pesquise no hist�rico da lista (sobre som te v�rias coisas)
- Nao resolveu, da� sim pede ajuda pra galera.

[]s

Em 18 de outubro de 2010 10:45, wellingtonsousa <wellgsousa@gmail.com>escreveu:

>
>
> Bom dia pessoal,
>
> algu�m j� desenvolveu algo que faz o Flex emitir um som?
>
> Ex: quando eu clicar no bot�o o sistema emite um som.
>
> Me ajudem ai.
>
> Valeu!!
>
>

--
Mario Junior
http://blog.mariojunior.com/
@mariojunior

[As partes desta mensagem que n�o continham texto foram removidas]

6.3.

Re: Som no Flex

Enviado por: "Wellington Gonçalves de Sousa" wellgsousa@gmail.com   wellingtongsousa

Seg, 18 de Out de 2010 11:34 am



Com certeza não iria perder tempo escrevendo um e-mail para o grupo sem
antes procurar no google.
O problema é saber a palavra correta, com a sua dica de Sound o resto eu me
viro.

Obrigado.

Em 18 de outubro de 2010 10:04, Mário Júnior <juninhog12@gmail.com>escreveu:

> Já procurou saber na documentação sobre a classe Sound?
> lá tem até código pronto, dá pra acreditar?!
>
> Lembrando o bom senso da lista:
> - Pesquise na documentação.
> - Pesquise no histórico da lista (sobre som te várias coisas)
> - Nao resolveu, daí sim pede ajuda pra galera.
>
>
> []s
>
> Em 18 de outubro de 2010 10:45, wellingtonsousa <wellgsousa@gmail.com
> >escreveu:
>
> >
> >
> > Bom dia pessoal,
> >
> > alguém já desenvolveu algo que faz o Flex emitir um som?
> >
> > Ex: quando eu clicar no botão o sistema emite um som.
> >
> > Me ajudem ai.
> >
> > Valeu!!
> >
> >
>
>
>
> --
> Mario Junior
> http://blog.mariojunior.com/
> @mariojunior
>
>
> [As partes desta mensagem que não continham texto foram removidas]
>
>
>
> ------------------------------------
>
> Flex-Brasil - A maior lista sobre Adobe Flex do Brasil
> Regras da lista - http://docs.google.com/View?id=ajjv3tjg5jxf_21cqhpdhf5
> Todos os participantes tem os seguintes benefícios:
> + 35% de desconto em livros da O'Reilly ou Peachpit
>
> Site Oficial Flex : http://www.flex.org
> Visite nosso site : http://groups.adobe.com/groups/8024da86da/summary
> -------------
> Conheça a AIR-Brasil a comunidade sobre Adobe AIR
> Visite o site:http://groups.google.com/group/air-brasil
>
> Links do Yahoo! Grupos
>
>
>

--
Wellington Sousa
wellgsousa@gmail.com

[As partes desta mensagem que não continham texto foram removidas]

6.4.

Res: [flex-brasil] Som no Flex

Enviado por: "Rodrigo Nunes" rvndobrasil@yahoo.com.br   rvndobrasil

Seg, 18 de Out de 2010 1:52 pm



Wellington,

Acesse esses dois links abaixo. Já é o começo.

http://blog.mxml.com.br/manipulando-audio-no-flex

http://www.bit-101.com/blog/?p=2660

Para mais referências, sugiro pesquisar por flex sound, mp3 flex, audio flex.

Abraço

Rodrigo Nunes

________________________________
De: Wellington Gonçalves de Sousa <wellgsousa@gmail.com>
Para: flex-brasil@yahoogrupos.com.br
Enviadas: Segunda-feira, 18 de Outubro de 2010 11:33:49
Assunto: Re: [flex-brasil] Som no Flex

Com certeza não iria perder tempo escrevendo um e-mail para o grupo sem
antes procurar no google.
O problema é saber a palavra correta, com a sua dica de Sound o resto eu me
viro.

Obrigado.

Em 18 de outubro de 2010 10:04, Mário Júnior <juninhog12@gmail.com>escreveu:

> Já procurou saber na documentação sobre a classe Sound?
> lá tem até código pronto, dá pra acreditar?!
>
> Lembrando o bom senso da lista:
> - Pesquise na documentação.
> - Pesquise no histórico da lista (sobre som te várias coisas)
> - Nao resolveu, daí sim pede ajuda pra galera.
>
>
> []s
>
> Em 18 de outubro de 2010 10:45, wellingtonsousa <wellgsousa@gmail.com
> >escreveu:
>
> >
> >
> > Bom dia pessoal,
> >
> > alguém já desenvolveu algo que faz o Flex emitir um som?
> >
> > Ex: quando eu clicar no botão o sistema emite um som.
> >
> > Me ajudem ai.
> >
> > Valeu!!
> >
> >
>
>
>
> --
> Mario Junior
> http://blog.mariojunior.com/
> @mariojunior
>
>
> [As partes desta mensagem que não continham texto foram removidas]
>
>
>
> ------------------------------------
>
> Flex-Brasil - A maior lista sobre Adobe Flex do Brasil
> Regras da lista - http://docs.google.com/View?id=ajjv3tjg5jxf_21cqhpdhf5
> Todos os participantes tem os seguintes benefícios:
> + 35% de desconto em livros da O'Reilly ou Peachpit
>
> Site Oficial Flex : http://www.flex.org
> Visite nosso site : http://groups.adobe.com/groups/8024da86da/summary
> -------------
> Conheça a AIR-Brasil a comunidade sobre Adobe AIR
> Visite o site:http://groups.google.com/group/air-brasil
>
> Links do Yahoo! Grupos
>
>
>

--
Wellington Sousa
wellgsousa@gmail.com

[As partes desta mensagem que não continham texto foram removidas]

[As partes desta mensagem que não continham texto foram removidas]

6.5.

Re: Som no Flex

Enviado por: "Wellington Gonçalves de Sousa" wellgsousa@gmail.com   wellingtongsousa

Seg, 18 de Out de 2010 2:17 pm



Olá Rodrigo, ajudou sim.

Muito obrigado!!!

Em 18 de outubro de 2010 12:51, Rodrigo Nunes
<rvndobrasil@yahoo.com.br>escreveu:

> Wellington,
>
> Acesse esses dois links abaixo. Já é o começo.
>
> http://blog.mxml.com.br/manipulando-audio-no-flex
>
>
> http://www.bit-101.com/blog/?p=2660
>
> Para mais referências, sugiro pesquisar por flex sound, mp3 flex, audio
> flex.
>
> Abraço
>
>
> Rodrigo Nunes
>
>
>
>
> ________________________________
> De: Wellington Gonçalves de Sousa <wellgsousa@gmail.com>
> Para: flex-brasil@yahoogrupos.com.br
> Enviadas: Segunda-feira, 18 de Outubro de 2010 11:33:49
> Assunto: Re: [flex-brasil] Som no Flex
>
>
> Com certeza não iria perder tempo escrevendo um e-mail para o grupo sem
> antes procurar no google.
> O problema é saber a palavra correta, com a sua dica de Sound o resto eu me
> viro.
>
> Obrigado.
>
> Em 18 de outubro de 2010 10:04, Mário Júnior <juninhog12@gmail.com
> >escreveu:
>
> > Já procurou saber na documentação sobre a classe Sound?
> > lá tem até código pronto, dá pra acreditar?!
> >
> > Lembrando o bom senso da lista:
> > - Pesquise na documentação.
> > - Pesquise no histórico da lista (sobre som te várias coisas)
> > - Nao resolveu, daí sim pede ajuda pra galera.
> >
> >
> > []s
> >
> > Em 18 de outubro de 2010 10:45, wellingtonsousa <wellgsousa@gmail.com
> > >escreveu:
> >
> > >
> > >
> > > Bom dia pessoal,
> > >
> > > alguém já desenvolveu algo que faz o Flex emitir um som?
> > >
> > > Ex: quando eu clicar no botão o sistema emite um som.
> > >
> > > Me ajudem ai.
> > >
> > > Valeu!!
> > >
> > >
> >
> >
> >
> > --
> > Mario Junior
> > http://blog.mariojunior.com/
> > @mariojunior
> >
> >
> > [As partes desta mensagem que não continham texto foram removidas]
> >
> >
> >
> > ------------------------------------
> >
> > Flex-Brasil - A maior lista sobre Adobe Flex do Brasil
> > Regras da lista - http://docs.google.com/View?id=ajjv3tjg5jxf_21cqhpdhf5
> > Todos os participantes tem os seguintes benefícios:
> > + 35% de desconto em livros da O'Reilly ou Peachpit
> >
> > Site Oficial Flex : http://www.flex.org
> > Visite nosso site : http://groups.adobe.com/groups/8024da86da/summary
> > -------------
> > Conheça a AIR-Brasil a comunidade sobre Adobe AIR
> > Visite o site:http://groups.google.com/group/air-brasil
> >
> > Links do Yahoo! Grupos
> >
> >
> >
>
> --
> Wellington Sousa
> wellgsousa@gmail.com
>
> [As partes desta mensagem que não continham texto foram removidas]
>
>
>
>
>
>
>
> [As partes desta mensagem que não continham texto foram removidas]
>
>
>
> ------------------------------------
>
> Flex-Brasil - A maior lista sobre Adobe Flex do Brasil
> Regras da lista - http://docs.google.com/View?id=ajjv3tjg5jxf_21cqhpdhf5
> Todos os participantes tem os seguintes benefícios:
> + 35% de desconto em livros da O'Reilly ou Peachpit
>
> Site Oficial Flex : http://www.flex.org
> Visite nosso site : http://groups.adobe.com/groups/8024da86da/summary
> -------------
> Conheça a AIR-Brasil a comunidade sobre Adobe AIR
> Visite o site:http://groups.google.com/group/air-brasil
>
> Links do Yahoo! Grupos
>
>
>

--
Wellington Sousa
wellgsousa@gmail.com

[As partes desta mensagem que não continham texto foram removidas]

7.

RES: [flexdev] ERRO EM CHAMADA REMOTA

Enviado por: "roger.rayner" roger.rayner@totvs.com.br   rogerrayner2000

Seg, 18 de Out de 2010 11:08 am



Esse que é o problema Guilherme não dava erro nenhum só não trazia os
registros....

Ai quando eu fiz chamando nos results ai funcionou....

Por isso achei estranho....

Att.,

Roger Rayner

Analista de Sistemas

TOTVS BAHIA
( 55 (71) 9616 - 6876
+ <mailto:roger.rayner@totvs.com.br> roger.rayner@totvs.com.br

http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/datasul.j
pg
http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/totvs.jpg

"A Humildade é o alicerce dos Sábios... e o Orgulho a coluna dos Débeis!!!"

(Augusto Cury)

De: flexdev@googlegroups.com [mailto:flexdev@googlegroups.com] Em nome de
Guilherme Sjlender
Enviada em: segunda-feira, 18 de outubro de 2010 10:39
Para: flexdev@googlegroups.com
Cc: flex-brasil@yahoogrupos.com.br
Assunto: Re: [flexdev] ERRO EM CHAMADA REMOTA

Você chamava uma função que por sua vez chamada essas 3 funções remotas ou
chamava tudo no creationComplite?

Que tipo de erro estava dando?

Realmente seria estranho se acontecer algum erro relacionado diretamente com
as chamadas remotas pois as mesmas são assíncronas, bem, descreva o erro
para deixar mas clara a situação

Att.

Em 18 de outubro de 2010 09:35, roger.rayner <roger.rayner@totvs.com.br>
escreveu:

Bom dia,

Estou com um erro que já solucionei mas não entendi o porque que estava
ocorrendo se alguém puder me esclarecer.... no meu creationComplete de uma
tela eu faço várias chamadas ao Java conforme abaixo.

remoteBancoBean.getAllBancos();

remoteUsuarioBean.getAllUsuariosSistema();

remoteFasesBean.getAllFases();

Dessa forma da algum erro e as fases não mostram nem os usuários.....

Ai oq eu tive que fazer foi no result no getAllBancos chamar o
getAllUsuariosSistema e no result no getAllUsuariosSistema chamar o
getAllFases. Assim funcionou mas eu realmente não entendi o porque.

Se puderem me esclarecer.

Obrigado.

Att.,

Roger Rayner

Analista de Sistemas

TOTVS BAHIA
( 55 (71) 9616 - 6876
+ <mailto:roger.rayner@totvs.com.br> roger.rayner@totvs.com.br

http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/datasul.j
pg
http://www3.datasul.com.br/images/mkt/campanhas_web/logistica/2009/totvs.jpg

"A Humildade é o alicerce dos Sábios... e o Orgulho a coluna dos Débeis!!!"

(Augusto Cury)

--
Você recebeu esta mensagem porque está inscrito na lista "flexdev"
Para enviar uma mensagem, envie um e-mail para flexdev@googlegroups.com
Para sair da lista, envie um email em branco para
flexdev-unsubscribe@googlegroups.com
Mais opções estão disponíveis em http://groups.google.com/group/flexdev

--
Guilherme Sjlender - http://www.gflex.biz/
----------------------------------------------------------

Desenvolvedor Web - Flex3/Flex4/JavaEE

Desenvolvedor Desktop - AIR/JavaSE

Desenvolvedor Mobile - Android/JavaME

----------------------------------------------------------

--
Você recebeu esta mensagem porque está inscrito na lista "flexdev"
Para enviar uma mensagem, envie um e-mail para flexdev@googlegroups.com
Para sair da lista, envie um email em branco para
flexdev-unsubscribe@googlegroups.com
Mais opções estão disponíveis em http://groups.google.com/group/flexdev

[As partes desta mensagem que não continham texto foram removidas]

8.

FlexPrintJob mudar nome da impressão

Enviado por: "c4viny" c4viny@gmail.com   c4viny

Seg, 18 de Out de 2010 11:55 am



Olá pessoal,

Preciso mudar o nome de uma impressão enviada pelo FlexPrintJob.
Quando envio uma impressão aparece no gerenciador de impressões como Flash gostaria de mudar para por exemplo "Relatório XXXX", alguem sabe como?

9.

Para projeto em BH

Enviado por: "Hudson Yahoo" hudson_torion@yahoo.com.br   hudson_torion

Seg, 18 de Out de 2010 12:12 pm



Olá a todos da lista.

Estou iniciando um projeto em Flex 4 + PHP + AMFPHP + FPDF com isso precisando de freelance e se possível em BH ou região.

O projeto é simples sem complexidade, mas preciso montar uma equipe para isso.

Mais informações no e-mail hudson_torion@yahoo.com.br

[As partes desta mensagem que não continham texto foram removidas]

10.

Custom click em Componente Proprio

Enviado por: "Ricardo Cardoso" rickdukflex@ymail.com   rickdukflex@ymail.com

Seg, 18 de Out de 2010 2:23 pm



Criei um componentes Canvas que tem como child um InputText e o Button... Quando coloco esse canvas em minha aplicação quero criar um evento Click mas esse evento está ficando no click do canvas (logico)... Como faco para criar um evento Click que fica somente no botao que está dentro do Componente extendido do Canvas que eu criei...
Abraços

[As partes desta mensagem que não continham texto foram removidas]

Atividade nos últimos dias
Visite seu Grupo
Yahoo! Mail

Conecte-se ao mundo

Proteção anti-spam

Muito mais espaço

Yahoo! Barra

Instale grátis

Buscar sites na web

Checar seus e-mails .

Yahoo! Grupos

Crie seu próprio grupo

A melhor forma de comunicação

Precisa responder?

Para responder a uma mensagem no Resumo diário, clique em um dos links "Responder" na mensagem em questão.

Criar novo tópico | Visite seu Grupo na web
Flex-Brasil - A maior lista sobre Adobe Flex do Brasil
Regras da lista - http://docs.google.com/View?id=ajjv3tjg5jxf_21cqhpdhf5
Todos os participantes tem os seguintes benefícios:
+ 35% de desconto em livros da O'Reilly ou Peachpit

Site Oficial Flex : http://www.flex.org
Visite nosso site : http://groups.adobe.com/groups/8024da86da/summary
-------------
Conheça a AIR-Brasil a comunidade sobre Adobe AIR
Visite o site:http://groups.google.com/group/air-brasil

Está sozinho?Hoje pode ser seu último dia, crie seu perfil!

Mais de 215.000 Vagas de Emprego! Cadastre seu Cv por 7 dias GRÁTIS!

0 comentários: