[flexcoders] Re: Thick Java Client for LCDS - AIR is too restrictive on Desktop

2008-07-26 Thread Shailesh Mangal
yeah, I spend some time looking at it, its certainly not easy. Any other alternatives? I need to connect to assembler and get the data pushes to the java client and execute some stuff on the desktop. AIR would have been perfect if it was as powerful as Java on desktop. -Shailesh --- In

Re: [flexcoders] Re: Figuring out what was clicked in AdvancedDataGrid

2008-07-26 Thread shaun
Use selectedItem. whatabrain wrote: I'm not quite sure I understand. My dataPrivider is an mx:HierarchicalData object, with an ArrayCollection as its source. The ArrayCollection is an array of arrays. Something like this: [ {name=group1, children=[ {name=item1}, {name=item2}

[flexcoders] Scour.com invite from Rajeshwar Mothe

2008-07-26 Thread Rajeshwar Mothe
Hey, Did you hear about Scour? It is the next gen search engine with Google/Yahoo/MSN results and user comments all on one page. Best of all we get paid for using it by earning points with every search, comment and vote. The points are redeemable for Visa gift cards! It's like earning credit

[flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-26 Thread Adnan Doric
You are absolutely right, but the preloading part is completely missing :) Well, maybe it is Flash Player bug, I don't know, but it is very annoying for deep linking as you can imagine. I tried to create custom preloader but same thing is happening, there is no progress events. Maybe have some

[flexcoders] Re: Centering Bar Chart labels vertically

2008-07-26 Thread Amy
--- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Ok, so we're talking about a vertical axis. . * For a vertical axis, by default the labels are vertically aligned to the tick marks (center).For these, you can adjust the label position (up/down) slightly with

[flexcoders] Re: Thick Java Client for LCDS - AIR is too restrictive on Desktop

2008-07-26 Thread meteatamel
There's no easy way to get DataService type of functionality in Java but you can certainly do Flash remoting (flash.net.NetConnection) type of functionality in Java using BlazeDS's AMFConnection. It's a new mini-feature that is currently being tested but it's in BlazeDS source tree. So, you can

[flexcoders] Re: Centering Bar Chart labels vertically

2008-07-26 Thread Tim Hoff
Hi Amy, I guess that everyone has their own perspective. Like you, I used to complain that the flex styles weren't as comprehensive as the .net controls that I was used to at the time. However, looking at it from an 80-20 point of view, the basics are there; especially for charts. The point

[flexcoders] Re: PropertyChangeEvent problems in ArrayCollection

2008-07-26 Thread lampei
Thanks! I'll try typed classes next. I had wondered (but didn't try it) if the generic object was somehow involved. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Different data objects may set the oldValue/newValue correctly. I'm not sure what kind of generic object

[flexcoders] Flex overlay over HTML

2008-07-26 Thread Easow Jacob
Hi, I have a *HTML* page with a small *flex* app embedded into it. When you click on the *flex* app, I want an *overlay* to come *over* page showing my app. Just wondering how I would go about that. Or if there is a way to have the original small map SWF resize to show the app. Cheers

[flexcoders] Re: Flex overlay over HTML

2008-07-26 Thread Tim Hoff
Hi Easow, You could just use an IFrame. -TH --- In flexcoders@yahoogroups.com, Easow Jacob [EMAIL PROTECTED] wrote: Hi, I have a *HTML* page with a small *flex* app embedded into it. When you click on the *flex* app, I want an *overlay* to come *over* page showing my app. Just

[flexcoders] Re: LCDS data synchronisation problem

2008-07-26 Thread fkolberg
Hi Jeff, I have got a more verbose output: 'cds-consumer-insync-null' consumer set destination to 'insync'. New DataService for destination: insync 'D0C16D6A-7104-39A3-B839-6054DE1ED615' producer set destination to 'insync'. Creating shared data store with id: ':true' for destination: 'insync'

