RE: [flexcoders] Collection_Change type Event for a ValueObject??

2007-01-22 Thread Dimitrios Gianninas
If you have FDS, then use the dataService.commitRequired property, If not , then yes on the change event of every textinput field, set a variable to TRUE and then check it when the user leaves the form to let him know he might need to save. Dimitrios Gianninas RIA Developer Optimal Payments

RE: [flexcoders] Passing special characters to FLEX (Encryption/Decryption?)

2007-01-22 Thread Dimitrios Gianninas
You will have to do it on the Java side, or whatever server size technology you are using. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Tina Scurlock Sent: Mon 1/22/2007 1:46 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Flex Example Sites online please

2007-01-24 Thread Dimitrios Gianninas
take a look at this link, there is more than you think: *http://www.flexdaddy.info/2007/01/04/the-biggest-flex-apps-of-2006/ Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Cairngorm - Question on using ResultHandler

2007-01-28 Thread Dimitrios Gianninas
You are doing things the right way. If after you login you want to do some more, look at the SequenceCommand. You would basically add a executeNextCommand() statement after your model.workflowState statement. Dimitrios Gianninas RIA Developer Optimal Payments Inc

RE: [flexcoders] Organize imports

2007-01-28 Thread Dimitrios Gianninas
Right-click anywhere in the files, select Source and then Organize Imports Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Crowe Sent: Sunday, January 28, 2007 8:33 AM

RE: [flexcoders] Re: Cairngorm - Question on using ResultHandler

2007-01-29 Thread Dimitrios Gianninas
Well if your remote call is returning an object, then u do event.result ... if its returning a list of objects and u need to access the first, second, etc.. element then do event.result[0]. If its a map, then do event.result[keyname] Dimitrios Gianninas RIA Developer Optimal Payments Inc

RE: [flexcoders] Viewstack Navigation Reference problem

2007-01-29 Thread Dimitrios Gianninas
1) You can broadcast an event that the parent will listen too and then switch the view 2) change the value of variable in a global model that is bound to the selectedIndex property of the viewstack Dimitrios Gianninas RIA Developer Optimal Payments Inc

RE: [flexcoders] Modules: mxml and as are compiled in different ways?

2007-01-29 Thread Dimitrios Gianninas
In AS you cant extend Module, you have to extend ModuleBase class. Its in the docs, it explains both ways of doing it. Dimitrios Gianninas RIA Developer Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lorenzo Benvenuti

RE: [flexcoders] Re: Flex applications look like Fisher-Price toys

2007-02-01 Thread Dimitrios Gianninas
Absolutly awesome, great work! Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Dunphy Sent: Wednesday, January 31, 2007 10:26 AM To: flexcoders@yahoogroups.com Subject: Re

RE: [flexcoders] tracking a user session

2007-02-01 Thread Dimitrios Gianninas
the ModelLocator is a singleton you can access from anywhere in the app to display user info or check his/her roles to see if he/she has access to something or not. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] How to create a Windows taskbar notification?

2007-02-01 Thread Dimitrios Gianninas
Wait for Apollo :) Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rachel Maxim Sent: Wednesday, January 31, 2007 5:13 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How

RE: [flexcoders] Non-Clustered CPU, Clustered, Distributed and Mirroring Environment????

2007-02-02 Thread Dimitrios Gianninas
Your best answer would be to contact an Adobe Sales Rep. The license is per CPU, so you could end up paying in all cases depending on how many CPUs your servers have. You might not end up paying in case #1 if it is a single CPU server (thats FDS Express). Dimitrios Gianninas RIA Developer

RE: [flexcoders] Re: Modules and Cairngorm - Solution... I think

2007-02-02 Thread Dimitrios Gianninas
I vote for the change, I ran into this issue myself. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alimcleod Sent: Friday, February 02, 2007 12:58 PM To: flexcoders

RE: [flexcoders] Flex 2 code to reload the entire application?

2007-02-04 Thread Dimitrios Gianninas
Depends on how you have your app built... if all your data is bound to some model object, then you can just do: ModelLocator.myData = new MyDataVO() and the view should reset itself. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders

RE: [flexcoders] Resources to Flex Application Architecture articles?

