RE: [flexcoders] complex Remote Objects

2005-06-08 Thread Dimitrios Gianninas
Hi, Maybe you left it out in your example, but do you have the DataGridColumn tags? Like so: mx:DataGrid width="436" height="100%" mx:dataProvider {person.phones} /mx:dataProvider mx:columns mx:Array mx:DataGridColumn headerText="number" width="125" labelFunction="zip"/

RE: [flexcoders] Http Service -- urgent

2005-06-13 Thread Dimitrios Gianninas
There is an example on: Current page: http://livedocs.macromedia.com/flex/15/flex_docs_en/1175.htm But if you can please post the error you are getting, someone will be able to help you. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: tony_lic [mailto:[EMAIL

RE: [flexcoders] New to Flex, Questions for datagrid

2005-06-20 Thread Dimitrios Gianninas
I'll quickly give you some answers: 1) you can find info here: http://macromedia.max04.v4.breezecentral.com/p98974576/ 2) you can find something like that here: http://www.richinternetapps.com/archives/2005_01.html 3) you mean paste and whole set of rows and columns? unfortunately not 4)

RE: [flexcoders] Re: New to Flex, Questions for datagrid

2005-06-20 Thread Dimitrios Gianninas
s in EXCEL to DataGrid, has anybody done any research on this topic?Thanks,Ritesh--- In flexcoders@yahoogroups.com, "Dimitrios Gianninas" [EMAIL PROTECTED] wrote: I'll quickly give you some answers: 1) you can find info here: http://macromedia.max04.v4.breezecentral.com/p98974576/ 2) yo

RE: [flexcoders] HTML-like Table/Textbox behavior possible?

2007-03-28 Thread Dimitrios Gianninas
Yes you can, but I recommend you do not use the Grid container, just VBoxes and HBoxes will allow you to place items as you need them. mx:VBox width=100% mx:DateField width=100%/ mx:DateField width=100%/ /mx:VBox Dimitrios Gianninas Developer Optimal Payments Inc

RE: [flexcoders] Flex Data Services installation

2007-03-28 Thread Dimitrios Gianninas
should be as simple as: 1) under tomcat/webapps create a folder called test 2) extract the samples.war contents to the test folder you just created 3) start tomcat 4) goto http://localhost:8080/test and u should see the sample page and start using the demo apps Dimitrios Gianninas Developer

RE: [flexcoders] Connect and Retrieve from MS SQL Server 2005

2007-03-29 Thread Dimitrios Gianninas
Create your business logic in .NET, expose as a web service then use the WebService tag in Flex to call your .NET web service. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] What's your average amount of memory usage in Eclipse?

2007-03-29 Thread Dimitrios Gianninas
I turned off the automatic building long ago and never had a crash since. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Holmes Sent: Thursday, March 29, 2007 11:04 AM

RE: [flexcoders] seeking half-way point between view helper (Cairngorm) and re-usable components

2007-04-09 Thread Dimitrios Gianninas
or an MXML file with some AS mixed-in (dont' externalize the AS code cause it will just be confusing to manage). Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of fuad_kamal Sent: Sunday

RE: [flexcoders] Flex Config File DTDs or Schemas

2007-04-11 Thread Dimitrios Gianninas
I dont think adove provides the DTD or schemas for those...however the sample one have all the basics. Also every parameter is explained in the docs, but before that, what is the config error you are getting? Dimitrios Gianninas Developer Optimal Payments Inc

[flexcoders] FW: Data Binding to Item in ArrayCollection

2007-04-12 Thread Dimitrios Gianninas
Forwarding... Dimitrios Gianninas Developer Optimal Payments Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of davepelz Sent: Wednesday, April 11, 2007 11:43 AM To: [EMAIL PROTECTED] Subject: Re: Data Binding to Item in ArrayCollection Hey, Just

[flexcoders] timezone and dateformatter

2007-04-13 Thread Dimitrios Gianninas
) but for someone in CST is shows 2007-04-30... anything we can do about this? How do I get the end-user timezone setting ? Dimitrios Gianninas Developer Optimal Payments Inc. -- WARNING --- This electronic message and its attachments may contain confidential, proprietary or legally privileged

RE: [flexcoders] Ecplise Out Of Memory Errors

