Re: [flexcoders] Re: Flex and Java Communication

2008-12-04 Thread Ryan Gravener
http://code.google.com/p/wicket-flex-blazeds/ Ryan Gravener http://ryangravener.com/flex | http://twitter.com/ryangravener On Thu, Dec 4, 2008 at 4:00 PM, valdhor [EMAIL PROTECTED] wrote: Hmmm I'm wanting to learn Java and I already know Flex. The book mentioned comes from the other

Re: [flexcoders] Re: Detect server timeout in Flex

2008-12-04 Thread Ryan Gravener
make an http request to a page on your server? depending if there is a session respond true/false? Ryan Gravener http://ryangravener.com/flex | http://twitter.com/ryangravener On Thu, Dec 4, 2008 at 5:07 PM, oneworld95 [EMAIL PROTECTED] wrote: Let me clarify: How do you detect session

Re: [flexcoders] BlazeDS and MySQL

2008-11-23 Thread Ryan Gravener
Shameless plug: http://code.google.com/p/wicket-flex-blazeds/ I've never added delete and update functions but if you checkout http://ryangravener.com/wordpress/?p=52 you can get the jyst. Ryan Gravener http://ryangravener.com/flex | http://twitter.com/ryangravener On Sun, Nov 23, 2008 at 6

Re: [flexcoders] Flex 2 to Flex 3 - LCDS

2008-10-27 Thread Ryan Gravener
If your using flex 3, you should switch over to blazeds as well. Ryan Gravener http://ryangravener.com/flex | http://twitter.com/ryangravener On Mon, Oct 27, 2008 at 3:37 PM, schneiderjim [EMAIL PROTECTED]wrote: We purchased Flex 2, which at the time, I believe included LCDS (or whatever

Re: [flexcoders] Re: Upload file(from local machine) via web service

2008-10-23 Thread Ryan Gravener
http://weblog.cahlan.com/2006/12/flex-upload-component.html Ryan Gravener http://twitter.com/ryangravener On Thu, Oct 23, 2008 at 11:41 AM, nathanpdaniel [EMAIL PROTECTED] wrote: I don't think it's possible (but only sure to about 98% :D). My suggestion would be to a) (easiest) just

Re: [flexcoders] Increase in swf size when upgraded to FlexSDK3

2008-10-20 Thread Ryan Gravener
are you compiling with debug enabled? Ryan Gravener http://twitter.com/ryangravener On Mon, Oct 20, 2008 at 7:40 PM, Shailesh Mangal [EMAIL PROTECTED]wrote: We recently moved from Flex 2.0.1/LCDS 2.5.1 to Flex3.1.0/LCDS2.6 and noticed that by doing that our swf went from 1.3MB to 1.9MB

Re: [flexcoders] Interfaces WHY?

2008-10-10 Thread Ryan Gravener
Pseudo multiple inheritance. Ryan Gravener http://twitter.com/ryangravener On Fri, Oct 10, 2008 at 10:23 AM, Richard Rodseth [EMAIL PROTECTED]wrote: And sometimes you even have interfaces with no methods. In this case it's a marker (often a parent of other interfaces) and when used

Re: [flexcoders] Remote calls are not happening using blazeDS in secured environment

2008-10-09 Thread Ryan Gravener
Is your apache http server redirecting to http from https? Ryan Gravener http://twitter.com/ryangravener On Thu, Oct 9, 2008 at 11:23 PM, venkateswarlu naidu [EMAIL PROTECTED] wrote: Here is the exact error message that i am seeing in the server console secure endpoint /messageborker

[flexcoders] AdvancedDataGridHeaderRenderer loses focus on set dataProvider

2008-10-08 Thread Ryan Gravener
inside the advanceddatagridheaderrenderer. I'll provide source if necessary, just looking for a quick fix if there is one. Sincerely, Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] Flex and BlazeDS in internet environment

2008-10-07 Thread Ryan Gravener
So long as your using flex and not air you can do this: endpoint url=http://{server.name}:{server.port}/{context.root}/messagebroker/streamingamf; class=flex.messaging.endpoints.StreamingAMFEndpoint/ Ryan Gravener http://twitter.com/ryangravener On Tue, Oct 7, 2008 at 10:53 AM, Tom Chiverton

Re: [flexcoders] Eclipse not Building

2008-10-06 Thread Ryan Gravener
. Please help. Cleaning and building doesn't helped me.. If any other way to do it?? Thanks, with Regards, Jitendra Jain Add more friends to your messenger and enjoy! Go to http://messenger.yahoo.com/invite/ -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] Header text