2007-02-07 Thread Dimitrios Gianninas
. That doesn't come right away, it took me a while but man is it useful and easy. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Private Romeo Sent: Wed 2/7/2007 9:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Resources

RE: [flexcoders] Re: any interest in an alternative to QTP to automate Flex apps?

2007-02-07 Thread Dimitrios Gianninas
different environments for testing. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of brian.knorr Sent: Wed 2/7/2007 7:01 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: any interest in an alternative to QTP to automate

RE: [flexcoders] Re: any interest in an alternative to QTP to automate Flex apps?

2007-02-07 Thread Dimitrios Gianninas
: MasterCard,LabelOperator(comboBoxOperator.find({id:myLabel})).text); but yes, very cool indeed. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of brian.knorr Sent: Wed 2/7/2007 7:01 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Resources to Flex Application Architecture articles?

2007-02-08 Thread Dimitrios Gianninas
I dont use code-behind so someone else is probably best suited to reply to you. But from what I know, you have to re-declare all your components in the write-behind class so I consider that overhead and I dont think there is a way around it. Dimitrios Gianninas RIA Developer Optimal Payments

RE: [flexcoders] FDS commitRequired and 2 way binding

2007-02-08 Thread Dimitrios Gianninas
Actually I think that is correct behaviour, once a user starts to change any data a commit is required. Flex can't start looking at the original object and doing comparisons all the time, that would not be very efficient, especially if your object graph is big. Dimitrios Gianninas RIA

RE: [flexcoders] Storing a Singleton in a Clientside Shared Object

2007-02-08 Thread Dimitrios Gianninas
just do: User u = User.getInstance(); u = so.data.user; Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Webdevotion Sent: Thursday, February 08, 2007 10:25 AM To: flexcoders

RE: [flexcoders] more news on our upcoming marketing efforts

2007-02-09 Thread Dimitrios Gianninas
think this is something that needs to be work on, cause people are building some useful components, but they post them on their blogs and such, so if you don't read blogs everyday and write them down, you are going to loose track of them. So maybe something can be done in that regard. Dimitrios

RE: [flexcoders] runtime configuration

2007-02-14 Thread Dimitrios Gianninas
Put all the config you want in an XML file and then use the mx:HttpService component to load the XML file at any time. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Grant

RE: [flexcoders] Flex app doesn't launch in regular flash player 9

2007-02-14 Thread Dimitrios Gianninas
that normally happens when its Player 8 and u dont have express install, u sure its Flash 9? Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Grant Davies Sent: Wednesday

RE: [flexcoders] runtime configuration

2007-02-14 Thread Dimitrios Gianninas
the wheel, not as I see it. myconfig prop1value1/prop1 prop2value2/prop2 /myconfig mx:HttpService id=hs source=conf/myconfig.xml... / ... var someProp:String = hs.prop1; All done! Dimitrios Gianninas RIA Developer Optimal Payments Inc. From

RE: [flexcoders] Flex app doesn't launch in regular flash player 9

2007-02-14 Thread Dimitrios Gianninas
with express install they would get a prompt to upgrade to 9... how did u build it? Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Grant Davies Sent: Wednesday, February 14

RE: [flexcoders] Flex app doesn't launch in regular flash player 9

2007-02-14 Thread Dimitrios Gianninas
so u went to the exact same url with your debug player and it works? so does this means you build it with FB? or command-line ? so u dont have debug flag turned on when u build? what are your build parameters? Dimitrios Gianninas RIA Developer Optimal Payments Inc

RE: [flexcoders] Flex ant tasks

2007-02-14 Thread Dimitrios Gianninas
had this problem a month ago :) what happening is that in your bin folder there is a jvm.config file and in that file it specifies where the JDK is, its probably pointing to a wrong location. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From

RE: [flexcoders] Flex ant tasks

2007-02-14 Thread Dimitrios Gianninas
oh thats different... should jut be your JAVA_HOME that makes a difference I was talking about the flex sdk/bin folder Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas

RE: [flexcoders] Cairngorm: ArrayCollection(ValuObject)-Event on changing data?

2007-02-14 Thread Dimitrios Gianninas
it wont get called when u create a new instance... it will get called when call addItem(), removeItem(), etc... Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of martywolf11 Sent

RE: [flexcoders] Re: Cairngorm: ArrayCollection(ValuObject)-Event on changing data?