2007-04-24 Thread Dimitrios Gianninas
Turning OFF automaticy builds does make the problem go away, I am proof of that :) Doesn't bother me cause I just compile my Flex/Java stuff via ant anyways. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: Code Behind Woes

2007-04-24 Thread Dimitrios Gianninas
Box, Panel, etc... and then drop those into your app. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Doug Lowder Sent: Tue 4/24/2007 5:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Code Behind Woes File name

RE: [flexcoders] Inserting data from Flex: FDS vs. HTTPService vs. RemoteObject

2007-04-25 Thread Dimitrios Gianninas
will be hit with performance issues in the long run, not to mention dealing with complex data in those 2 scenarios will be a bit of a pain as well. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Scott Hoff Sent: Tue 4/24/2007 5:28 PM

RE: [flexcoders] Re: Inserting data from Flex: FDS vs. HTTPService vs. RemoteObject

2007-04-25 Thread Dimitrios Gianninas
Well then I think you have what you are looking for :) Just download it and try it! Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Scott Hoff Sent: Wed 4/25/2007 10:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders

RE: [flexcoders] Cairngorm, is this suitable as Cairngorm event

2007-04-26 Thread Dimitrios Gianninas
Imay be a little late here, but no, its not only for calling backend. Anytime you want encapsulate some UI logic, put it in a command. Even if it just to manipulate data, update the view or to call the server-side. Dimitrios Gianninas Developer Optimal Payments Inc

[flexcoders] FF and Java sessions

2007-04-26 Thread Dimitrios Gianninas
to get the same session to be used by the server when an upload request is sent by a Flex app. By doing: var req:URLRequest = new URLRequest(/billing/servlet/FileSvlt;JSESSIONID= + jSessionId); But this doesnt work for me any reason why? something I am doing wrong? Dimitrios Gianninas

RE: [flexcoders] Re: FF and Java sessions

2007-04-26 Thread Dimitrios Gianninas
using WebLogic 8.1SP3 and I do have url rewriting turned on ( we are also in a cluster): session-param param-nameURLRewritingEnabled/param-name param-valuetrue/param-value /session-param Dimitrios Gianninas Developer Optimal Payments Inc. From

RE: [flexcoders] FF and Java sessions

2007-04-26 Thread Dimitrios Gianninas
I am doing a POST as well... this problem only happens with FireFox...works fine with IE. So just trying to see what ppl do for FF. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] flex communication

2007-04-30 Thread Dimitrios Gianninas
Since you are starting off, I suggest you start small. Just build basic apps get them to run inside JBoss/Tomcat. Once that works then use the mx:RemoteObject/ tag to communicate with a simple Java class and see if it does what you except, then get more complex from that. Dimitrios Gianninas

RE: [flexcoders] metadata tags and events

2007-05-01 Thread Dimitrios Gianninas
) ); Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kenneth Sutherland Sent: Tuesday, May 01, 2007 5:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] metadata tags and events Does

RE: [flexcoders] flex communication

2007-05-01 Thread Dimitrios Gianninas
You can also look at Granite Data Services: http://www.graniteds.org/confluence/display/INTRO/Granite+Data+Services+Overview Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter

RE: [flexcoders] metadata tags and events

2007-05-01 Thread Dimitrios Gianninas
I dont think you need to do that much, perhaps you might be missing the event declaration at the top of the class? [Event(name=change, type=flash.events.Event)] public class MyClass { ... } Dimitrios Gianninas Developer Optimal Payments Inc. From

[flexcoders] test

2007-05-03 Thread Dimitrios Gianninas
test ignore Dimitrios Gianninas Developer Optimal Payments Inc. -- WARNING --- This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient. No privilege or other rights

RE: [flexcoders] Conor Marnane

2007-05-04 Thread Dimitrios Gianninas
I have updated the account for now, I will monitor. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Tuesday, May 01, 2007 6:09 PM To: flexcoders

RE: [flexcoders] Conor Marnane

2007-05-04 Thread Dimitrios Gianninas
the issue has been corrected Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Tuesday, May 01, 2007 6:09 PM To: flexcoders@yahoogroups.com Subject: Re

RE: [flexcoders] Request For Information On Use Of List Classes

