[flexcoders] Report in Excel format

2013-07-10 Thread TGI
Hi,

I generate my reports in Flex using AlivePDF.

Now I need to generate the same report in Excel format.

 

Does anyone solve such a problem? Any conversion tool or Excel library with
layout options?

 

Thanks in advance.

 

 



RES: [flexcoders] pdf in flash/flex alternative to flexpaper?

2013-02-15 Thread TGI
I’m looking for a solution like this. 

If someone get it, please tell me.

 

Thanks.

 

De: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] Em nome
de grimmwerks
Enviada em: sexta-feira, 15 de fevereiro de 2013 13:49
Para: flexcoders@yahoogroups.com
Assunto: [flexcoders] pdf in flash/flex alternative to flexpaper?

 

  

Does anyone have any recommended ways of bringing pdfs into a flash
interface where the user cannot get to the actual pdf file?

 

 

 

Garry Schafer

grimmwerks

gr...@grimmwerks.com

portfolio: www.grimmwerks.com/

 

 

 





[flexcoders] Image Sizes

2012-06-28 Thread TGI
I need to develop an aplication that get pictures of human faces.

Take a Picture on a tablet is ok, the problem is to get the real size of the
face (width and height in real world).

How can I get this?

 

 



RES: [flexcoders] Re: code out of sync with flash builder

2011-11-09 Thread TGI
I had the same problem some time ago.

I remember that I erase some files and got things fixed. 

See if help:

 

cd c:\users\\Adobe Flash Builder 4.5

del *.cache /s

 

 

 

De: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] Em nome
de Wouter Schreuders
Enviada em: quarta-feira, 9 de novembro de 2011 05:30
Para: flexcoders@yahoogroups.com
Assunto: Re: [flexcoders] Re: code out of sync with flash builder

 

  

well I am running windows 7, but I sure as hell am not going back to XP :D

 

Did you have to go through this process every time you debug? or only when
encountering the problem and then it would solve it for a while?

On 8 November 2011 16:40, Hans Goeckel  wrote:

  

I've had a similar problem.  Flash Builder shows me the current source when
debugging, but when you try to step through it, it is obviously running a
previous version of the source.  What fixed it for me is to switch to
another project in the workspace, compile it, then return to the main
project, and recompile the modules that were screwing up.  Hope that fixes
it for you too.

 

Interestingly this problem seems to only occur on my new Windows 7 system
with the latest Java.  My older XP system would crash when running out of
Java heap space, but would never go out of sync. 

 



<><>

[flexcoders] AdvancedDataGrid

2010-04-08 Thread TGI
I have an AdvancedDataGrid where I add columns dynamically, as the code show
below:

 

var colsArray:Array = [];

var columnGroup:AdvancedDataGridColumnGroup;

var column:AdvancedDataGridColumn;

 

columnGroup = new AdvancedDataGridColumnGroup();

columnGroup.headerText = “Group 1”;

columnGroup.children = [];

colsArray.push(columnGroup);



name = "myColumn”;

column = new AdvancedDataGridColumn(name);

column.headerText = "Column 1";

column.dataField = "@"+name;

column.width = 150;

columnGroup.children.push(column);

 

The code works fine. Now I need to do the following tasks:

 

1)  Align the column right. The AdvancedDataGridColumn doesn’t show a
“TextAlign” property;

2)  Add a “labelFunction”. The AdvancedDataGridColumn has a “labelFunction”
but I isn’t working;

3)  I need to catch an event when I click on the Column Group. In the event
I need to get the text of the Column Group.

 

Tanks for your help.

 



[flexcoders] AdvancedDataGrid read cells

2010-04-05 Thread TGI
In my application there is an AdvancedDataGrid where I insert rows and
columns dynamically.

My question seems simple but is driving me crazy: I need to read each cell
of my AdvancedDataGrid (scan the AdvancedDataGrid).

Remember that the structure is dynamic and I don’t know in advance how many
columns and rows that I have.

 

 




 

 

Jairo França
  ja...@tgi.inf.br


Tecnologia e Gestão da Informação
Av. do Contorno, nº 6.777 sl 814
Funcionários - 30.110-043
Belo Horizonte – MG
Tel: (31) 3297-1144
Cel: (31) 8851-6413

 

 

<>

[flexcoders] AdvancedDataGrid problem

2010-04-01 Thread TGI
I have an AdvancedDataGrid with 3 columns where I insert columns dynamically
(after this 3 columns).

After adding the columns I loop through cells to fill them.

The code to insert the columns works fine.

When I loop through the Grid to fill the cells after add the columns it
finds only the first 3 columns.

If I put a button to fill the cells it works fine. 

What’s going on?

 

Thanks for your help.