[flexcoders] Re: Help With AlivePDF

2008-01-21 Thread fmotagarcia
Hi, FlexReport is not meant to be a replacement for alivePDF (in fact the built-in pdf generation is alivePDF). FlexReport main intent is to ease the creation of templates, reducing the amount of code needed to a minimum, and address all the issues concerning printing in flash. I could have exten

Re: [flexcoders] Cannot access a property or method of a null object reference

2008-01-01 Thread fmotagarcia
you forgot to instantiate the object. Change: var test:testClass; to var test:testClass = new testClass(); and it should work. Regards, Frederico Garcia On Tue, 01 Jan 2008 14:45:00 -0500, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > This compiles but when you hit the test button, it sa

Re: [flexcoders] Re: Solutions for provide a secure access to a Web-Service using Flex

2007-12-24 Thread fmotagarcia
you kept me thinking about this all day. What I suggested early was basically what you're thinking on doing, but I believe I now have some improvements. 1- The client communicates with a web-service requesting access 2- The server initiates a session, returning a request for validation (a string,

[flexcoders] Re: Solutions for provide a secure access to a Web-Service using Flex

2007-12-21 Thread fmotagarcia
Hi, maybe you could use some kind of handshake protocol. There are plenty key based encryption algorithms. On the request you could encrypt the username and on server side decrypt and check if the username was valid. Still vulnerable to brute force attacks, but enough for most cases. --- In flexc

[flexcoders] Re: DataGrid question

2007-12-21 Thread fmotagarcia
maybe the easy way is changing the style. Just make your highlight colors the same has the alternate colors. --- In flexcoders@yahoogroups.com, "djhatrick" <[EMAIL PROTECTED]> wrote: > > I asked a while back and didn't see an example of how to override the > method that selects an item in a datagr