2007-05-08 Thread Dimitrios Gianninas
1) Never have to this point. 2) Yes I have subclassed, but I dont believe any of the changes below would affect my subclass. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex

RE: [flexcoders] How to learn Caringorm

2007-05-10 Thread Dimitrios Gianninas
small and simple. Then start a small Flex app that will use Cairngorm, create a View, a Model, a Command, a Delegate put it all together, run it and then watch it all work. If you keep it simple you should get the hang of it pretty fast. Enjoy! Dimitrios Gianninas Optimal Payments Inc

RE: [flexcoders] FDS+tab Navigator+XML QUERIES

2007-05-11 Thread Dimitrios Gianninas
: mx:ComboBox id=myCombo / mx:TabNavigator selectedIndex={myCombo.selectedIndex} ... /mx:TabNavigator Best of luck! Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of kanu kukreja Sent: Thu 5/10/2007 2:23 PM To: flexcoders

RE: [flexcoders] can you drag and drop from a Swing application to a Flex one in browser?

2007-05-11 Thread Dimitrios Gianninas
I dont believe so, but probably you will need to look into Apollo Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tinkiknit Sent: Friday, May 11, 2007 8:51 AM To: flexcoders

FW: {Disarmed} Re: [flexcoders] Flex on Mac

2007-05-13 Thread Dimitrios Gianninas
Forwarding Dimitrios Gianninas Developer Optimal Payments Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of eestes1 Sent: Sunday, May 13, 2007 12:53 PM To: [EMAIL PROTECTED] Subject: {Disarmed} Re: [flexcoders] Flex on Mac I've been using FB2

RE: [flexcoders] Flex and spell check?

2007-05-16 Thread Dimitrios Gianninas
I used jazzy, its for java: http://sourceforge.net/projects/jazzy Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bitfacepatrick Sent: Wednesday, May 16, 2007 8:38 AM To: flexcoders

RE: [flexcoders] Flex cookbook article: Flex2 XML Reader Can Create UIComponents

2007-05-18 Thread Dimitrios Gianninas
to similar type of attacks. So weighing runtime MXML vs security, I would take security. Dimitrios Gianninas Developer Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Austin Kottke Sent: Thursday, May 17, 2007 7:23 PM

RE: [flexcoders] Getting 500 error on uploading

2007-05-18 Thread Dimitrios Gianninas
Something is wrong on the server-side... check your application logs to see if there is some kind of exception happening. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kumarpal

RE: [flexcoders] Working with Session....

2007-05-22 Thread Dimitrios Gianninas
True, but the more important question is why you want to access the session? You don't need to. Remember with Flex you are creating an app that will run on the client side and you can hold all the client side data in Flex itself. Dimitrios Gianninas Developer Optimal Payments Inc

RE: [flexcoders] can't remove space around label

2007-05-22 Thread Dimitrios Gianninas
Another way to accomplish this is to include both controls in a Canvas and use x/y coordinates to put them exactly as you want. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Cairngorm event question.

2007-05-22 Thread Dimitrios Gianninas
Not neccesary cause you will handle the response from the server in your result() method. I only create the LoginSuccessEvent to let the main app know, hey all good, show the app now. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders

RE: [flexcoders] Flex beginner cannot run mx:Script .... /mx: Script

2007-05-22 Thread Dimitrios Gianninas
Also try to post a portion of your app so we can see what you are doing, just in case in ain't the error Brian mentions. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sterling

RE: [flexcoders] Re: Flex beginner cannot run mx:Script .... /mx: Script

2007-05-23 Thread Dimitrios Gianninas
That code works fine... make sure the ? is the first thing in the file and there is nothing before it. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of henryaydin Sent: Tuesday, May

RE: [flexcoders] Difference in ActionScript File and ActionScript Class

2007-05-23 Thread Dimitrios Gianninas
AS File: Just a file that contains functions that run when needed. Similar to how u use a JS file. AS Class: Like a Java class, define properties and methods, create instances of it and use as needed. OOP style. I always use AS classes. Dimitrios Gianninas Developer Optimal Payments Inc

RE: [flexcoders] Re: Difference in ActionScript File and ActionScript Class

2007-05-23 Thread Dimitrios Gianninas
Performance will not be affected, your MXML files get turned into AS classes anyways (yup every single one of them). I suggest going with AS classes, its will feel better, trust me :) Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders

