Re: [flexcoders] optimize swf generated by mxmlc module

2007-09-06 Thread Steve Hagenlock
Flex is probably not the right tool for that job. You should be looking at something like Ming (php module) or the MTASC open source project for compiling Flash. I'm sure there are several other options if you look around. When you use the Flex compilers, you get the Flex framework code as

Re: [flexcoders] Re: optimize swf generated by mxmlc module

2007-09-06 Thread Steve Hagenlock
@yahoogroups.com, Steve Hagenlock [EMAIL PROTECTED] wrote: Flex is probably not the right tool for that job. You should be looking at something like Ming (php module) or the MTASC open source project for compiling Flash. I'm sure there are several other options if you look

[flexcoders] Digest or Basic+HTTPS auth for HTTPService WITHOUT LCDS/FDS

2007-08-29 Thread Steve Hagenlock
Hello, I'm trying to setup a scenario where calls to an HTTPService can be authenticated using Digest or Basic authentication where the backend is a JEE container managed security. After much research on the web and on this list I've decided to simply ask the question - is robust security

[flexcoders] Flex and Subversion - a project organization for review

2007-08-28 Thread Steve Hagenlock
I've been following the Flex/Subversion threads with interest. I'd like to propose a method which keeps all project files out of subversion repositories without the need for manually selecting or deselecting files for inclusion. Consider the scenario where you have a Subversion checked out

Re: [flexcoders] Whatever happened to Peter Ent's scrolling text ticker?

2007-03-24 Thread Steve Hagenlock
http://weblogs.macromedia.com/pent/archives/flex/ticker/tickerText.zip simonjpalmer wrote: Anyone know what became of it? The markme.com code link on his blog leads nowhere. Anyone have the code they could share with me? http://weblogs.macromedia.com/pent/archives/2004/12/ticker.cfm

Re: [flexcoders] icons

2007-03-24 Thread Steve Hagenlock
http://www.iconbase.com/ There are many others... you can purchase icon libraries from places like this. -Steve Kevin wrote: Where do people go to get small icons for use in Flex apps? I need the little things like arrows check marks. For example I would like to display a check mark

Re: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Steve Hagenlock
I've been thinking about asking the same question, all of the samples out there seem to embed the actionscript in MXML, however the code behind scenario seems more like a best practice approach. Personally, I use code behind everywhere except for procedural initialization code in my

[flexcoders] strategy for Composite component as itemRenderer in DataGrid or List

2006-12-20 Thread Steve Hagenlock
Hello, I'm trying to create a strategy for creating a summary/detail editing interface using either mx.List or mx.DataGrid (with one column). I've created a composite component, which uses two States, a summary (with a text label and a checkbox) and a detail (based on summary with some other

Re: [flexcoders] Flex project with apache server setup?

2006-12-17 Thread Steve Hagenlock
I'm not so sure this is true. If you are using the Flex Data Services then yes, you need a JE container, however if you are not, ANY webserver can serve up a Flex project. I've never used a JE container with Flex, just been using Apache. -Steve Dimitrios Gianninas wrote: You cant do it with

Re: [flexcoders] Apollo

2006-12-14 Thread Steve Hagenlock
Until Apollo is real and proves to have the features you are requesting (c++ extensibility??), the profile of your project says Director all over it. At least if you are trying to keep within the Adobe product line for software development. A Director shell, that is, which uses an embedded

Re: [flexcoders] removeNamespace() and the default namespace in XML

2006-12-05 Thread Steve Hagenlock
Hi Peter, Peter wrote: I've found that removeNamespace() doesn't work if there are existing attributes or elements using that namespace I suppose that every element in the file uses the namespace, since it is the default namespace, ie: xmlns=http://path.to.com/someplace; Here's how I'm