6
votes
1answer
116 views
How to create an overlay in advanved grid in Flex
Hi:
I'd like to know how to create an "overlay" in Flex's Advanced Grid? See the sample here
http://tinypic.com/r/4ieccm/4
4
votes
5answers
180 views
How to protect access=”remote” funcitons in CFCs from snoopers?
One of the great features of CFCs is the ability to reuse the code for both a straight .cfm page and for Flex apps.
One such app that I devleoped uses Flex for it's charting capabilities and needs …
4
votes
11answers
1k views
Flash vs. Flex
I've tried looking everywhere for a concise list of the advantages and disadvantages of using Flex vs. Flash.
Coming from a programming background, I absolutely love Flex. It's easy to pick up, and …
4
votes
3answers
595 views
How do teams use Flex Builder Pro to develop large applications?
We develop applications for the Flash platform, which have LOTS of run-time loaded assets (graphics, data, audio, code-libraries, etc.) Those assets are logically organized within project folders. …
4
votes
3answers
334 views
Flash: AMF3 with reference tables?
AMF3 specification defines use of so called "reference tables" (see Section 2.2 of this specification).
I implemented this behavior in my AMF3 encoder/decoder I developed in Erlang, but being not …
4
votes
2answers
870 views
How does one define a default style for a custom Flex component?
I'm creating a new Flex component (Flex 3). I'd like it to have a default style. Is there a naming convention or something for my .cs file to make it the default style? Am I missing something?
3
votes
2answers
64 views
Why does the Adobe Alchemy Tool create faster running flash byte code than the flex compiler?
I have seen a few blog entries on this and have had a discussion or two with my team mates but I would like to see what the stack overflow community thinks.
So why does the Adobe Alchemy Tool create …
3
votes
1answer
304 views
How can I automate the building of a Flex component library?
I would like to build a flex library project automatically instead of the current process, which involves one of our developers compiling it on his machine and then us checking in the resulting .swc …
3
votes
2answers
273 views
Does dispatching an event interrupt a function?
Let's say function foo() is executing. Suppose that an external event occurs, for which you have a handler. Will function foo() be interrupted so that the event handler can be executed? What is the …
3
votes
3answers
154 views
Inspect UI elements in Flex
Is there any tool available for Flex applications that acts similar to Web Developer or Firebug toolbar to inspect UI elements?
Basically in a complex hierarchy of UI controls allowing you to browse …
3
votes
1answer
643 views
Creating bindable classes from WSDL for Flex 3
Two of our apps are web applications with a Flex 3 front end and a SOAP-style WCF back end. To communicate with the back end, I generate web service client classes through Flex Builder 3. …
3
votes
2answers
822 views
In Flex, how do I create, populate, and display a bitmap?
Starting from a totally empty MXML application:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" >
…
3
votes
3answers
168 views
TextField() - how to prevent mouse select
How can I prevent mouse selecting (and moving caret) with Editable TextField(),
this one does not seem to fully work when SELECTING text, but it prevents clicking. I want to keep cursor in place where …
3
votes
2answers
301 views
What are the recommended prefix naming conventions for components in Flex 3?
I'm looking for a standard way to name components in my Flex application. For example, all TextFields begin with "txt" in their ID attribute (i.e., "txtFirstName"). Rather than re-invent the wheel, …
3
votes
3answers
1k views
How do you programmatically move the caret of a Flex TextArea to the end?
I'm trying to move the caret in a Flex TextArea to the end after appending some text from my code. I've looked through the reference documentation for TextArea and its underlying TextField but it …