RE: [flexcoders] problems with storing XML in SharedObject

2007-05-25 Thread Dimitrios Gianninas
careful with the XML. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of annespg Sent: Thu 5/24/2007 12:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] problems with storing XML in SharedObject I just joined this forum

RE: [flexcoders] Feel the RIA flex components!!!!

2007-05-25 Thread Dimitrios Gianninas
Very cool, why not make them part of the flexlib library? Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kimkhan0909 Sent: Friday, May 25, 2007 7:31 AM To: flexcoders

RE: [flexcoders] compiling java classes for flex data services

2007-05-28 Thread Dimitrios Gianninas
You need to add the flex-messaging.jar to your IDE's classpath. The jar is located in the WEB-INF/lib folder I believe. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of learner Sent: Sun 5/27/2007 4:29 AM To: flexcoders

RE: [flexcoders] Re: problems with storing XML in SharedObject

2007-05-30 Thread Dimitrios Gianninas
Yes my mistake, it does NOT save the object type in the LSO. Perhaps you can save the XML as a string do myxml.toString() and then read back the string to re-build the XML? ex,: var xml:XML = new XML( mystrfromLSO ); Dimitrios Gianninas Developer Optimal Payments Inc

RE: {Disarmed} [flexcoders] Just getting started, hitting walls...

2007-05-31 Thread Dimitrios Gianninas
to maintain, but as time went by I learned to break things down as small as possible. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Dave @ VitalPodcasts.com Sent: Wed 5/30/2007 2:39 PM To: flexcoders@yahoogroups.com Subject: Re

[flexcoders] FW: Dynamic LineSeries based upon Array Collection?

2007-05-31 Thread Dimitrios Gianninas
forwarding... Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: [EMAIL PROTECTED] on behalf of majid.tahir Sent: Thu 5/31/2007 7:20 PM To: [EMAIL PROTECTED] Subject: Re: Dynamic LineSeries based upon Array Collection? I am struggling with same issue. I can

RE: [flexcoders] Sleep / Blink Image

2007-06-05 Thread Dimitrios Gianninas
Try using the Glow effect Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Olsen Sent: Sunday, June 03, 2007 9:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders

RE: [flexcoders] Validation drama

2007-06-05 Thread Dimitrios Gianninas
Same here, zero its either a blue or red border, not both at the same time. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Tuesday, June 05, 2007 2:25 AM

RE: [flexcoders] Make datagrid into spreadsheet

2007-06-05 Thread Dimitrios Gianninas
set the editable property to the DataGrid to true Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Ingram Sent: Tuesday, June 05, 2007 8:32 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] PDF in Flex

2007-06-06 Thread Dimitrios Gianninas
You should at Adobe Apollo for that (Flash Player for the desktop), it will have that. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Harald Dehn Sent: Tuesday, June 05, 2007 4:06

RE: [flexcoders] Flex 2 locales...

2007-06-06 Thread Dimitrios Gianninas
at run-time. 2) Dont' think there is. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of teracyte Sent: Wednesday, June 06, 2007 12:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders

RE: [flexcoders] Query regarding FDS ... please help me out..

2007-06-08 Thread Dimitrios Gianninas
Remove what exactly? Specify the files you mean. Side effects will be that things won't start up if you remove something u shouldn't. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Cairngorm release dates

2007-06-15 Thread Dimitrios Gianninas
No 100% accurate but: 2.2 - April 2007 2.1 - October 2006 2.0 - June 2006 0.99 - May 2005 0.95 - September 2004 Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gur_sukh Sent

RE: [flexcoders] Flex Java Developers

2007-08-31 Thread Dimitrios Gianninas
Personally I wouldn't use it since I know Flex well. However there are some developers out there who are pure Java coder developing server-side code and dont really care to build web apps. But with this it opens up the possibilities. Good stuff. Dimitrios Gianninas Developer Optimal Payments

RE: [flexcoders] DelegateFactory

2007-09-19 Thread Dimitrios Gianninas
along with your idea, it should work out just fine. Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sammi Sent: Monday, September 17, 2007 8:06 AM To: flexcoders

RE: [flexcoders] Flex Builder/Webapp/Flex