2007-02-14 Thread Dimitrios Gianninas
show a sample of what you are doing it should look like: var a:ArrayCollection = new ArrayCollection(); a.addEventListener( ... ); a.addItem( bla ); that should generate an event Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders

RE: [flexcoders] Re: Search algorithm for objects in memory

2007-02-15 Thread Dimitrios Gianninas
Why not simply use the filterFunction property of the ArrayCollection class and see if that does the trick for you. I use it for a similar purpose and it search a list of 2000+ object and returns the filtered results in a microsecond, really fast, love it. Dimitrios Gianninas RIA Developer

RE: [flexcoders] Why do linked resources have to reside in project root directory?

2007-02-16 Thread Dimitrios Gianninas
yes I hate this too, I submitted a FB enchancement, do the same so it will get included into the next release, hopefully. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom

RE: [flexcoders] preloader or viewstate while charts initiailize

2007-02-16 Thread Dimitrios Gianninas
I've created a little StatusWindow component (that is modal) that I use to relay any kind of message to a user. So it basically appears while a remote operation is occuring, but I guess u can use it whenever u want. So u can do similar. Dimitrios Gianninas Optimal Payments Inc

RE: [flexcoders] observing a model change in cairngorm

2007-02-18 Thread Dimitrios Gianninas
{ ... do stuff here } /mx:Script ... view stuff here ... /mx:Box Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Grant Davies Sent: Sat 2/17/2007 5:57 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] observing

RE: [flexcoders] cairngorm event that will affect all models, where to put the logic.

2007-02-18 Thread Dimitrios Gianninas
When the date changes, fire off the same event that will execute the command that got you data in the first place, should be simple. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Grant Davies Sent: Sat 2/17/2007 10:34 PM

RE: [flexcoders] observing a model change in cairngorm

2007-02-18 Thread Dimitrios Gianninas
Yes it should assuming that the variable of the entire class has the [Bindable] metadata tag specified. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Grant Davies Sent: Sun 2/18/2007 11:30 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] cairngorm event that will affect all models, where to put the logic.

2007-02-18 Thread Dimitrios Gianninas
the part of the app that holds the date control... Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Grant Davies Sent: Sun 2/18/2007 11:42 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] cairngorm event

RE: [flexcoders] cairngorm event that will affect all models, where to put the logic.

2007-02-19 Thread Dimitrios Gianninas
Exactly :) Dimitrios Gianninas RIA Developer Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Monday, February 19, 2007 6:04 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] cairngorm event

RE: [flexcoders] Re: Space between rows in the Datagrid

2007-02-19 Thread Dimitrios Gianninas
No expert, but you may have to extend the DataGrid and code it yourself. One way to to do it is to set the rowHeight value to 35 and then that will give u space... Not sure however if this is the effect you want. Dimitrios Gianninas RIA Developer Optimal Payments Inc. -Original Message

[flexcoders] overriding DataGridAutomationImpl

2007-02-19 Thread Dimitrios Gianninas
Anyone extend the DataGridAutomationImpl class already? Trying to override some of its methods in order to see if I can change the way it indentifies rows, but I cant see my trace statements, so h... Dimitrios Gianninas RIA Developer Optimal Payments Inc. -- WARNING

RE: [flexcoders] Datagrid question

2007-02-19 Thread Dimitrios Gianninas
You will have to code an ActionScript funtion/class to do this filtering for you and then pass the data to the grid for display. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] FW: Cold Fusion/Cairngorm VO advice

2007-02-20 Thread Dimitrios Gianninas
Forwarding... Dimitrios Gianninas RIA Developer Optimal Payments Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Gasienica Sent: Tuesday, February 20, 2007 5:07 AM To: [EMAIL PROTECTED] Subject: Re: Cold Fusion/Cairngorm VO advice Actually

RE: [flexcoders] Re: Global Filter Functions

2007-02-23 Thread Dimitrios Gianninas
I use the same method Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Thursday, February 22, 2007 4:07 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] FDS and Cairngorm / Individual Item Updates

2007-02-23 Thread Dimitrios Gianninas
init the DS only once in the model, so u always have a reference to it so in GetAllProductsCommand: ds.fill(model.products) in LoadProductCommad: product = Product(myDataGrid.selectedItem); ... now the Ui edits the product object so in SaveProductCommand: ds.commit(); Dimitrios

