[flexcoders] Will there be a Part II to Sho K's Flickr Tutorial (i.e. more indepth on schemas)

2006-04-16 Thread Robert Thompson
I've watched all the tutorials and worked with quick starts and they are enormously helpful.I was wondering though, Sho kind of glosses over the end of his Flickr tutorial on his Thumbnail and a customize interpretation of Flickr.Although I am not necessary suggesting a full Xmethods.com SOAP WS

RE: [flexcoders] FDS & Hibernate

2006-04-16 Thread al77_t
Yep, just curious what functionality Hibernate adapter provides, using of java-dao adapter should work fine with Hibernate-based applications tho ;) Regards, Alex -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, April

[flexcoders] Re: FDS: Can push be done with the Data Service alone, or is the message service the only way?

2006-04-16 Thread pk_wasp
"RPC style calls to do CRUD" Yep :) or at least a consistent "Flash Remoting" framework for all the major server-side platforms (PHP, Ruby, .NET etc) Think one of the reasons why ASP.NET, Ruby on Rails etc is gaining coz its easy to do RPC style CRUD stuff .so Flex 2(which makes rich UIs

RE: [flexcoders] Re: FDS: Can push be done with the Data Service alone, or is the message service the only way?

2006-04-16 Thread Matt Chotin
You want RPC style calls to do CRUD but no synchronization logic? Well we'll have it for CF because Mystic has the adapter. We'll have to do more research into the value of us providing for all of the different backends, but I'm sure there are folks thinking about it. Matt -Original Message

[flexcoders] Re: FDS: Can push be done with the Data Service alone, or is the message service the only way?

2006-04-16 Thread pk_wasp
Sounds interesting Will there ever be a non messaging version of Data Service (e.g. just for RPC type functionality)? Would be cool to have some sort of Flex framework to do CRUD type operations like Data Services and is server agnostic on the backend (so server-side plugins/APIs for PHP, Ruby

[flexcoders] Re: Flex2/EJB3 integration: problems mapping Java/AS3 classes

2006-04-16 Thread carlos.rovira
Hi Matt, There's no extra space in [RemoteClass] maybe a typo due to the copy paste to the mail. I should point that I'm using AMF0, with OpenAMF, I forget to mention, sorry. And I was able to send the Employee class and operate in the backend, but the problem is in the return that I must to use a

RE: [flexcoders] ItemListRenderer Error

2006-04-16 Thread Matt Chotin
The data property is typed as Object so the binding code isn't going to know that it can safely read the data. Is your data object strongly typed? Maybe you can cast so binding will know what to do. As for your GetIconFamily binding error, that sounds wrong. Can we see the code for that one? M

RE: [flexcoders] Call an effect on a different object

2006-04-16 Thread Matt Chotin
You can specify the target of the effect. You just may need to trigger the effect yourself as opposed to relying on the EffectManager to trigger it for you. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Pieszak Sent: Friday, April 14

RE: [flexcoders] Flex2 Framework Components Source Code

2006-04-16 Thread Matt Chotin
It will be in beta 3. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jeffrey_lage Sent: Friday, April 14, 2006 6:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2 Framework Components Source Code Does anyone know if this is availa

RE: [flexcoders] FDS: Can push be done with the Data Service alone, or is the message service the only way?

2006-04-16 Thread Matt Chotin
In Beta 3 we’ll be providing more APIs that allow you to tell the DataService that a change has happened on the server and it will push changes to the clients who would care.   Matt   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Bray Sent: Wednes

RE: [flexcoders] beta 2: possible styleSheet bug with Text and TextArea component

2006-04-16 Thread Matt Chotin
I've forwarded it on for bug checking -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Muzak Sent: Saturday, April 15, 2006 3:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] beta 2: possible styleSheet bug with Text and TextArea componen

RE: [flexcoders] Custom authentication in a destination

2006-04-16 Thread Matt Chotin
You definitely need the in the constraint, otherwise there’s nothing to test for.   Why are you not using the login command we provided for 5.5?  You would also need to copy the flex-tomcat-common.jar into the common/lib directory as specified in step 1, but then it should work.  The o

RE: [flexcoders] logout remote object in flex

2006-04-16 Thread Matt Chotin
I think for 1.5 you need to write your own RemoteObject that will get the HTTPSession from the Gateway and invalidate it. Then on the client you can clearUsernamePassword as well. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jfournet Sen

RE: [flexcoders] Re: MultipleSelection onTileList in HTML Flex 1.5

2006-04-16 Thread Matt Chotin
I believe there are known issues with wmode where sometimes the ctrl key won't be passed through to us. Does holding shift work? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of moyosaned Sent: Friday, April 14, 2006 1:34 AM To: flexcoders@yahoogr

RE: [flexcoders] F2B2: Convert XML to Object?

2006-04-16 Thread Matt Chotin
Using the XMLListCollection shouldn't seem flakey, what has been causing problems there? But no, there isn't a quick way to get very deep in an object graph, it's one of the benefits of e4x. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of b

RE: [flexcoders] amfgateway request URI how to append java object n method name

2006-04-16 Thread Matt Chotin
I haven't tried it but you might be able to do myRemoteObject.connection.AppendToGatewayUrl (which takes the suffix to append) or replace the gateway url entirely with ReplaceGatewayUrl. Not sure if it will do what you want but I suppose worth a shot. -Original Message- From: flexcoders@y

RE: [flexcoders] parseDateString and parseNumberString

2006-04-16 Thread Matt Chotin
parseDateString is a protected static method on the DateFormatter it appears. Which means you would need to write a subclass of DateFormatter and then you could call the static method from within it (via DateFormatter.parseDateString). Matt -Original Message- From: flexcoders@yahoogrou

RE: [flexcoders] Re: Singleton not usable?

2006-04-16 Thread Matt Chotin
We've had other singleton discussions before so I won't re-hash, but will point out that we don't have the same thread/locking problem that Java does when accessing the singleton because your AS code is single-threaded. So doing the if (instance == null) instance = new... is just fine. Matt

RE: [flexcoders] Strange ComboBox problem

2006-04-16 Thread Matt Chotin
Is this still a problem? Is the combobox not keeping its selection or something else in your control? How are you changing the selection? Mouse, keyboard, programmatically? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of leo4beer Sent: Tuesday,

RE: [flexcoders] Flex 1.5 - How do you tell a validator about an nested TextInput?

2006-04-16 Thread Matt Chotin
You should be able to specify the listener property on the Validator to point to that TextInput. I would have hoped the binding would have figured that out for you automatically, but sometimes it can't. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] DateField problem

2006-04-16 Thread Matt Chotin
What happens if you re-assign the whole selectableRange instead of just rangeStart? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dima Ulich Sent: Wednesday, April 12, 2006 1:48 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DateField p

RE: [flexcoders] Re: Flex2/EJB3 integration: problems mapping Java/AS3 classes

2006-04-16 Thread Matt Chotin
Only thing I can see is the extra space in your [RemoteClass] which I would hope would not cause the mismatch.  If you enable the debug logs when the object is sent from the server to the client does the log have the correct type of the Employee?  It’s not maybe some weird implementation

RE: [flexcoders] FDS & Hibernate

2006-04-16 Thread Matt Chotin
I don’t know that I agree with your premise that open source is the only way to understand a technology to adopt it, but agree that the documentation is behind the implementations.  Hopefully when B3 comes out more documentation will be available, and the changes that we mad

RE: [flexcoders] How to Store datagrid data into xml file

2006-04-16 Thread Matt Chotin
You'll want to look into the HTTPService which can take data and serialize it to XML for you. If you have a specific format that may not match up with what we produce you'll need to do it on your own though. If this is Flex 2 you'll simply want to take your dataProvider, use the IViewCursor to ite

RE: [flexcoders] Flex 2 beta2: dataGrid

2006-04-16 Thread Matt Chotin
You can override some of the mouse event handlers in the DG class, check to see if the item that is being clicked on is one you want to avoid and then not call super. Actually in checking the ASDoc this might be better for B3. It might be harder to do in B2 since there are fewer documented meth

RE: [flexcoders] Do RemoteObject results still not operate in parallel?

2006-04-16 Thread Matt Chotin
It's still the same in 2.0, this is how the NetConnection class works. You would basically need to make sure that each RemoteObject invocation that you want running in parallel happens over a different channel. You can set up multiple channels that have the same endpoint (so you don't need the bog

RE: [flexcoders] Good Code Stops Working For Me Too

2006-04-16 Thread Matt Chotin
I’ve forwarded this on to our support team.  It’s possible we have a hotfix for it already (or they’ll know of a workaround or something).   Matt   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Simon Fifield Sent: Saturday, April 15, 2006 4:40 PM To:

RE: [flexcoders] RENDER event: before every frame or only when certain UI elements change?

2006-04-16 Thread Matt Chotin
ENTER_FRAME is prior to every frame. RENDER is only when the components ended up invalidating and requiring a draw. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of loftling Sent: Wednesday, April 12, 2006 1:22 PM To: flexcoders@yahoogroups.com Su

[flexcoders] Re: logout remote object in flex

2006-04-16 Thread Douglas Knudsen
There is no logout() in flex. Just use the jsp/servlet way of destroying the session. On 4/15/06, jfournet <[EMAIL PROTECTED]> wrote: > I need to logout a remoteobject in flex to destroy the users security > creditials. I don't see anyway to do this in flex 1.5. Any help > would be appreciated.

[flexcoders] [OT] Cursed Numbers ;)

2006-04-16 Thread Carlos Rovira
Hey Matt,I was just digging in your fantastic tutorials in the following PDF (http://download.macromedia.com/pub/documentation/en/flex/2/Flex2_beta2_Hands-onTutorials.pdf ),and notice that you are using the cursed numbers (page 51) in the behaviours tuto!!Be careful man!, you know what happen wi

RE: [flexcoders] parseDateString and parseNumberString

2006-04-16 Thread Gordon Smith
parseDateString() is currently a protected static method, intended for use only in subclasses of DateFormatter. In general, I don't think our formatter classes are designed to be used as parsers, so we're not exposing public parsing methods that some of them may use in their implementations. - Go

[flexcoders] Re: Flex 1.5 - How do you tell a validator about an nested TextInput?

2006-04-16 Thread Libby
Can anyone tell me anything at all to help me do this?? Please??? Thanks, Libby --- In flexcoders@yahoogroups.com, "Libby" <[EMAIL PROTECTED]> wrote: > > I have a .mxml file which contains a TextInput. Then that object is > within a FormItem on another .mxml page. When I declare my validators > o

Re: [flexcoders] How Users can Move Popup Windows

2006-04-16 Thread Manish Jethani
On 4/15/06, mvbaffa <[EMAIL PROTECTED]> wrote: > The problem is that if I create the Popup with createPopUp with the > component that has the TitleWindow inside it, like this: > > w = PopUpManager.createPopUp(this, EventsSettings, false); > > It is not possible to drag the window. It works

[flexcoders] java Calendar type vs. java Date

2006-04-16 Thread sof4real03
I'm using Flex 2 Beta 2 and I'm returning a java Value Object of Calendar, but when Data Services does the AS equivalent mapping it doesn't know how to handle Calendar type. Yet, when I return it an Array, which is comprised of Calendar types it converts it fine. Is this a known issue? Date has bee

[flexcoders] Do RemoteObject results still not operate in parallel?

2006-04-16 Thread sof4real03
I've come across an article by Peter Ent regarding how AMF results using RemoteObjects do not return in parallel, but wait until all requests are completed. He also posted a workaround. I was just wondering if this is still a valid workaround or has the design been revamped with the Data Services?

[flexcoders] Custom authentication in a destination

2006-04-16 Thread Xavi Beumala
Hi all,I'm trying to secure a remoting destination with a custom class as stated at http://livedocs.macromedia.com/labs/1/flex20beta2/1546.html The steps I've followed are:   · Create a custom class which implements flex.messaging.security.LoginCommand with the methods start, stop, doAuthent

[flexcoders] parseDateString and parseNumberString

2006-04-16 Thread mvbaffa
Hi everybody, I am using Flex 2 Beta 2. I have a date formatter and a currency formatter they work fine when I use the format method. When the form is submitted I have parse these values to save a date and a number. I am trying to use parseDateString and parseNumberString. I tried: - DateFo

[flexcoders] Getting custom objects from OpenAMF

2006-04-16 Thread Xavi Beumala
Hi all,I'm playing with FES beta 2 and openAMF trying to send and receive custom objects both from java to flex and from flex to java. I've managed to correctly send objects from flex to Java, but I'm having problems when receiving a custom objects from Java. I'm receiving a plain Object instead

[flexcoders] logout remote object in flex

2006-04-16 Thread jfournet
I need to logout a remoteobject in flex to destroy the users security creditials. I don't see anyway to do this in flex 1.5. Any help would be appreciated. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-arc

[flexcoders] Re: How Users can Move Popup Windows

2006-04-16 Thread mvbaffa
Hi, Not really, My TitleWindow has a style like this: .PopupHeader { dropShadowEnabled: false; roundedBottomCorners: false; shadowDirection: center; textAlign: left; borderStyle: solid; borderAlpha: 0.17; highlightAlphas: 0.1, 0.16; headerColors: #cc, #ff; } It

RE: [flexcoders] Re: Cairngorm Phone Selector in F2B2

2006-04-16 Thread Benoit Hediard
Since this is a constant, you don't need to make it bindable. Just rename "var" into "const", it will remove the warning: public static const STATE_LOADING:String = "loading"; Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Tim Ho

RE: [flexcoders] Cairngorm Phone Selector in F2B2

2006-04-16 Thread Benoit Hediard
Oups... Bad file name on the server. Corrected: http://www.benorama.com/flex/samples/PhonesCairngorm2.zip Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Rick Schmitty Envoyé : samedi 15 avril 2006 21:34 À : flexcoders@yahoogroup

[flexcoders] Re: labelfuction and column chart questions

2006-04-16 Thread shemeshkale
as i m new to flex i couldnt resolve this... can u please show me the complete way of doing this? --- In flexcoders@yahoogroups.com, "Ely Greenfield" <[EMAIL PROTECTED]> wrote: > > > > 1) write a custom renderer for your columnseries. This renderer should > fill the columns with the standard co