[flexcoders] Problem with datagrid, e4x data, and checkbox cellrenderer. Flex (2.0 b1)

2006-03-13 Thread sourcecoderia
hello all, When a datagrid is bound to a XMLListCollection which is the result of a httpservice xml(e4x) load, it loads fine. The data is rendered. However on one of my col I want a checkbox cellrenderer. When I set the selected to the value in the dataobject within the renderer it does not

[flexcoders] Capture events a la the underlying transparent window from PopUpManager

2006-03-13 Thread dopenhagen
How do I capture e.g. mouseDown events on a canvas which has a positive alpha value and prevent objects in lower layers to recieve the input and respond to the event? It does not help just to wire up a handler like this: public function onMouseDown( event ) : Void { return; } Cheers,

[flexcoders] Re: View helpers

2006-03-13 Thread dopenhagen
Hi Dan, Check out the samples in the Cairngorm framework. They worked for me http://www.richinternetapps.com/archives/94.html Cheers, Pedro --- In flexcoders@yahoogroups.com, Dan Thomas [EMAIL PROTECTED] wrote: Can anyone offer a simple example of the view helper pattern? I

[flexcoders] Re: Capture events a la the underlying transparent window from PopUpManager

2006-03-13 Thread dopenhagen
Btw. I'm using Flex 1.5 and AS2. / Pedro --- In flexcoders@yahoogroups.com, dopenhagen [EMAIL PROTECTED] wrote: How do I capture e.g. mouseDown events on a canvas which has a positive alpha value and prevent objects in lower layers to recieve the input and respond to the event? It

Re: [flexcoders] Capture events a la the underlying transparent window from PopUpManager

2006-03-13 Thread Manish Jethani
On 3/13/06, dopenhagen [EMAIL PROTECTED] wrote: How do I capture e.g. mouseDown events on a canvas which has a positive alpha value and prevent objects in lower layers to recieve the input and respond to the event? Are you saying that you want to prevent the canvas from receiving mouse events

Re: [flexcoders] Flex2 :: ObjectProxy subclass :: Interfacing concrete accessors

2006-03-13 Thread Michael Schmalle
Matt, I am using amfphp/mysql, dosn't dataservices require java or more enterprise solutions? Remember, you are dealing with a UI/Component developer, so I am not that educated 'yet' about dataservices etc. I understand what you are saying but, can it be done with amfphp? I say this becasue

[flexcoders] Re: Capture events a la the underlying transparent window from PopUpManager

2006-03-13 Thread dopenhagen
Hi Manish, Sorry, no - its actually the opposite I am trying to achieve. Where the underlying layers do not recieve the event. Part of my MXML: mx:Panel xmlns:mx=http://www.macromedia.com/2003/mxml; xmlns:elforms=com.elounge.forms.* width=500 visible=false

RE: [flexcoders] RemoteObject - ColdFustion

2006-03-13 Thread David Farr
Thanks. This is what I needed. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul QabizSent: Saturday, March 11, 2006 11:22 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] RemoteObject - ColdFustion You can send data as shown below, some of the

[flexcoders] Populating a Repeater from a ComboBox

2006-03-13 Thread nahruka
Hi all,I'm trying to populate a Repeater with an XMLListCollection depending on the selected index in a ComboBox. Although cmbAny.selectedIndex changes as I select different values from the ComboBox, the DataProvider remains the same, as if cmbAny.selectedIndex = 0. Any suggestions? Thanks!

[flexcoders] Question about BitmapData max height (Flex)

2006-03-13 Thread Richard Schutten
Hi there, I've created a Animation class which extends Image. When loaded a Timer is created and on each timer event i draw the next state of my source image. Therefore i'm using CopyPixels of BitmapData. This works fine with small images. But i've noticed that i can't use files which height are

[flexcoders] Re: datagrid column assistance needed

2006-03-13 Thread gault17
Works great! Thanks, Doug, and all the experts who offer solutions and examples to this group. Does AS2 offer any way to make the expression itself dynamic with something like the javascript eval function? That way, I could pass the protection expression as a string to the cellrenderer. Gary

RE: [flexcoders] Flex2 : MP3 Audio player, play problem...

2006-03-13 Thread Benoit Hediard
No, I've not tried to do the AS example without Flex involved. It looks like the problem is not coming from flex but from the MP3 files or a buggy MP3 support in the 8.5 player. With some MP3 files, it works, with others it doesn't... But the MP3 files have been encoded directly from a CD with

