[flexcoders] Browser detection script

2006-08-26 Thread lemuel_gulliver01
Hi Using the generate HTML file found within the flex project (inside the bin folder) I can view my Flex app. Good. now when i add a asp.net page directive on that very same html page, the swf fails to display in full size (thought it does display partially).I am trying to maintain a full 100%

Re: [flexcoders] flex-config.xml in Flexbuilder

2006-08-26 Thread Michael Schmalle
Or if you actually want the config file ;-)?xml version=1.0?flex-config xmlns=http://www.adobe.com/2006/flex-config compiler keep-generated-actionscripttrue/keep-generated-actionscript theme tags, etc /compiler/flex-config If you have the main app called, MyLittleApp.mxml, name this file

[flexcoders] success: flex data services linking to coldfusion - both as instances in jrun

2006-08-26 Thread grae_hall
after a lot of stuffing about today, Patrick and I managed to get FDS running as an instance of jrun, configured apache, and got FDS talking to coldfusion's event gateway, which did ran logic on the consumer/producer messages, and supplied the result. We couldn't find much in the way of

[flexcoders] Re: Coldfusion Flex Beginner

2006-08-26 Thread Renaun Erickson
Have your ColdFusion WebService return an Array of Structs. In you Flex code on the result event handler for the WebService operation take the event.result and will a line like this create your ArrayCollection. myArrayCollection = event.result as ArrayCollection; Then bind the myArrayCollection

Re: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-26 Thread ryanm
Speaking of that - I've always wondered, is the gzip decompression handled by the browser, or by the Flash player? I've assumed it was the browser (HTTP Compression, right?). That being the case, aren't there some browsers which don't have gzip support, or are they all dead? It's

Re: [Junk E-Mail - LOW] [flexcoders] Re: Choice of backend systems - which provides

2006-08-26 Thread ryanm
An architect I closely work with always says: ‘Each extra component introduces complexity’. I think that is true. Each component ‘in the middle’ makes a system harder to understand, debug, maintain, deploy and requires an additional level of competence. Unless it has true added value, one

[flexcoders] States and Components

2006-08-26 Thread Faisal Abid
Okay I want to create a new state on the fly, which i can already, but i want to make it so that when my panel is dragged on the first state, then i drag it some more on the second state, when i go back to the first state i want my panel to only be dragged as much as i did in the first state.

[flexcoders] Refresh Tree from HTTPService

2006-08-26 Thread qnotemedia
I have an HTTPService that imports a multi-level xml file, and a tree with dataprovider={httpservice.lastResult}. How can I refresh the tree when the XML data changes? I've tried just rerunning httpservice.send() via a resulthandler or a refresh button but neither seems to work. The changed

[flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Stefan Schmalhaus
I have a view component with a creationComplete function. This component is part of another view that contains different states. When the first component is created for the first time the creationComplete function is executed. Later when I switch back to this state the function isn't executed

RE: [Junk E-Mail - LOW] [flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Shannon Hicks
Try the "show" event instead or in addition to creationComplete Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stefan SchmalhausSent: Saturday, August 26, 2006 3:33 PMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] Retriggering a

Re: [flexcoders] POP3 by Socket

2006-08-26 Thread Rogerio Gonzalez
Hi Folks,I have one doubt yet:When the pop3 server is pop3.domain.com and I have only acess to the www.domain.com or domain.com.That means: I will have http://www.domain.com/crossdomain.xmlIt will work when I try to connect to pop3.domain.com ?Meaning, again, subdomains are valid for the

[flexcoders] Best Practice Question/Cairngorm Framework/VOs

2006-08-26 Thread lostinrecursion
Hi all, In a current application I am building, the administrative application has a screen (We'll call it Products) with no less than 30 various components gathering data to be fed to a CFC and consequently to a SQL Server database. I easily can load the options from the server and bind them to

Re: [Junk E-Mail - LOW] [flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote: Try the show event instead or in addition to creationComplete show doesn't work. LiveDocs on show: Dispatched when an object's state changes from invisible to visible. -- Flexcoders Mailing List FAQ:

Re: [Junk E-Mail - LOW] [flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, Shannon Hicks [EMAIL PROTECTED] wrote: Try the show event instead or in addition to creationComplete Problem solved. The enterState event did the trick. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] working with secure RTMP

2006-08-26 Thread Dimitrios Gianninas
Hi, Wondering ifanyone can help. Ok, I have my FDS destination using RTMP and I want to make it use secure RTMP. So here is the steps I have followed: 1) created the keys using the following command so that it can run locally: keytool -genkey -alias flex2cert -dname "CN=localhost,

RE: [Junk E-Mail - LOW] [flexcoders] Retriggering a creationComplete function?

2006-08-26 Thread Darren Houle
I know it's more work, but... Instead of using creationComplete=someFunction() in your first view, take the button/widget or whatever that causes the app to switch over to the first view and add your someFunction() to that button/widget's click= event. In other words call sommeFunction()

[flexcoders] TileList columnWidth = widest item?

2006-08-26 Thread Tom Lee
Hi guys, By default, the width of a column in a TileList component is equal to the width of the first item in that column. This is weird, because if any subsequent item is wider, it gets clipped. Does anyone know of a way to make the column width fit the widest item? Thanks!!

[flexcoders] Re: Best Practice Question/Cairngorm Framework/VOs

2006-08-26 Thread lostinrecursion
It's so simple, I can't believe I didn't see it before. One event and One command can do the work of updating the ValueObject for my Product. All the event has to carry is the property name it will update and the value. The format of the value is known to the Model and doesn't need to be known to