2007-09-19 Thread Dimitrios Gianninas
in the /build/WEB-INF/flex folder). This is the way we have done it for all projects for now and it works. But I am always looking for ways to improve this and perhaps others can share their experiences. Dimitrios Gianninas Development Team Lead Optimal Payments Inc

RE: [flexcoders] Redirect to login page

2007-09-19 Thread Dimitrios Gianninas
is your login page with the flex app or a seperate JSP/ASP/PHP page? Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manu Dhanda Sent: Tuesday, September 18, 2007 10:44

RE: [flexcoders] Building ant scripts for flex projects

2007-09-19 Thread Dimitrios Gianninas
-access-from domain=* / /cross-domain-policy You should google for specifics, or look at the flex documentation. Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kgfsatish

RE: [flexcoders] Redirect to login page: from flex to jsp in struts

2007-09-19 Thread Dimitrios Gianninas
: if( evt.fault.faultCode == Client.Authentication ) { var req:URLRequest = new URLRequest( login.jsp http://support.optimalpayments.com/REPOSITORY/WinSCP_Overview_Merchant.pdf ); navigateToURL( req, _blank ); } else { responder.fault( event ); } Dimitrios Gianninas Development Team Lead

RE: [flexcoders] event.fault.faultString

2007-09-20 Thread Dimitrios Gianninas
Flex will always do it that way, so what you have to do is create a method that will get everything after the colon and display it to the user. You should put this method in some utility classpersonally I have created a StringUtils class that this type of method and then some. Dimitrios

RE: [flexcoders] Timezone Problem

2007-09-20 Thread Dimitrios Gianninas
date/time object? What you might want to do is use the UTC info of date object to format it yourself: date.getFullYear() + - + date.getUTCMonth() + 1 + - + date.getUTCDate() + + date.getUTCHours() + : + date.getUTCMinutes(); Dimitrios Gianninas Development Team Lead Optimal Payments

RE: [flexcoders] Are you going to MAX?

2007-09-22 Thread Dimitrios Gianninas
I will be there! Dimitrios Gianninas Development Team Lead / Moderator Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Friday, September 21, 2007 9:44 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] FDS Compiler Error Eclipse 3.3

2007-09-22 Thread Dimitrios Gianninas
Which FB plugin version you got? the 2.0? it only works with Eclipse 3.2... you have to have FB 3.0 for it to work Eclipse 3.3 and even then this is on XP, doesnt work on Vista. Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From

RE: [flexcoders] firefox and FileReference.upload over SSL - error 2038

2007-09-22 Thread Dimitrios Gianninas
it to work properly. You shouldn't need to set any special headers. I use Java as my backend, so I have a servlet waiting to receive the files and I just use the FileReference class in Flex to do the upload. Dimitrios Gianninas Development Team Lead Optimal Payments Inc

RE: [flexcoders] Re: Sending custom clases (value objects) to remote services

2007-09-22 Thread Dimitrios Gianninas
it is free is you use the Express edition which runs on only one CPU. If you need more CPUs then yes you have to pay. Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Data Management in Flex : Add/Edit/Delete

2007-09-23 Thread Dimitrios Gianninas
, .NET, CF, PHP or whatever 2) use Flex's HTTPService to call a JSP/ASP/CF/PHP server page 3) use Flex RemoteObject to call a Java class or CF object Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto

[flexcoders] FW: yahoo maps CustomSWFMarker