RE: [flexcoders] ResourceBundle

2007-02-23 Thread Dimitrios Gianninas
u hve to specify an extra source folder as the path to the bundle: -source-path=WEB-INF/flex/locale/en_US or whatever you path may be Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

RE: [flexcoders] Re: FDS and Cairngorm / Individual Item Updates

2007-02-23 Thread Dimitrios Gianninas
the SaveCommand and tell the DS to commit() all changes to the server. Thats the way I do it and my SaveCommand does actually a lot more than that based on failure or success. Its a bit different, yes, but its better because so much happens automatically so let Flex do its magic :) Dimitrios

RE: [flexcoders] Quick Flex 2.0 questions

2007-02-23 Thread Dimitrios Gianninas
Amen, Flex Builder saves time and the debugger helps. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Gordon Smith Sent: Fri 2/23/2007 8:19 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Quick Flex 2.0 questions

RE: [flexcoders] Finding out when an arraycollection in my model is set

2007-02-25 Thread Dimitrios Gianninas
It depends on what u are trying to do... give a little more detail and we will be able to help you. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Webdevotion Sent: Sat 2/24/2007 4:20 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Invalid Configuration Exception

2007-02-26 Thread Dimitrios Gianninas
Look at your tomcat log file, before that exception, you will find another exception that will explain what the real problem is. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Re: Best way for editing massive amounts of data?