2008-10-05 Thread Ryan Gravener
So long as your using advanceddatagridcolumn you can do headerRenderer=com.yourcompany.package.ExtendsVBox and in ExtendsVBox override public function set data(value:Object) { super.data = data; //do stuff } Ryan Gravener http://ryangravener.com/flex On Sun, Oct 5, 2008 at 7:26 PM

Re: [flexcoders] Re: Header text

2008-10-05 Thread Ryan Gravener
Well, you are in luck. I just did this a few hours ago and it worked. Put this method: override public function set data(value:Object) { super.data = value; //do stuff } in your Custom renderer. The variable data will be the column. Ryan Gravener http://twitter.com/ryangravener On Sun

Re: [flexcoders] Re: Header text

2008-10-05 Thread Ryan Gravener
}/ domain:DomainComplete clazz={data.clazz} property={data.dataField} width=100%/ /mx:VBox Ryan Gravener http://twitter.com/ryangravener On Mon, Oct 6, 2008 at 12:27 AM, markgoldin_2000 [EMAIL PROTECTED]wrote: I am getting two compile errors: 1023: Incompatible override. 1144: Interface method set

Re: [flexcoders] Triggering Validator based on string value for TextInput

2008-10-02 Thread Ryan Gravener
I suppose you would need to use the regular expression validator. Ryan Gravener http://twitter.com/ryangravener On Thu, Oct 2, 2008 at 12:46 PM, djohnson29 [EMAIL PROTECTED] wrote: Does anyone know how to trigger a validator on a TextInput based on a certain string value? I have

Re: [flexcoders] Using data from List Control to send to PHP

2008-10-02 Thread Ryan Gravener
You can iterate through the dataprovider; for each (var obj:Object in list.dataProvider) { //do work } Ryan Gravener http://twitter.com/ryangravener On Thu, Oct 2, 2008 at 3:11 PM, ghus32 [EMAIL PROTECTED] wrote: Hello Everyone, I was wondering if any of you guys know how to extract data

Re: [flexcoders] How do we clear List's data

2008-09-29 Thread Ryan Gravener
I would try calling list.validateNow(); after you change the dp. Ryan Gravener http://twitter.com/ryangravener On Mon, Sep 29, 2008 at 6:10 PM, Joshua Partogi [EMAIL PROTECTED]wrote: dear all, I have got a List component that has data in it. But I want to clear the data in it. How do we

Re: [flexcoders] Re: BlazeDS Integration

2008-09-25 Thread Ryan Gravener
Is this a flex air app or just flex? Ryan Gravener http://twitter.com/ryangravener On Thu, Sep 25, 2008 at 9:36 AM, Patrick [EMAIL PROTECTED] wrote: The files are located under the WEB-INF/flex folder of the webapp, and I access the flex app through the generated HTML page that flex

Re: [flexcoders] Re: Tree Component openItems and refresh dataProvider issue

2008-09-25 Thread Ryan Gravener
it to an array. then i set the value in the tree. Ryan Gravener http://twitter.com/ryangravener On Thu, Sep 25, 2008 at 1:41 PM, Ivo [EMAIL PROTECTED] wrote: Are you resetting the data provider or just updating it? I find that if I just update the data provider by inserting/removing

Re: [flexcoders] Re: BlazeDS Integration

2008-09-25 Thread Ryan Gravener
Well, maybe this can help. Its a very limited quickstart, but I use it as my base for all new projects. http://code.google.com/p/wicket-flex-blazeds/ Ryan Gravener http://twitter.com/ryangravener On Thu, Sep 25, 2008 at 6:13 PM, Patrick [EMAIL PROTECTED] wrote: Just a flex app. Patrick

Re: [flexcoders] flex showing always the same SWF

2008-09-24 Thread Ryan Gravener
, nothing seems to work except renaming the project, I reinstalled flex builder and it worked fine, but recently the same problem came again. what is the deal with it and how can I fix this problem ? thanks -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] How do I determine the host where I am at?

2008-09-24 Thread Ryan Gravener
initialize bm. bm.init(); Ryan Gravener http://twitter.com/ryangravener On Wed, Sep 24, 2008 at 5:47 PM, Guy Morton [EMAIL PROTECTED] wrote: mx.core.Application.application.url On 25/09/2008, at 7:16 AM, luvfotography wrote: How do I find the host url where I'm ('myflexapp.swf

Re: [flexcoders]Convert a Java object to an ActionScript object

2008-09-24 Thread Ryan Gravener
http://ryangravener.com/wordpress/?p=21 Ryan Gravener http://twitter.com/ryangravener On Wed, Sep 24, 2008 at 5:18 PM, Eduardo Souza [EMAIL PROTECTED]wrote: Hi everyone, I have another question. How can I convert a Java object to an ActionScript object without using LiveCycle?

Re: [flexcoders] Capture last edit date for a record - Flex,Hibernate, mySQL

2008-09-16 Thread Ryan Gravener
the last edit date for a record. Does anyone have an example of this using Hibernate with Flex? I can force it to save if I display the date on the form and then modify it manually, but am having problems automatically capturing it. Thanks, Joe -- Ryan Gravener http://twitter.com

Re: [flexcoders] Components are disappearing from the screen on popups

2008-09-04 Thread Ryan Gravener
just the icons are moving. On Wed, Sep 3, 2008 at 5:56 PM, Alex Harui [EMAIL PROTECTED] wrote: Can you tell if the icons are moving or the whole control bar is moving? *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Ryan Gravener *Sent:* Wednesday

[flexcoders] Components are disappearing from the screen on popups

2008-09-03 Thread Ryan Gravener
paste: http://eugeneciurana.com/pastebin/pastebin.php?show=33170 Thanks, Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] Components are disappearing from the screen on popups

2008-09-03 Thread Ryan Gravener
about 100px. I can't figure out a way to fix this problem. screencast: http://www.screencast.com/users/RyanGravener/folders/Jing/media/2a63fab9-7c2f-4b52-8094-f5bc6423a46b paste: http://eugeneciurana.com/pastebin/pastebin.php?show=33170 Thanks, Ryan Gravener http://twitter.com

Re: [flexcoders] Components are disappearing from the screen on popups

2008-09-03 Thread Ryan Gravener
http://eugeneciurana.com/pastebin/pastebin.php?show=33170 On Wed, Sep 3, 2008 at 5:29 PM, Alex Harui [EMAIL PROTECTED] wrote: And what might that MXML look like? *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Ryan Gravener *Sent:* Wednesday, September 03

[flexcoders] Drag/Move inside self

2008-08-15 Thread Ryan Gravener
which should show for DragManager.MOVE does not show. Now when I drag this item into a different instance of this tree, the feedback shows. Thanks, Ryan Gravener http://ryangravener.com/flex

Re: [flexcoders] Drag/Move inside self

2008-08-15 Thread Ryan Gravener
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Ryan Gravener *Sent:* Friday, August 15, 2008 3:39 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Drag/Move inside self I have extended Tree and overridden the methods: dragOverHandler and dragDropHandler. For the mxml

Re: [flexcoders] Drag/Move inside self

2008-08-15 Thread Ryan Gravener
I figured it out, a while ago I set a custom dropIndicatorSkin in the css and forgot about it. Thanks for the help. On Fri, Aug 15, 2008 at 4:52 PM, Ryan Gravener [EMAIL PROTECTED]wrote: It needs to be subclassed. I've been playing around with examples that work and have incorporated them

Re: [flexcoders] Re: Tree problem

2008-08-13 Thread Ryan Gravener
/mx:VBox mx:Button x=74 y=327 label=Save emphasized=true click=saveGroup(event);/ mx:Button x=147 y=327 label=Cancel / /mx:TitleWindow /mx:Canvas -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] Re: Embedded Jetty6 or 7 server