2007-09-26 Thread Dimitrios Gianninas
forwarding Dimitrios Gianninas Moderator -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of oivind_gronli Sent: Wednesday, September 26, 2007 8:08 AM To: [EMAIL PROTECTED] Subject: Re: yahoo maps CustomSWFMarker Try this: Alert.show(Type

RE: [flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-16 Thread Dimitrios Gianninas
if this is the case for Tomcat. As for not being able to connect, hmmm..is there any more errors before this one? Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent

RE: [flexcoders] Attn Moderators: A few users need help with configurations

2007-10-16 Thread Dimitrios Gianninas
Already emailed them, thx Alex. Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Tuesday, October 16, 2007 3:02 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] bindable data type to update datagrid

2007-10-16 Thread Dimitrios Gianninas
Basically you are looking at binding some instance of an ArrayCollection to the dataProvider property of your grid, like so: mx:DataGrid dataProvider={someArrayCollection}/ Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf

RE: [flexcoders] Help Needed Please.for beginner!!!...Flex and Struts Development Instructions

2007-10-16 Thread Dimitrios Gianninas
Yes that is correct, your MXML and AS classes get compiled into one binary file namely your index.swf. So yes if you try to access http://localhost:7001/bla/index.swf you will be accessing your Flex build app. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From

RE: [flexcoders] Re: Error using LCDS, DataStore not initialized

2007-10-18 Thread Dimitrios Gianninas
on the server-side, when your server starts up, it will log the version of LCDS you are using. So check your server specific log, where all the System.out statements get logged into. Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From

RE: [flexcoders] LCDS/Hibernate DataServices Issue

2007-10-18 Thread Dimitrios Gianninas
at the employee/company in the LCDS samples. Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joshua Garnett Sent: Thursday, October 18, 2007 9:54 AM To: flexcoders

RE: [flexcoders] Single Sign-On Strategies with LCDS

2007-10-19 Thread Dimitrios Gianninas
in should get access to your server-side collection, unless you are sending some parameters thru to the server-side that cause your code to return nothing to the client? Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders

RE: [flexcoders] Livecycle DS

2007-10-22 Thread Dimitrios Gianninas
. That was it, I remember this clearly cause once we added this the clients on server A would get the changes done from clients on server B. Hope that helps! Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com

RE: [flexcoders] Flex3 - LCDS anyone know status? Does it work?

2007-10-23 Thread Dimitrios Gianninas
, there will be an LCDS 2.6 that will come with the Flex 3 sdk once it is released, so just have to wait a little while for that. Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Flex3 - LCDS anyone know status? Does it work?

2007-10-23 Thread Dimitrios Gianninas
Thats the way I look at too, we pre-compile everything fro PROD, I mean in PROD the app isnt going to change and it greatly helps on load/wait time. Just in weaves in nicely with our regular build process, for every app we build the java and flex portion at the same time via ant. Dimitrios

RE: [flexcoders] DataGrid not updating when dataProvider is updated

2007-10-23 Thread Dimitrios Gianninas
You have to make sure your custom ArrayCollection throw the change event I believe the DG looks for this. (could be another event name, not sure, you will need to check the docs) Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From

RE: [flexcoders] Flex's Component definition?

2007-10-23 Thread Dimitrios Gianninas
I look at it as any control or container is a component or combination of the two creates a new component via composition. So basically anything under mx.controls.* or mx.containers.* is a component. Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc

RE: [flexcoders] Re: Flex's Component definition?

2007-10-23 Thread Dimitrios Gianninas
Same as Jeffrey :) Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeffry Houser Sent: Tuesday, October 23, 2007 12:56 PM To: flexcoders@yahoogroups.com Subject: Re

RE: [flexcoders] Flex 3 cost

2007-10-23 Thread Dimitrios Gianninas
to a) is right here: http://www.onflex.org/ted/2007/10/flex-3-beta-2-lower-price-flex-builder.php as for b), well you need to call Adobe to find that out, it depends. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of George Lu

RE: [flexcoders] Components best practices for a newb

2007-10-25 Thread Dimitrios Gianninas
features and locate bugs. RemoteObjects as well, if you read the Cairngorm stuff, it has that already. Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Phill B Sent

RE: [flexcoders] Re: transient properties of an object using RemoteClass

2007-10-29 Thread Dimitrios Gianninas
I believe so, first time I see it myself, never seen anything like this for Flex 2. Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of simonjpalmer Sent: Monday

[flexcoders] Using ASDoc

2006-08-31 Thread Dimitrios Gianninas
URLClassLoader.java:187) [java] at java.lang.ClassLoader.loadClass(ClassLoader.java:289) [java] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274) [java] at java.lang.ClassLoader.loadClass(ClassLoader.java:235) [java] at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:3

RE: [flexcoders] Using ASDoc

2006-08-31 Thread Dimitrios Gianninas
Thanks Brian, but I goofed, I installed in the wrong folder, found it out like 5 mins after I send the email. Its all working and very cool. I also like how it barfs on un-used imports, it helped me clean certain things out :) Now I just have to tweak all the comments. Dimitrios Gianninas RIA

