Stacy : "I've built RIAs in flash since mx beta. Flex development blows the doors off in regards to sheer development speed and in my opinion, look and ...
** Flex is 100% dead on. Much better than working with AS2 directly and the Flash IDE. I wish this ** came out about a year ago. Don't agree. Again it...
I have the following Requirement: There ia a Panel whcich contains a ControlBar which is dynamically populated with Buttons. Inside the panel a Tab Navigator...
Hi, "Is this implying that Flex will eventually be going head-to-head with Avalon? " Not really. I am sure there will be use cases where the two are compared...
David Mendels
dmendels@...
Jul 1, 2004 11:17 am
1626
Here's a simple example that you can build on. app.mxml <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> ...
Is there a way to wrap text in a datagrid? Currently I have a String that is longer then the length of my column width and the string gets truncated. I want...
Is there a way to wrap the column heading in a datagrid? I have a multiple word heading that is wider than I need the column. Such as Order Qty. I want the...
OK the following works fine when using onFocusOut, now what if I want to add a button at the end of the reapeater(outside the loop) and read all of the values...
Rich Tretola
rtretola@...
Jul 1, 2004 3:58 pm
1631
Does anyone know if Flex includes a license to serve mp3 like the Flash Communication Server provides?...
Hello, Bianca. This is what I think you will need to do: Create a variable of type Array: var aAllData:Array = new Array();. Create a callback function that...
Hi Kelly! There is currently no built-in way to wrap text in a DataGrid. The workarounds are making your own cellrenderer or you can check out the Expansion in...
I have an asp.net web service I was previously accessing through Flash, but trying to use it for flex I can't get past the "URL is not in the proxy's...
It's not too hard to create a cellrenderer for this, though getting it to work right and nice is harder. Also, all rows in a datagrid must currently be the...
That's not a 'named' WebService. Try putting URLs in the unnamed section. -e ... From: Wade Picket [mailto:wadeontheweb@...] Sent: Thursday, July 01,...
Elliot Winard
ewinard@...
Jul 1, 2004 6:52 pm
1637
Since you've specified you web service as a named service isn flex-config.xml, you should access as a named service in mxml. <mx:WebService id="dm"...
Hi Mark - This functionality is something we're working on making easier in future releases, however currently you have 2 options. One is to create a custom...
Deepa Subramaniam
dsubrama@...
Jul 1, 2004 6:57 pm
1639
Is there a way to programmatically enable/disable the gathering of profile data? What I'm looking for is the ability to profile just a specific portion of the...
_global.profile(true) _global.profile(false). Check out the profiling chapter in the docs, it should talk about setting up mm.cfg correctly and using this...
<mx:Script> function getTexts() : Array { var out : Array = new Array(); for (var i = 0; I < ti.length; ++i) { out.push(ti[i].text); } return out; } ...
Thanks-that worked except for one thing; the setToPointer function in the application no longer recieves the event object as an argument. here is what i did: ...
I want to do a simple MP3 player using the MediaDisplay (md_MP3) and MediaController (mc_MP3), as well as a click button (btn) and <mx:List> (lst_MP3) to load...
Hi all, Although it is quite evident that this discussion group is around coding (hence "flexcoders") I just wanted to convey my opinions on the flex pricing ...
maelstrom@...
Jul 2, 2004 5:24 am
1647
Hi, I am returning a Person object from a createPerson method on a personfacade.cfc ( <cfreturn getManager().createPerson(ARGUMENTS.data).getInstanceMemento()...
I haven't a clue as to what MM's plans are but I'd be willing to bet the intent was to purposely limit the scope of the 1.0 release to maintain focus. Then...
Ok, I have a similar but I think different problem: I have a popup window that comes up automatically when the application starts (a login window). I want to...
Pat, ... A general technique that we are using, is to have a component, State.mxml, in which we place all our application state; we instantiate State.mxml from...