[flexcoders] chart LineSeries.form=horizontal - how to tweek behaviour of horizontal?

2008-07-26 Thread chigwell23
Setting form=horizontal for a chart LineSeries e.g. mx:LineSeries id =mySeries1 form = horizontal /mx:LineSeries horizontal: Draws only the vertical line from the x-coordinate of the first point to the x-coordinate of the second point at the y-coordinate of the second point. Repeats this for

RE: [flexcoders] Re: LCDS data synchronisation problem

2008-07-26 Thread Jeff Vroom
Hi Florence, Thanks for sending that along... we are missing a clear error message for whatever your problem is - sorry about that. I have tried a few things here to try and get that exact error and can't seem to reproduce it here myself either. There are two ways to get configuration into

[flexcoders] series id of a chart item

2008-07-26 Thread hworke
Hi, once a column chart item is clicked, how do I find the series that this item belongs to?

[flexcoders] Re: series id of a chart item

2008-07-26 Thread hworke
Please do not worry about it. Got the answer!!! In any case if anyone interested here are the examples that you can take look at: http://livedocs.adobe.com/flex/3/html/help.html?content=charts_eventsandeffects_11.html --- In flexcoders@yahoogroups.com, hworke [EMAIL PROTECTED]

[flexcoders] ArrayCollection ChangeEvent does noget get dispatched when filterFunction is set

2008-07-26 Thread dopenhagen
It appears that an arraycollection's changeEvent (CollectionEvent.COLLECTION_CHANGE) does not get called correctly when FilterFunction is set. Is anyone else experiencing this behavior, and if yes: is it a feature or a bug ?

RE: [flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-26 Thread Rick Winscot
I've used deep linking with a custom pre-loader in many apps without problems. Can you verify your configuration? *. What html template are you using *. What are your compiler options *. Are you using any additional JavaScript goodies like FAB? Rick Winscot From:

[flexcoders] Preventing Change in Focus Using Mouse

2008-07-26 Thread edlueze
Hi Folks: I'm trying to prevent the user from prematurely changing focus away from a control. I can use event.preventDefault() successfully when using the keyboard, but not when using a mouse. This is what I've got: private function creationCompleteListener(event:Event):void {

[flexcoders] Passing parameter to component

2008-07-26 Thread Cathal
Hi, I'm trying to pass the selected item on a combo box in one component to another component. If i bind it to a label it works fine, code: mx:Label text={headerComp.cbProject.selectedItem.projectname} / but passing it into another component it doesn't work. code: comp:home

RE: [flexcoders] ArrayCollection ChangeEvent does noget get dispatched when filterFunction is set

2008-07-26 Thread Alex Harui
AC is a view of the data so if an item changes that is not in the current view (filtered out) I don't think it should send an event From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dopenhagen Sent: Saturday, July 26, 2008 4:09 PM To:

RE: [flexcoders] Passing parameter to component

2008-07-26 Thread Alex Harui
It might get assigned to null at startup and then to something else later as the binding expression becomes valid From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cathal Sent: Saturday, July 26, 2008 3:36 PM To:

RE: [flexcoders] Preventing Change in Focus Using Mouse

2008-07-26 Thread Alex Harui
FocusManager moves focus on MOUSE_DOWN. It isn't cancelable so you may need to use stopPropagation. It might be better to simply restore focus via callLater though From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of edlueze Sent:

RE: [flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-26 Thread Alex Harui
My network is too fast to see the downloading portion. I did see a pause, it might be the deep linking javascript code getting initialized. You could comment it out in your html wrapper and see if that makes a difference. From: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Flex overlay over HTML

2008-07-26 Thread Easow Jacob
Tim, It is not about rendering of HTML page. Here is my exact issue.. I have a PopupButton..When i click the popUpButton a TitleWindow is appearing.But here is my problem.I embeded this swf in an HTML but when I click the Popup,titleWindow is not appearing,because it was not able to overlay