[flexcoders] RE: View helpers

2006-03-13 Thread Steven Webster
Title: [flexcoders] File - flexcodersFAQ.txt Dan, Over on http://www.macromedia.com/devnet/flex you'll see I've been serialising a bunch of articles on the various patterns in Cairngorm - and that the View Helper is conspicuous by it's absence. That's not to say that the View Helper

[flexcoders] Re: Datagrid row highlighting and locking (Flex2)

2006-03-13 Thread yaagcur
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: Oh, I forgot to add, your renderer needs to implement the IDropInListItemRenderer interface. VBox implements=mx.controls.listclasses.IDropInListItemRenderer ... ... This gives error Interface method 'get

[flexcoders] FES .Net

2006-03-13 Thread Battershall, Jeff
Our entire website infrastructure, after being on Java/CF shop for years, is now going to be ported over to .Net. I've got existing Flex apps built against a CFC back end, which I was planning to port to Flex2, leveraging FES and the CF Adapter. So, my question is how Flex Enterprise Services

[flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-13 Thread David Katz
I know the Flash player is limited in its ability interact with the user's file system. I'm wondering if a Flex 2.0 application (and the new Flash player) has the ability to enable a user to drag a file or folder *from the file system* onto a Flex app and have the app perform an action (such as

Re: [flexcoders] Drag drop *from* the user's file system into a Flex 2.0 app

2006-03-13 Thread Michael Schmalle
Hello, My insight is that would be a dream. I bet Adobe is thinking along the same lines though. Looking at Flash5 to Flex2, you can imagine anything for the future. ;-) Other than a no answer to your question, you could use a server side language locally to accomplish something close but,

Re: [flexcoders] Re: Capture events a la the underlying transparent window from PopUpManager

2006-03-13 Thread Manish Jethani
On 3/13/06, dopenhagen [EMAIL PROTECTED] wrote: Sorry, no - its actually the opposite I am trying to achieve. Where the underlying layers do not recieve the event. Part of my MXML: mx:Panel [snip] mouseDown=this.shoppingcartViewHelper.onMouseDown(event) [snip] The questions is

Re: [flexcoders] Re: Datagrid row highlighting and locking (Flex2)

2006-03-13 Thread Manish Jethani
On 3/13/06, yaagcur [EMAIL PROTECTED] wrote: VBox implements=mx.controls.listclasses.IDropInListItemRenderer ... ... This gives error Interface method 'get listData' in namespace 'mx.controls.listclasses:IDropInListItemRenderer' not implemented by class 'careerRowRenderer' Yes, you

[flexcoders] Re: How to implement custom drawing for selected list items?

2006-03-13 Thread tobiaspatton
Hi Manish. I never knew about the implements tag for MXML components. It seems obvious now, but I never saw it mentioned in documentation or example code. My custom selection behavior is mostly working now. I've got one anomaly that I need to track down. If it starts looking like a bug, I'll

RE: [flexcoders] Problem with datagrid, e4x data, and checkbox cellrenderer. Flex (2.0 b1)

2006-03-13 Thread Jason Hawryluk
Here is a little example to show the problem. Run the below and click one of the check boxes (no updates). Is the data source (in this case the xml var) not supposed to update here? Also if i don't set the editorProperty="selected" then i get an error Property text not found on

[flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread dos dedos
Google has purchased at least one company that uses Flash or Flex (a Web analytics startup) but their own internal efforts seem to be always focused on AJAX ... e.g. the latest Google Mars (http://www.google.com/mars/)So it's fair to wonder why Google isn't doing more with Flex at this time ...

[flexcoders] RE: View helpers

2006-03-13 Thread Venu Vasireddy
Title: [flexcoders] File - flexcodersFAQ.txt It decouples the presentation tier with business tier. So from JSP you never has to access EJB or DAO directly, It is done through "View Helper" in the form bean (JSP usebean) or as JSTL tags. But with MVC, JSP never have to access

RE: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread Jonathan Miranda
Well my best guess is mass-market appeal (Flash player doesnt work on everything) and Flex 2 is still beta (Flex1 and Flex1.5 were nice but not near as sexy from a usability standpoint). _ Jonathan Miranda Flexible Master of the Web Try not

[flexcoders] Re: datagrid column assistance needed

2006-03-13 Thread Doug Lowder
Hi Gary, AS2 does have a restricted version of the eval() function, but it's been removed for AS3 so use it at your own risk. You may not need eval(), though. You already have a reference to the list object (the listOwner variable), so you can probably supply a function or variable within

Re: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread JesterXL
AJAX is here, works, has a large community, is an old technology and thus has a plethora of resources. Flex 2 isn't publicy out yet in an official capacity and Flex 1.5's price point excludes a lot of those types of endeavors. Yahoo uses both; they area big company. Yahoo Maps utilized

Re: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread dos dedos
Yahoo has a lot of efforts in regards to Flex Flash, you just probably haven't read about them, is all, or they didn't get as widely publicized.That's what I wanted to find out ... thanks for pointing it out!!!JesterXL [EMAIL PROTECTED] wrote: AJAX is here, works, has a large

RE: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread dos dedos
I agree re: no envangelismHowever, it's very helpful for some of of us to understand the context and not just the content of what we're getting into. :)Nick Weekes [EMAIL PROTECTED] wrote: personally id rather not see a technology evangelism debate appear on this forum, thats a little OT

Re: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread Jignesh Dodiya
Jesse has really a mature idea on this.. Don't u think, this forum can bemore fruitfull if anybody from Adobe do share his/her idea on this forum. Afterall its their duty to make people encourage to use flex over AJAX, and the community always likes to hear Flex expert's

RE: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread Nick Weekes
personally id rather not see a technology evangelism debate appear on this forum, thats a little OT for my liking. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jignesh DodiyaSent: 13 March 2006 18:17To: flexcoders@yahoogroups.comSubject: Re: [flexcoders]

[flexcoders] Echo Console

2006-03-13 Thread Mi Shikha
I have copied fast directory in my server root. I am trying console through mxml file with button click event as mx:Button label="Info message" click="Echo.info('This is my info message.');"/ however, when I run, I get no error. But when I click , I do not get echo console either. I did

Re: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread JesterXL
Scary. - Original Message - From: Claus Wahlers To: flexcoders@yahoogroups.com Sent: Monday, March 13, 2006 1:11 PM Subject: Re: [flexcoders] Google, Yahoo hooked on AJAX? you have to download the entire Flex 2 package just to get it (which is a good thing).not true,

Re: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread Michael Schmalle
I think it will be 'the proof is in the pudding'. BTW, isn't it the actual developers like us that make a technology seen and be competitive ? :) It's all in the implementation, meaning, users are conditioned to what they see and if they see usable flex2 apps in a year, paradigm shift happens.

[flexcoders] Re: Echo Console

2006-03-13 Thread Doug Lowder
Are you running the console and your application simultaneously? The FAST Echo Console is a separate application that needs to be running before your application starts. In another browser window, browse to EchoConsole.mxml at the appropriate location and port on your server. Then, reload

[flexcoders] Flex2 :: Component-Inheriting Styles :: Help

2006-03-13 Thread Michael Schmalle
Hello, Lets say we have Component and SubComponent(composite inside Component, queued in Component.allChildrensList). 1) SubComponent uses getStyle(sizerThickness) How do I get this to where you call Component.setStyle(sizerThickness) and through inheriting this style, SubComponent can use

[flexcoders] Re: Google, Yahoo hooked on AJAX?

2006-03-13 Thread pk_wasp
You mean we are only allowed to discuss technical issues with Flex 1.x and Flex 2.x Beta on this mailing list? Personally I find the hardest (and most fustrating) thing with Flex is trying to sell the idea of it to management at work as a platform for building rich internal enterprise

[flexcoders] flex.data package

2006-03-13 Thread denny431
Hello everyone, I am trying to use the flex.data.ChangeObject class in an Assembler Java Class such as is used in the Flex 2.0 samples. Does anyone know where I may find this library to install so that I may compile this Java class? Dennis -- Flexcoders Mailing List FAQ:

RE: SPAM-LOW: [flexcoders] FES .Net

2006-03-13 Thread Clarke Bishop
Do you know about Blue Dragon?The language isCFML and it can run on top of .Net just like CF runs on top of Java. This might help you with your migration! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, JeffSent: Monday, March 13, 2006 10:54 AMTo:

[flexcoders] How to extend a radiobutton component?

2006-03-13 Thread Alberto Albericio
Hi all, I want to extend the RadioButton component so that it becomes something like: the radiobutton itself + something else (vbox, canvas, ...) How can I do this? Right now, Im trying this: mx:RadioButton xmlns:mx=http://www.macromedia.com/2005/mxml; xmlns=* selected={mySelected}

Re: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread Clint Modien
My guess is the consideration for the people on dial up. My mom and dad can only get 28.8 (sometimes they connect @ 14.4) (That's like 3KB/sec max transfer.) An average flex app... is like what... 200KB ?200KB / 3KB/sec = (start run calc) 66.66 seconds... I go crazy when I visit. (This does

Re: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread dos dedos
Usable pudding?Michael Schmalle [EMAIL PROTECTED] wrote:I think it will be 'the proof is in the pudding'. BTW, isn't it the actual developers like us that make a technology seen and be competitive ? :) It's all in the implementation, meaning, users are conditioned to what they see and if

[flexcoders] Re: Capture events a la the underlying transparent window from PopUpManager

2006-03-13 Thread dopenhagen
Hi Tony, Thanx a bunch for you reply. I reckon that you are absolutely right. It seems that the issue is addressed in Flex 2.0 and AS3 thus indicating that it is a critical issue in Flex 1.5 and AS2. What bothers me is that it seems to be solvable since buttons and other

[flexcoders] enumerable instance properties

2006-03-13 Thread Alisdair Mills
Hi, I am trying to use a for in loop to access instance properties in AS3 but it isn't finding any so I have a value object public class VO { public var foo : String ; } then if I pass an instance of this and try and access it's properties for ( var prop : String in myVO )

Re: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread Michael Schmalle
Figure of speech... ;-) First you boild the water, then you add the pudding mix milk, then you stir with love, then you let simmer, then you refirgerate for half a day, then it taste mmm mm good. But, it wans't pudding to begin with, only if you read the directions first. :) Peace, MikeOn

Re: [flexcoders] Google, Yahoo hooked on AJAX?

2006-03-13 Thread dos dedos
Thats' right! we're developers, we make our own pudding! :)Michael Schmalle [EMAIL PROTECTED] wrote:Figure of speech... ;-) First you boild the water, then you add the pudding mix milk, then you stir with love, then you let simmer, then you refirgerate for half a day, then it taste mmm mm