2008-08-12 Thread Ryan Gravener
-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links -- Therefore, send not to know For whom the bell tolls. It tolls for thee. :: Josh 'G-Funk' McDonald :: 0437 221 380 :: [EMAIL PROTECTED] -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] Re: Datagrid selected item highlight behavior changes based on dataprovider object

2008-08-12 Thread Ryan Gravener
, and have another 30 attributes.. but I'm still stymied. Anyone have a suggestion for a work-around besides creating untyped objects for every object at runtime? What would the code look like to force a selected style to show up for the selected row? Thanks. Andrew -- Ryan

Re: [flexcoders] CRC

2008-08-06 Thread Ryan Gravener
file? I would like to verify that they are running the most current version and the code I wrote as they hit my remote components. Thanks Scott -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] LCDS2.6 + Hibernate3 + Heirarchial objects - ds.deleteItem fails

2008-08-05 Thread Ryan Gravener
to delete is still in the graph of the Country object on the server. How do I get this to work? Thanks -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] Downloading a file from a server in AIR

2008-08-03 Thread Ryan Gravener
in error, please notify the sender. -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] Combobox - How to display 'Click to Select...'

2008-08-01 Thread Ryan Gravener
need to part of the combobox control. So on initial load of the application, the combobox would display something like 'Click to Select...'. Any thoughts? Thanks, -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] Flex (w/ LCDS or BlazeDS) Hosting options...

2008-07-29 Thread Ryan Gravener
the embed LCDS? Is dedicated server the only way to go? Is RMTP channel practical for flex on Internet? or just for Intranet? Thank you. -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] on the fly form validation

2008-07-28 Thread Ryan Gravener
is it to validate a form as a user tabs through it? Without creating a ton of event handlers, is there an easy way to accomplish this? Hi Scott, Have a look at validators. Check here http://www.adobe.com/devnet/flex/quickstart/validating_data/ Fidel. -- Ryan Gravener http

Re: [flexcoders] Re: What files should be in the WEB-INF/flex directory to dynamically compile

2008-07-16 Thread Ryan Gravener
. Why ? Almost always off-line compilation is what is best. -- Tom Chiverton -- Ryan Gravener http://twitter.com/ryangravener

Re: [flexcoders] Re: What hosting compagny are you using for Flex + (Blaze || LCDS)

2008-04-14 Thread Ryan Gravener
for blazeDS or LCDS). What compagny are you using guys? I'm sure i'm not the only one seeking for a nice java host... Thank you. -- Ryan Gravener http://ryangravener.com