2007-02-26 Thread Dimitrios Gianninas
in a section as list of name/value pair right pane: display the field info with the appropriate control to edit the data (its more complex than that, but u get the idea Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com

RE: [flexcoders] FDS with Java Question: Why is it grouping requests?

2007-02-26 Thread Dimitrios Gianninas
Maybe u need to call revertchanges() after the fault occurs to put everything back the way it was and then allow the user to delete the other record of his choosing. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Cairngorm FDS Sample

2007-02-26 Thread Dimitrios Gianninas
can set responders for each operation, thus u can have every command handle each DataService operation as it sees fit. Hope that helps, Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of billy_d_white Sent: Mon 2/26/2007 4:49 PM

RE: [flexcoders] changing states from within a component

2007-02-27 Thread Dimitrios Gianninas
Your login component should broadcast a LoginEvent to tell the parent app, hey the guy logged in, all good, do what u want now. That way you can reuse your component in every app, we do the same thing. Dimitrios Gianninas RIA Developer Optimal Payments Inc

RE: [flexcoders] how to create Sessions in Flex with FDS based on Tom Cat Server

2007-03-01 Thread Dimitrios Gianninas
Is your question more of, how do we authenticate a user? And if its not and u really need to create a session, then why? Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sajid

RE: [flexcoders] Setting up command line

2007-03-02 Thread Dimitrios Gianninas
How are u calling mxmlc? by using ant and calling the mxmlc.exe ? or calling via the mxmlc.jar ? Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Mike and Stephie Sent: Fri 3/2/2007 3:27 PM To: FlexCoders Subject: [flexcoders

RE: [flexcoders] Setting up command line

2007-03-03 Thread Dimitrios Gianninas
Ok I know what your problem is, in the \bin folder there is a jvm.config file, in that file there is a variable that points to your JDK/JRE... obviously it is pointing to the wrong location, so correct it, save and try again. Dimitrios Gianninas Developer Optimal Payments Inc

RE: [flexcoders] Sending form

2007-03-06 Thread Dimitrios Gianninas
for this as well): public function doOk():void { ModelLocator.getInstance().someVar = myData; PopUpManager.removePopUp( this ); } Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of RadicalByte

RE: [flexcoders] FDS and single items

2007-03-06 Thread Dimitrios Gianninas
And then use the DataService.dataStore.mergeRequired property to know when another client has had changes to the current data entity and then call DataService.dataStore.merge() to take in the changes if u want. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From

RE: [flexcoders] FDS and single items

2007-03-07 Thread Dimitrios Gianninas
Yes u are correct, you can use the ones directly on the DataService class, I was just responded of the top of my head and didn`t have the API open in front of me. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Carlos Rovira

RE: [flexcoders] Apollo and where do we start.

2007-03-07 Thread Dimitrios Gianninas
Its not on Adobe Labs yet... but soon :) Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of nboulet Sent: Wed 3/7/2007 8:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Apollo and where do we start. Hi guys :) I've

RE: [flexcoders] Re: Keyboard issues on VISTA - Important

2007-03-08 Thread Dimitrios Gianninas
I use Vista at home, tried it and no problems. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of iko_knyphausen Sent: Wed 3/7/2007 6:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keyboard issues on VISTA

RE: [flexcoders] DataGridColumn visibility problem. It appears again when dataProvider is replaced

2007-03-09 Thread Dimitrios Gianninas
Instead of hidding/showing columns, give the DG only the columns u want to appear at any one time. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov Sent: Friday

RE: [flexcoders] Flex Data Services Question, Java backend

2007-03-09 Thread Dimitrios Gianninas
Within FDS there is a Java class called flex.data.DataServiceTransaction which will allow u from Java to update your Flex clients. I haven't used it yet, but plan too, within the FDS examples it is used, so look it up. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From

RE: [flexcoders] Pass ModelLocator reference to Command?

2007-03-13 Thread Dimitrios Gianninas
with the event that is broadcast to execute the command, pass the field in the ML that is being updated, that should do it if I understand correctly. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Build Date?

2007-03-13 Thread Dimitrios Gianninas
If you use ant, generate a file with the build date and time inside of it (right after you compile) and have a remote call at app startup to retrieve and show in the UI. Thats what we do. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] autocomplete help

2007-03-14 Thread Dimitrios Gianninas
what error/problem are u having exactly? I use it but change the dp on rare occasions depending on what the user does. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mthielman11

RE: [flexcoders] Missing Widget? Where is the Select List thingy?

2007-03-14 Thread Dimitrios Gianninas
Use drag'n'drop to do it and actually with Flex 2.0 if you look at the docs, it does it by itself. You just set both lists as the source and destination and you will be able to drag''n'drop items back and forth. Dimitrios Gianninas Developer Optimal Payments Inc

RE: [flexcoders] Cairngorm FrontController

2007-03-16 Thread Dimitrios Gianninas
the broadcasting. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Shannon Sent: Thu 3/15/2007 6:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Cairngorm FrontController I am new to Cairngorm and Flex (I'm All About

RE: [flexcoders] FDS Configuration

2007-03-16 Thread Dimitrios Gianninas
. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of mister.kotter Sent: Fri 3/16/2007 11:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] FDS Configuration I have the following configuration: I am developing a multi

RE: [flexcoders] Re: Cairngorm FrontController

2007-03-18 Thread Dimitrios Gianninas
Exactly :) Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sleekdigital Sent: Sunday, March 18, 2007 10:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm

RE: [flexcoders] Cairngorm for Apollo?

2007-03-19 Thread Dimitrios Gianninas
There doesn't need to be, you build apps in Flex that can either deploy on the web or on the desktop (via Apollo). So since Cairngorm is for Flex, there doesn't need to be. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com

RE: [flexcoders] Two-Way Binding Solutions?

2007-03-26 Thread Dimitrios Gianninas
To make a copy use: newContact = ObjectUtils.copy( pendingContact ); You can definitly work with it as you wrote below or use FDS which can do this for you :) Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto

[flexcoders] thoughts on effects

2005-03-30 Thread Dimitrios Gianninas
Hi, I haven't used effects much in my first Flex project, only in two areas really: - fade effect for tooltips - sliding panel (hides/appears) One area I think that we could use effects a bit more is with Validators. When you have a component that is attached to a Validator and the validation

[flexcoders] Flex and WLS error

2005-05-04 Thread Dimitrios Gianninas
Hi, A co-worker of mine is running Flex with WebLogic 8.1 SP3 and see the following error on his console: Error: macromedia.css.LocatorParser (/WEB-INF/flex/global.css) Any ideas? Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. AVIS IMPORTANTWARNING Les informations

RE: [flexcoders] Classloader Problem?

2005-05-12 Thread Dimitrios Gianninas
Answer: Ok I finally understand the reason why fop.jar inside the CLASSPATH breaks Flex applications. Flex doesn't use the fop.jar but uses various batik components (http://xml.apache.org/batik/). In the Mainifest.mf, in the fop.jar shipped with BEA, there is this

[flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
Hi, I know I have this question already, but maybe some help with someone with more experience will help. Local I have the following setup: http://localhost:8100/contextA/appA.mxml http://localhost:8200/contextB/appB.mxml Using the Loader component, appA can load appB and then appB has

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
y 12, 2005 1:46 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] SWFs and domains Have you tried: - System.security.loadPolicyFile? - System.allowDomain()? - Original Message ----- From: Dimitrios Gianninas To: flexcoders@yahoogroups.com Sent: Thursday, May 12, 2005 1:39 PM Subjec

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
ot;Yo A, can I borrow data?" A will have code in it granting permission for B's domain in... make sense? Try that, we're gonna win! - Original Message - From: Dimitrios Gianninas To: flexcoders@yahoogroups.com Sent: Thursday, May 12, 2005 2:22 PM Subject: RE: [flexcoders] SWFs and domai

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
rsday, May 12, 2005 2:52 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] SWFs and domains Darn... hrm... Try 'em both without anything in the (), like: System.security.allowDomain() System.security.allowInsecureDomain() - Original Message ----- From: Dimitrios Gianninas To:

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
---- From: Dimitrios Gianninas To: flexcoders@yahoogroups.com Sent: Thursday, May 12, 2005 3:09 PM Subject: RE: [flexcoders] SWFs and domains lowers head... Nope. Well I have a plan B... but it would be nice if this worked. Don't know if you can think of anything else... thanks for the h

RE: [flexcoders] SWFs and domains

2005-05-12 Thread Dimitrios Gianninas
mal Payments Inc. From: JesterXL [mailto:[EMAIL PROTECTED] Sent: Thursday, May 12, 2005 1:46 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] SWFs and domains Have you tried: - System.security.loadPolicyFile? - System.allowDomain()? - Original Message - From: Dimitrios Gia

RE: [flexcoders] Cairngorm 0.99

2005-05-17 Thread Dimitrios Gianninas
Hi, You must add the appropriate entry for the cairngorm-manifest.xml in the flex-config.xml (portion in red below): namespace uri="http://www.macromedia.com/2003/mxml" manifest/WEB-INF/flex/mxml-manifest.xml/manifest/namespace namespace uri=http://www.iterationtwo.com/cairngorm

RE: [flexcoders] Hibernate 3

2005-05-17 Thread Dimitrios Gianninas
Haven't done it yet... been using Hibernate 2.1.8 for now in the integration layer with Flex as the presentation layer. It shouldn't be any different. What problem are you experiencing? Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: Rich Tretola [mailto:[EMAIL

RE: [flexcoders] How to configure MXML schema in Eclipse + OxygenXML 6?

2005-05-18 Thread Dimitrios Gianninas
Not sure if anyone uses it, but I started using Eclipse Web Tools for MXML editing. You can specify the MXML schema and works it wonderfully so far. http://www.eclipse.org/webtools/index.html Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: Andrew Muller

RE: [flexcoders] Re: How to configure MXML schema in Eclipse + OxygenXML 6?

2005-05-19 Thread Dimitrios Gianninas
a valid MXML editor into eclipse... I've downloaded erverything... I can see the XML editor is here, I've associated MXML file to it... It opens it as an XML file, but says "the document is empty", while the source tab shows the mxml file... Any idea ? Ciao, r0main --- In flexcoders@yaho

RE: [flexcoders] Cairngorm 0.99

2005-05-19 Thread Dimitrios Gianninas
tes needed to be added.From: namespace uri=http://www.iterationtwo.com/cairngorm manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespacebe: namespace uri="http://www.iterationtwo.com/cairngorm " manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespace On 5/17/05, Dimitri

RE: [flexcoders] Re: How to configure MXML schema in Eclipse + OxygenXML 6?

2005-05-19 Thread Dimitrios Gianninas
anks a lot... It works that way...Now, for 100% free, I can edit MXML files and also can edit flex .asfiles with MTASC::: ByeBye flexBuilder :-)Ciao, r0main--- In flexcoders@yahoogroups.com, "Dimitrios Gianninas"[EMAIL PROTECTED] wrote: Hi r0main, Here is what I did in Eclipse

RE: [flexcoders] Minimal Tomcat Deployment

2005-05-25 Thread Dimitrios Gianninas
Hi Dan, You don't have to do that much work to get Flex running under Tomcat. Here is the simplest way: - install Tomcat under c:\tomcat (just an example, put it anywhere you want) - createa folder called "samples" under c:\tomcat\webapps - extract the contents of the samples.war to

RE: [flexcoders] Cairngorm error

2005-05-25 Thread Dimitrios Gianninas
Hi, You must add the appropriate entry for the cairngorm-manifest.xml in the flex-config.xml (portion in red below): namespace uri="http://www.macromedia.com/2003/mxml" manifest/WEB-INF/flex/mxml-manifest.xml/manifest/namespace namespace uri=http://www.iterationtwo.com/cairngorm

RE: [flexcoders] Cairngorm error

2005-05-25 Thread Dimitrios Gianninas
Ok the cairngorm-manifest.xml file is there, which is good. I made a mistake in the earlier post (blame copy'n'paste), the entry should look like this (missing double-quotes): namespace uri="http://www.iterationtwo.com/cairngorm"

RE: [flexcoders] Cairngorm error

2005-05-25 Thread Dimitrios Gianninas
Ahh, that has nothing to do with the Cairngorm manifest... I looked to quickly at the previous error. Can you attach your flex-config.xml so we can take a look at what might be wrong with it. Seems like the mxml-manifest can't be found. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal

RE: [flexcoders] Cairngorm error

2005-05-25 Thread Dimitrios Gianninas
Humm weird... I just did a fresh install of Flex 1.5 under Tomcat 5.1 and used the flex-config.xml you posted and it worked! Perhaps you should start from scratch as I did, just create a "Hello World" app, make sure it works and if it does, then add in your other files. You must have

RE: [flexcoders] Form Questions (and frustrations)

2005-05-30 Thread Dimitrios Gianninas
Hi Mike, I use the FORM and FORMITEM tags whenever I want to use the automatic layout they provide. I'd say I use them about 75% of the time. The rest of the time, I just place a component(s) within the container that is appropriate. I guess the moral of the story is, doesn't matter

RE: [flexcoders] Installing Flex on a JRun 4 Server (Windows)

2005-05-31 Thread Dimitrios Gianninas
Hi Tim, Yup, you got it right... it works doesn't it? :) Ya from now on, your ant build script will basically copy all your files to the N:\Daemon\JRun\servers\test\flex\ folder, so you can run the app and test it. Enjoy! Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc.

RE: [flexcoders] Flex and jsp

2005-05-31 Thread Dimitrios Gianninas
Hi David, The only thing you need is to use the getURL method. You can use it to communicate with a _javascript_ function back on your JSP page... like so: getURL( "_javascript_:someJSFunction( 'someValue' )", "_top" ); Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc.

RE: [flexcoders] Flex and jsp

2005-05-31 Thread Dimitrios Gianninas
Maybe you need to send the data to the server directly and have the work done there and not use_javascript_? Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: Abdul Qabiz [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 31, 2005 10:37 AMTo:

RE: [flexcoders] Hiding 'Null'...

2005-05-31 Thread Dimitrios Gianninas
Hi, You will have to set the data in the TextInput manually and verify the value before you set it, like so: myTextInput.text = ( myData == undefined || myData == null || myData == "null" || myData == "" )? "": myData; Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc.

RE: [flexcoders] Flex Eclipse discussion

2005-06-08 Thread Dimitrios Gianninas
Atthis point I don't think there is anything like that in Eclipse. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: Tolulope Olonade [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 8:01 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex

RE: [flexcoders] what is the best practice for dynamic content change.

2005-06-08 Thread Dimitrios Gianninas
Title: Mercury Email Signature Hi Shlomi, Yes, for each app you want to load using the Loader control, it must be in effect a standalone Flex app to begin with, so its root tag must be the Application tag. I don't know how big all these sub applications are, but perhaps you can use a

RE: [flexcoders] Add mxml component to a Panel title bar

2005-06-08 Thread Dimitrios Gianninas
Of the top of my head, Not sure if you can... however, you can place the Panel inside a Canvas and then overlay the control of your choice in the position you want using its X and Y properties. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: superabe superabe

<    1   2   3   4   5   6   >