RE: [flexcoders] Re: WSDLResponse not resolvable

2006-03-13 Thread Jonathan Miranda
Heres a doosey then the exact same call using Flex 1.5 works completely fine. Flex 2 I get this error.so either Flex 1.5 doesnt care about the WSDL problem or Flex2 changed something about not allowing the return of complex objects in a webservice.

[flexcoders] exporting a flex swc and using it in flash.

2006-03-13 Thread Clint Modien
So the guy I sit next too has successfully packaged code into a swc and uses it in flash 8 but he asked if he had to make the mxp file out of the swc everytime? Not exactly a flex question I know... but I thought someone here would know. I would think that you could just drop the swc into the

[flexcoders] list.selectedIndices has the wrong values

2006-03-13 Thread tobiaspatton
Hello list; I have a list with multiple selection turned on. When I examine the selectedIndices attribute of the list, the values seem to be erroneous. For example, if my list looks like this: one two three four five I click on one and then shift-click on two. At this point selectedIndices

[flexcoders] Re: list.selectedIndices has the wrong values

2006-03-13 Thread tobiaspatton
One more strange thing: if I select five and then shift- select one, the selectedIndices attribute is correct. --- In flexcoders@yahoogroups.com, tobiaspatton [EMAIL PROTECTED] wrote: Hello list; I have a list with multiple selection turned on. When I examine the selectedIndices

RE: [flexcoders] Re: Component that has event listeners and handles it's own event

2006-03-13 Thread Gordon Smith
In Flex 1.X, dispatchEvent() is implemented in AS2 using a for-in loop over an Object holding all the listeners. I think AS2 didn't technically guarantee the for-in order for an object's properties, but I believe the player's implementation actually consistently enumerated them in the reverse

RE: [flexcoders] enumerable instance properties

2006-03-13 Thread Gordon Smith
In AS3, only dynamic properties show up in for-in loops, and there is no 'enumerable' attribute. However, you can use the flash.util.describeType() method to discover the public properties and methods of a non-dynamic class. - Gordon -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Capture events a la the underlying transparent window from PopUpManager

2006-03-13 Thread Gordon Smith
Like Manish, I'm also rusty now on 1.5, but my recollection is the same: Setting event.bubbles = false in your Panel's mouseDown handler should prevent it from bubbling up the parent chain. And if this doesn't work and we can't figure out how to prevent the bubbling, then you could put protection

[flexcoders] identity tree level when on click ?

2006-03-13 Thread sinacapho
Dear all, it that any possible way to find our the node level on a cellpressed node in the tree controls? thx capho -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: