Yep, add something like this to your JBoss run.bat: set JAVA_OPTS=%JAVA_OPTS% -server -Xms256m -Xmx768m -Mika _____ From: flexcoders@yahoogroups.com...
... RadioButtons constitue a boolean component in our software. And if there are several RadioButtonGroups with the same id in a form, focus transition with ...
the reason why Dan said you need to be carefull with creating delegates in your command's constructor is because the creation of remote services sometimes...
Hi, if it is always the case that you only have to ouput 1,2 or 3 input fields, you could create a custom component which would be initialized by your object...
Sorry to be bringing a question about the lowly brother of Flex here ;), but as usual I'm getting no response anywhere else and to be honest its got to be...
Hi all, Im using a List component to display the messages incoming from a "msg push server". The dataProvider of the List is bound to "some array variable". If...
Alberto Albericio Sal...
alberto@...
Sep 1, 2005 11:57 am
20836
You may try and do a theMsgList.reverse(); to reverse the list something like below. var theMsgList: Array; // your array variable function...
Hi, I want to create custom components extending original Flex components, is there any visual application for this purpose? For example, I want to create my...
Alberto Albericio Sal...
alberto@...
Sep 1, 2005 12:21 pm
20838
From the livedocs http://livedocs.macromedia.com/flex/15/asdocs_en/ ...
Hi, I need to add the item only once. I cant add the item then reverse the Array because my array is bound to a component and that would make the component to...
Alberto Albericio Sal...
alberto@...
Sep 1, 2005 12:25 pm
20840
That worked, I cant imagine why the unshift method was not doing the job. Thanks Clint. ... -- Alberto Albericio Salvador Aura S.A. Seguros Departamento...
Alberto Albericio Sal...
alberto@...
Sep 1, 2005 12:33 pm
20841
You should be able to make mxml components to accomplish what you describe...just design you component in mxml, & then refer to that component in you...
It's by design... the dataProvider property of list components only listen to the methods called on the DataProvider API. Not on the methods called on the...
I was jus reading the comments in the DataProvider API and it looks like there is an addItemAt method... (thought there was) here's the signature... ...
I'm yet to see one. You're going to have use ActionScript - or - you can use MXML but preference is ActionScript. Its not for the feint hearted but you'll...
Hi, I have a custom tab class that extends Canvas: *class DSTab extends Canvas... This class has a member that needs to be set at the time of construction: ...
I’ve been late getting my blog up, but I wrote a watered-down replacement version of the Flex proxy in PHP around the time of the $30k price jump. We ...
... I think ScrollPane.as was only for Flash (not Flex). I don't know beyond that, it can probably be answered by someone who worked on the Flash components. ...
Hey, I've come across a problem which I thought I'd ask before I spend the next 5 hours tearing my hair out :-) Situation: I've 2 datefield components, a start...
I will be Out of the Office Start Date: 8/31/2005. End Date: 9/22/2005. I will be out of the office between 09/01/2005 - 09/23/2005. If you need immediate...
VGrigoras@...
Sep 1, 2005 3:39 pm
20850
You can just subtract 1 from their date, like this: var today : Date = new Date(); alert(today.toString(), "Today", mx.controls.Alert.OK); var yesterday : Date...
It doesn't work because Array methods like push(), unshift(), and splice() can't trigger databinding or any kind of notification to other objects that the...
Why can't you follow the call to createTab() with newTab.dsID = "foo"? - Gordon ... From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On ...
Because newTab object you refer to instantiates children that depend on the dsID, so it's too late when you follow up with a call like that. However,...
... createTab returns a reference to the newly created child. You can set the dsID on it directly. ... If you want to set it at construction time, then you...
Ahh, maybe this is not so simple as I thought. I have been laboring under the misconception that the custom wrapper served from the web server would have the...
I need a datagrid column header texts to wrap over different lines for which I have created a headerRenderer. But now the problem is that applying the...