RE: [flexcoders] Pre-compiled applications unable to access FDS based message queues

2006-09-01 Thread Dimitrios Gianninas
-services=WEB-INF/flex/services-config.xml Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian DunphySent: Friday, September 01, 2006 3:07 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Pre

RE: [flexcoders] Cairngorm... Where should this go?

2006-09-07 Thread Dimitrios Gianninas
Put a method to handle the validation of the form or forms in the view. Then when the user presses thebutton, validate the form(s) and if all is ok then fire the event that calls your command to do whatever you want. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From

RE: [flexcoders] Re: Cairngorm... Where should this go?

2006-09-07 Thread Dimitrios Gianninas
I always do "what simply works". Sometimes I do something, and days/weeks/months review it and see that it could be better/or is causing a problem, so I refactor. I dont think there is one perfect way, it also depends on the project as well sometimes. Dimitrios Gianninas RIA

RE: [flexcoders] Newbie

2006-09-10 Thread Dimitrios Gianninas
I have corrected this for you. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Diego Guebel Sent: Sun 9/10/2006 5:19 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Newbie Hi Steven, I think this is happening to my

RE: [flexcoders] FileReference (upload) session cookie problems

2006-09-17 Thread Dimitrios Gianninas
Hi Jason, It is a bug, the file upload feature with FireFox behaves differently than under IE. My colleague Stacy Young discovered this a month or so ago and submitted and bug and many enhancement requests regarding file upload. I think this is an area that needs improvement. I'm not quite

RE: [flexcoders] limits to function during 'callback' events?

2006-09-18 Thread Dimitrios Gianninas
t variable to the state of the view: bla:SomeView currentState="{ModelLocator.someState}"/ 3) Once the command completes, then change the value of the variable: ModelLocator.someState = 'someViewState'; Hope that helps! Dimitrios Gianninas RIA Developer Optimal Payments Inc.

RE: [flexcoders] limits to function during 'callback' events?

2006-09-18 Thread Dimitrios Gianninas
you got it :) Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Kellogg @ Project SOCSent: Monday, September 18, 2006 12:40 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] limits

RE: [flexcoders] Architecting a large, modular Flex application

2006-09-19 Thread Dimitrios Gianninas
the command-line compiler and made sure to exclude the framework.swc, this did reduce the size and is basically what I think you want to do. Don't remember the exact switch, will have to get that to you tomorrow once I'm back in the office. Regards, Dimitrios Gianninas Optimal Payments Inc

RE: [flexcoders] Help on a general way to serialize a model and its contents

2006-09-19 Thread Dimitrios Gianninas
In Flex 1.5: for( var i in product ) { trace( i + - + product[i] ); } In Flex 2.0: trace( dump: + ObjectUtils.toString( product ) ); Enjoy! Dimitrios Gianninas Optimal Payments Inc -Original Message- From: flexcoders@yahoogroups.com on behalf of greenfishinwater Sent: Tue 9/19

RE: [flexcoders] Architecting a large, modular Flex application

2006-09-20 Thread Dimitrios Gianninas
-config.xml/ arg value=-source-path=${SRC}/ arg value=-external-library-path+=${SDK_LIB}/playerglobal.swc,${SDK_LIB}/framework.swc,${SDK_LIB}/fds.swc/ arg value=-output=cairngorm.swc / /exec Dimitrios Gianninas RIA Developer Optimal Payments Inc. -Original Message- From

RE: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-20 Thread Dimitrios Gianninas
That is the straight ant command. Search the docs in Flex Builder for "command line compiler" and it will give u more details. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of derrickgriggSent:

RE: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-24 Thread Dimitrios Gianninas
package I downloaded from Adobelabs. Is this a file you have created to exclude certain classes?Derrick--- In [EMAIL PROTECTED]ups.com, "Dimitrios Gianninas"dimitrios.giannina[EMAIL PROTECTED] wrote: Now that I am back in the office, here is the full ant command weuse to compile cairn

RE: [flexcoders] Re: Architecting a large, modular Flex application

2006-09-26 Thread Dimitrios Gianninas
You got it Dirk, dont know why I forgot to exclude those... down to 5.8k Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk EismannSent: Monday, September 25, 2006 7:47 AMTo: flexcoders

<    1   2   3   4   5   6   >