Re: [flexcoders] I've got me data bindings in a terrible twist. FB2b3

2006-06-09 Thread Will Morgan
Hey Barry - thanks for the reply. I sort of get your explaination. ValueObjects and binding UI to them. But is it a two way street with results from a webservice? Do results bind to the VO as well?As you can tell - I'm not ready for Cairngorm yet! I've got to get down with screwing things up my

[flexcoders] 2 Flash players, 2nd one seems to take over keyboard events

2006-06-09 Thread John Grden
I have my flex app open in the 9player, and a movie running in the IDE. If I open the flex app second, it captures the keyboard events. If I open the app in the IDE second, then flex app is not generating keyboard events either I'm missing something or there's a known bug/issueAnyone else

Re: [flexcoders] I've got me data bindings in a terrible twist. FB2b3

2006-06-09 Thread Barry Beattie
I sort of get your explaination. more experianced ppl will chime in with better explainations (just keep asking) As you can tell - I'm not ready for Cairngorm yet! and I'm still trying to keep up. S'ok. I guess it's time to buy that Flex book... carefullIIRC, one of the changes

[flexcoders] two direction binding and cairngorm

2006-06-09 Thread Larry Liang
As far as I know, in flex 2b3, if you use {} for data binding. it's a one way binding: source = {destination}. However, if you need the binding to work in two ways, do you do another one but switch the source and destination? The reason I ask this question is that in cairngorm, you can bind

[flexcoders] Runtime code evaluation

2006-06-09 Thread Damien Mandrioli
Hello, I have an open question: I dont think there is an eval function in AS3 (certainly for security reasons), do you have an idea for doing such a thing? Thanks, Damien __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Multithreading?

2006-06-09 Thread n51red
Is there any mechanism for multithreading in Flex(2.0), such that client side processing can continue without freezing the user interface? Thanks, N51 Yahoo! Groups Sponsor ~-- Home is just a click away.  Make Yahoo! your home page now.

[flexcoders] flex2b3 - how to test the SpriteExample in docs (for eg)

2006-06-09 Thread bhaq1972
silly question - how do we test the actionscript class examples found in the live docs. eg the SpriteExample class or the KeyboardEventExample class. Yahoo! Groups Sponsor ~-- Everything you need is one click away.  Make Yahoo! your home page 

Re: [flexcoders] two direction binding and cairngorm

2006-06-09 Thread Graham Weldon
Question one: I would approach this a little differently Rather than attempting to create a double-binding mechanism. Take advantage of the ModelLocator, and rework the target of the data update from the datagrid. The ItemEditor or after edit event should update the ModelLocator directly,

[flexcoders] RV: insert image on richtexteditor

2006-06-09 Thread Jesús Iglesias
Title: Mensaje Any help on this? -Mensaje original-De: Jesús Iglesias [mailto:[EMAIL PROTECTED] Enviado el: jueves, 08 de junio de 2006 11:51Para: 'flexcoders@yahoogroups.com'Asunto: insert image on richtexteditor Hi, I have added a new control to a richtexteditor to let

Re: [flexcoders] RemotingConnection not found in Mike Potter's Flex2AMFPHP tutorial

2006-06-09 Thread Duncan McMillan
Thanks Phil I'm going to try the Restaurant example over the next few days and see how I get on. Duncan Phil Marston wrote On 06/08/06 16:26,: Hi Duncan, I think you're getting into some specifics to do with your setup I can't answer. I've only briefly touched F1.5 and am really only

Re: [flexcoders] Flex 1/5 : still fail to lock input...

2006-06-09 Thread Tom Chiverton
On Thursday 08 June 2006 17:12, Antoine Malpel wrote: I also tried with myRootCanvas.enabled = false but no :( why ? I mainly use this when I want to create a popup Why not just have the popupManager create the popup as modal, so the user can't click anywhere else ? -- Tom Chiverton

[flexcoders] Firefox 1.5.0.4 Flex Webservice

2006-06-09 Thread isvibilsky
Hi, I have a problem to access a webservice when a flex application is under Firefox 1.5.0.4 browser. Can't figure out what is going on. Everything is on the same box (localhost). The application works fine under standalone flash player 9. The error I'm getting is related to socket timeout. Anyone

[flexcoders] Event when Data is Loaded ?

2006-06-09 Thread Jean-Luc ESSER
Hi there, I'm trying to show a component on stage only when its dataProvider hasfinished populating the component. Let's take for exemple a datagrid with an itemRenderer. How would i set my datagridproperty to visible only when all data from its dataProvider has been loaded and its

RE: [flexcoders] Is Adobe a reasonable business partner?

2006-06-09 Thread Jim Robson
Hello all, I just want to confirm Matts note. Adobe has responded professionally and effectively to my concerns. Jim From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin Sent: Thursday, June 08, 2006 4:58 PM To:

Re: [flexcoders] Multithreading?

2006-06-09 Thread Michael Klishin
n51red wrote: Is there any mechanism for multithreading in Flex(2.0), such that client side processing can continue without freezing the user interface? If you mean remote datasource polling it's not necessary because everything in Flash platform was and will be asynchronous. What about

Re: [flexcoders] How to draw different Flex Controls/Containers at runtime?

2006-06-09 Thread Tom Chiverton
On Friday 09 June 2006 00:44, Jawad Anwar wrote: Can an Action Script render my Flex controls/containers at runtime? For e.g.: If 1st object type = Checkbox use Flex mx:CheckBox If 2nd object type= Text use Flex mx:ComboBox … and so on Yes. If (..){ var

RE: [SPAM] [flexcoders] Event when Data is Loaded ?

2006-06-09 Thread Jim Robson
Jean-Luc, How about if you initialize the DataGrids visible property to false until the data is loaded, and write a handler for the complete event of the URLLoader class that sets the DataGrids visible property to true when all the data is loaded? Would that work? Docs on the complete

RE: [flexcoders] Event when Data is Loaded ?

2006-06-09 Thread Dirk Eismann
You may want to try the updateComplete() event: mx:DataGrid updateComplete=doStuff() dataProvider={dp}/ this should get called after the DataGrid has updated itself due to internal commitProperties(), measure(), or updateDisplayList() calls. Dirk. Yahoo! Groups

Re: [flexcoders] Event when Data is Loaded ?

2006-06-09 Thread Jean-Luc ESSER
Nope, this won't work as the updateComplete event is dispatched xx times during the process ! No way to identify which one is the last one. Anyone ? JL - Original Message - From: Dirk Eismann To: flexcoders@yahoogroups.com Sent: Friday, June 09, 2006 2:04 PM

RE: [flexcoders] Event when Data is Loaded ?

2006-06-09 Thread Jim Robson
Jean-Luc, How about if you initialize the DataGrids visible property to false until the data is loaded, and write a handler for the complete event of the URLLoader class that sets the DataGrids visible property to true when all the data is loaded? Would that work? Docs on the complete

Re: [flexcoders] Event when Data is Loaded ?

2006-06-09 Thread Jean-Luc ESSER
I'm not loading data via URLLoader. Maybe you got me wrong. Sorry if i wasn't clear. Whichever data is sent to my DataGrid's dataProvider, i want to handle an event after the datagrid has loaded all this data. In my specific case, my dataProvider is binded to a valueObject in the

[flexcoders] Flipping vertical scrollbars on left hand edge?

2006-06-09 Thread Daniel Tuppeny
The default VScrollBar component in flex isn't symetrical - it has rounded corners on the "outside edge". Is there a way to flip this over, because my scrollbar is on the left hand side (next to the axis of a chart), and it just doesn't look quite right. I tried setting rotation="180",

[flexcoders] Flex 2 Beta 3 Charting component

2006-06-09 Thread Tarun Telang
Hello, How can I get the Serial Number for Flex 2 Beta 3 Charting component? Regards, Tarun Yahoo! Groups Sponsor ~-- Get to your groups with one click. Know instantly when new email arrives

[flexcoders] Definition _ could not be found: itemRenderer component in Flex2Beta3

2006-06-09 Thread polestar11
Hi there I am using a datagrid with an itemRenderer component for one of the columns. I have never been able to get this to work in Flex2Beta3, always getting the error: Definition (my component) could not be found. [CODEGEN ... (path to my file)] If I use the component outside of a datagrid

[flexcoders] AMF server-side page redirection

2006-06-09 Thread niladri_gupta
Hi there Is server-side redirection possible through AMF in Flex 2.0 Beta 3 possible? For example, after the user enters his Login name and password, the business delegate will do the server-side authentication. On success, what do I need to do to carry his account-details to another MXML

[flexcoders] Flipping vertical scrollbars on left hand edge?

2006-06-09 Thread Daniel Tuppeny
The default VScrollBar component in flex isn't symetrical - it has rounded corners on the "outside edge". Is there a way to flip this over, because my scrollbar is on the left hand side (next to the axis of a chart), and it just doesn't look quite right. I tried setting rotation="180",

[flexcoders] RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Jesús Iglesias
Title: Mensaje Nobody has made somthing similar? -Mensaje original-De: Jesús Iglesias [mailto:[EMAIL PROTECTED] Enviado el: miércoles, 07 de junio de 2006 17:29Para: 'flexcoders@yahoogroups.com'Asunto: resizable, maximize and minimize TileWindow Hi all, Have any of you made a

Re: [flexcoders] RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Michael Schmalle
Hi, Search the archives, I just answered a question like this yesterday :) A lot of the times, a question like this needs a url to a tutorial. Don't think anybody has not done it, it's that it is pretty hard to write in a mailing list reply. Peace, MikeOn 6/9/06, Jesús Iglesias [EMAIL

[flexcoders] Flex 1.5 :: Webservices and Custom Components

2006-06-09 Thread Pablo Apanasionek
I am somehow doing some refactoring on my app and, instead of having multiple mxml, i'm changing to one mxml that loads multiple mxml in popups, getting some sort of window-manager. Every mxml had its own webservices tag and worked perfectly. In the new scenario I left itthat way. Now,

Re: [flexcoders] Flipping vertical scrollbars on left hand edge?

2006-06-09 Thread Michael Schmalle
Hi, Your best bet is to create a new skin set for the left hand scroll bar. That would be the 'proper' solution for your problem ;-) Most controls are skinned with the 'right hand' approach. Peace, MikeOn 6/9/06, Daniel Tuppeny [EMAIL PROTECTED] wrote: The

[flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Jim Robson
Per the docs, the useHandCursor property is inherited from the Sprite class. However, it doesnt seem to work on the Text control. When set to true, the mouse cursor remains an arrow instead of changing to a button when over the text field: mx:Text id=txtItem text=The quick brown fox

Re: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Jean-Luc ESSER
I have the exact same problem, anddo not have a solution. If you put handCursor on a Box where you text resides, it does not work either. Best, JL - Original Message - From: Jim Robson To: flexcoders@yahoogroups.com Sent: Friday, June 09, 2006 3:18 PM Subject:

[flexcoders] Better Display Quality

2006-06-09 Thread isvibilsky
Hi All, Is there a way to set a rendering quality of the UI elements for the entire Flex application? Even though I use (high quality) for the Flash player I still don't get a crisp view of the basic UI elements (textinput, buttons, borders). Mine look kinda blurry. I use a default style. Thanks

Re: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Michael Schmalle
Hi, 1) the internal textfield has no useHandCursor property, this kills one hack. 2) Text control has no border, so there is nothing to hit when you set the component's useHandCursor to true. 3) The internal textfield is eating the event 4) wrap it with a VBOX or the like This does work ?xml

[flexcoders] flex2b3 - keydown re-visted

2006-06-09 Thread bhaq1972
Hi, i had this problem in flex2b2 but now have decided to tackle this again in b3. In this example (see below), 1) set focus on the label (using your mouse), and then hit your keyboard...nothing happens 2) now try again but this time set focus on the button (using mouse) and then hit your

[flexcoders] Re: How to draw different Flex Controls/Containers at runtime?

2006-06-09 Thread Renaun Erickson
Things to consider when doing runtime component creation. If you use addChild method your SWF size will include all the components that you might want to create regardless if you use them or not. You can create RSL's so the components are downloaded once and shared across your SWF

[flexcoders] flex2b3 - flexbuilder codegen errors

2006-06-09 Thread bhaq1972
Hi again I thought i might mention this as well (as i've seen it recently). Sometimes when i compile my flex app, i get a codegen error. i dont think there is a problem because when i comment out the code ..build...then uncomment and re-build the problem goes away.

RE: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Jim Robson
Hi Mike, Thanks for looking into this. I tried your suggestion, but the cursor still turns back into an arrow when it gets over the text field. My code is below; if I did not correctly follow your suggestion, please let me know where I went wrong: ?xml version=1.0 encoding=utf-8?

RE: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Jim Robson
Never mind my last post I had missed the creationComplete attribute in the Application tag. It works now! Thanks Mike! From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Schmalle Sent: Friday, June 09, 2006 9:48 AM To:

[flexcoders] Re: Datagrid Help

2006-06-09 Thread s_hernandez01
Thanks, Tracy, I've been getting alot of feedback saying that the datagrid is not functioned to perform that way, looks like I'm going to have to do a grid manually. Thanks for the help anyway. Ciao Sal --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: If you really

Re: [flexcoders] Flex 2 Beta 3 Charting component

2006-06-09 Thread Tom Chiverton
On Friday 09 June 2006 13:54, Tarun Telang wrote: How can I get the Serial Number for Flex 2 Beta 3 Charting component? Wait tell the end of the month when it's released and buy a license :-) -- Tom Chiverton This email is sent for and on

[flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Doug Lowder
Flex 1.5? http://www.flexdaddy.info/2005/03/06/resizable-and-collapsable-titlewindow-flex-15/ I know someone on this list has created one for Flex 2, but I'm not sure if the source is available. Doug --- In flexcoders@yahoogroups.com, Jesús Iglesias [EMAIL PROTECTED] wrote: Nobody has made

Re: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Peter Baird
Title: Re: [flexcoders] F2B3: useHandCursor property of Text control Manish Jenathi blogged about this a while back, but Im not seeing the blog entry anymore. Anyway, the following works, and I believe is the recommended approach: mx:Text width=100% text=hello useHandCursor=true

[flexcoders] FDB usage

2006-06-09 Thread maxym.hryniv
Can anyone suggest me a graphic environment for windows (or better eclipse) that support gde??? I want to use it with fdb debugger Yahoo! Groups Sponsor ~-- You can search right from your browser? It's easy and it's free. See how.

Re: [flexcoders] RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Tom Chiverton
On Friday 09 June 2006 11:47, Jesús Iglesias wrote: Nobody has made somthing similar? There was a post just the other day, or you could do worse than look at how the 'drawer' GUI elements are constructed here: http://examples.kuwamoto.org/drawer/v0.6/DrawerDemo.html (right click for source) --

Re: [flexcoders] AMF server-side page redirection

2006-06-09 Thread Tom Chiverton
On Friday 09 June 2006 13:10, niladri_gupta wrote: Is server-side redirection possible through AMF in Flex 2.0 Beta 3 possible? No, however the Flash app can alter the URL. For example, after the user enters his Login name and password, the business delegate will do the server-side

Re: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Michael Schmalle
opps, Jim, looked at your last name :) MikeOn 6/9/06, Michael Schmalle [EMAIL PROTECTED] wrote: AH!!! That was one other thing I was going to try!!! mouseChildren. I couldn't get why it would matter. That is what you get for trying to multi-task. Rob, I gave it my best ;-) Peace, MikeOn

[flexcoders] Tree getIsOpen Where is it?

2006-06-09 Thread Oscar . Cortes
There was a getIsOpen method in 1.5 to test if a node was open. How can we this in F2B3? Thanks --- This e-mail message (including attachments, if any) is intended for the use of the individual or entity to which it is

RE: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Jim Robson
Peter: That works perfectly, and its not even a workaround! Thanks very much! Jim From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Peter Baird Sent: Friday, June 09, 2006 11:01 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Michael Schmalle
Yeah, That might have been me, but the source isn't available since it's a composite component that belongs in a set comming out. Peace, MikeOn 6/9/06, Doug Lowder [EMAIL PROTECTED] wrote: Flex 1.5?

RE: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Jim Robson
No problem, Mike, it happens all the time. The price I pay for having a first name embedded in my last name. J From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Schmalle Sent: Friday, June 09, 2006 11:07 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] The End, A: YES, YES Is Adobe a reasonable business partner?

2006-06-09 Thread Valy Sivec
Robert, I'm kinda reluctant when I see people that know absolute truth and see all sorts of conspiracy around them.I believe M$ did a lot to this industry ( I'm not even a .net programmer ) in terms of innovation and software development and at this moment Adobe(Macromedia) still have to grow

Re: [flexcoders] F2B3: useHandCursor property of Text control

2006-06-09 Thread Michael Schmalle
AH!!! That was one other thing I was going to try!!! mouseChildren. I couldn't get why it would matter. That is what you get for trying to multi-task. Rob, I gave it my best ;-) Peace, MikeOn 6/9/06, Peter Baird [EMAIL PROTECTED] wrote: Manish Jenathi

Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Michael Schmalle
PS, If all he wants to do is add buttons, he can find the answer in my last post about using addChild() with the titleBar instance and overriding layoutChrome() Peace. MikeOn 6/9/06, Michael Schmalle [EMAIL PROTECTED] wrote: Yeah, That might have been me, but the source isn't available since

Re: [flexcoders] FDB usage

2006-06-09 Thread Andriy Panas
Hello maxym.hryniv, mh Can anyone suggest me a graphic environment for windows (or better mh eclipse) that support gde??? I want to use it with fdb debugger What is gde? -- Best regards, Andriymailto:[EMAIL PROTECTED] Yahoo! Groups

[flexcoders] Camera object

2006-06-09 Thread Andrew Trice
Hi Everyone, Does anyone the specifics of what defines a camera to the Camera object? Webcams work great, but what if I have other devices that stream video content? Is there a specification anywhere that states the interface/criteria that the device must adhere to in order to be

Re: [flexcoders] Tree getIsOpen Where is it?

2006-06-09 Thread Tom Chiverton
On Friday 09 June 2006 16:01, [EMAIL PROTECTED] wrote: There was a getIsOpen method in 1.5 to test if a node was open. How can we this in F2B3? http://livedocs.macromedia.com/labs/1/flex20beta3/langref/mx/controls/Tree.html#isItemOpen() -- Tom Chiverton

[flexcoders] Need help to select multiple item from a list

2006-06-09 Thread Sukhminder Singh
Hi there... I have 2 lists. First list contains all the items, from which a user can drag and drop items into his selected list. Then I want to capture all the items a user has in his selected list. Anyone out there knows how to get all the items IDs from the second list which will be later

[flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread jpwarmer
Hi, i did something like that with the Panel Class, let me tell you what I did... I extend the Panel class an add a few instance variables (the image for the controls) mx_internal var minimizeButton:Image; mx_internal var maximizeButton:Image; mx_internal var

[flexcoders] Return value from ExternalInterface.call method

2006-06-09 Thread drome.dario
Hi people, I can not achieve to get any return value from javascript other than null. In th HTML container I have a functions like this: function f(p) { alert(p); return(p); } In my flex app I call the browser function in the following way: var ret:*; ret = ExternalInterface.call( f,

[flexcoders] Flex2 :: \r\n in returned db query :: Tips?

2006-06-09 Thread Michael Schmalle
Hi, I have had this problem for a long time; Is there any technique to get rid of the Windows \r\n other than doing a split().join() on the text before it is inserted into a TextArea for example? This is so anoying. I tried condenseWhiteSpace but that didn't work. Am I missing something

Re: [flexcoders] Multithreading?

2006-06-09 Thread Scott Langeberg
Well, there is no (process) blocking in Flash, so I'm not sure how you could ever freeze the user interface (other than endless loops!). Flash is basically an asynchronous, event-based VM. In MVC parlance, your controller would be set up to listen for events dispatched by the user interface

[flexcoders] Re: FDB usage

2006-06-09 Thread maxym.hryniv
OOps. Sorry, GDB. --- In flexcoders@yahoogroups.com, Andriy Panas [EMAIL PROTECTED] wrote: Hello maxym.hryniv, mh Can anyone suggest me a graphic environment for windows (or better mh eclipse) that support gde??? I want to use it with fdb debugger What is gde? -- Best

Re: [flexcoders] Re: FDB usage

2006-06-09 Thread Andriy Panas
Hello maxym.hryniv, mh OOps. Sorry, GDB. Are you looking at GDB as a rival debugger to FDB?! May I ask why?! -- Best regards, Andriymailto:[EMAIL PROTECTED] Yahoo! Groups Sponsor ~-- Get to your groups with one

Re: [flexcoders] Re: RV: resizable, maximize and minimize TileWindow

2006-06-09 Thread Jeff Tapper
Take a look at the resizable panel: http://jeff.mxdj.com/sizeabletitlewindow.htm and panel with buttons:http://jeff.mxdj.com/flex_2_maxrestorepanel_class.htm for some ideas. At 11:25 AM 6/9/2006, jpwarmer wrote: Hi, i did something like that with the Panel Class, let me tell you what I did...

Re: [flexcoders] Flex2B3 :: Panel anti-aliasing :: How do I get it back

2006-06-09 Thread Michael Schmalle
OK, To those that might have this problem or find it in the future. For what I can tell, Flex is changing the cacheHeuristic property of the popup when it is gettng resized. For me to solve my problem completly, I have to reassign this property in the creationCOmplete handler. Adobe, I

[flexcoders] beta3 -- E4x to Actionscript objects

2006-06-09 Thread sufibaba
Dear All, I am trying to decode an E4x XMLList into actionscript objects. In mx.rpc.xml.SimpleXMLDecoder, there exists a decodeXML() function that converts an XMLNode but doesn't seem to work for E4x. Has anyone had experiences with this type of situation? Thanks in advance, Tim

RE: [flexcoders] flex2b3 - keydown re-visted

2006-06-09 Thread Matt Horn
You can add the listener to the stage object: stage.addEventListener(KeyboardEvent.KEY_DOWN, keydown_handler); Or you can set the focus on the app in init(): application.addEventListener(KeyboardEvent.KEY_DOWN, keydown_handler); application.setFocus(); Hth, Matt Horn Flex

[flexcoders] Re: FDB usage

2006-06-09 Thread maxym.hryniv
No! I'm looking for a GUI, that supports gdb to use it with fdb. --- In flexcoders@yahoogroups.com, Andriy Panas [EMAIL PROTECTED] wrote: Hello maxym.hryniv, mh OOps. Sorry, GDB. Are you looking at GDB as a rival debugger to FDB?! May I ask why?! -- Best regards, Andriy

[flexcoders] ItemRenderer and Events

2006-06-09 Thread jpwarmer
Hi, I got a DataGrid with an ImageItemRenderer (that`s a custom component that shows an image on the cell). I want to dispatch an event when users click on the image. How can I do that??? TIA, JP Yahoo! Groups Sponsor ~-- You can search

RE: [flexcoders] ItemRenderer and Events

2006-06-09 Thread Jim Robson
Can you just use the buttonMode and click attributes? ImageItemRenderer id=myImageItemRenderer buttonMode-true click=imageItemEventHandler(): From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jpwarmer Sent: Friday, June 09, 2006 11:01 AM To:

RE: [flexcoders] Flipping vertical scrollbars on left hand edge?

2006-06-09 Thread Ely Greenfield
flipping the skins in an editor and reapplying them is probably the right answer. But you could try just setting the scale of the scrollbar to -1 ;) Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel TuppenySent: Friday, June 09, 2006 3:48 AMTo:

[flexcoders] Flex and e-forms

2006-06-09 Thread Jonathan Bezuidenhout
Hi everyone,I know this question is a bit nebulous - but not as bad as how long is a piece of string.Has anyone had any experience of integrating e-forms with Flex? In our case, we want our users to be able to create their own forms, fill them in, and display that info back to them - and also

RE: [flexcoders] Flex 1.5 LineChart question

2006-06-09 Thread Ely Greenfield
LineChart horizontalAxisRenderer AxisRenderer showLine="false" showLabels="false" tickPlacement="none" / /horizontalAxisRenderer verticalAxisRenderer !-- same thing -- Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jgraham_usSent: Thursday,

RE: [flexcoders] A: YES, YES Is Adobe a reasonable business partner?

2006-06-09 Thread Robert Thompson
Valy, I can end this thread in a short statement or a long one.SHORTAdobe, I believe will play by the rules and they are a reasonable biz partner.But as Borat might say Microsoft "If she cheat on me, I will Crush her!"LONGStay with the issue that's been taken off, so we can let this end, I

[flexcoders] CDT GDB debugger with fdb

2006-06-09 Thread maxym.hryniv
I'm trying to use gdb-compatible environment from cdt eclipse plugin with flex debugger fdb.exe. Does anyone know how to configure the cdt to work with fdb Yahoo! Groups Sponsor ~-- Everything you need is one click away.  Make Yahoo! your

[flexcoders] Convert AJAX to Flex?

2006-06-09 Thread gwilow
Lets say that you have been developing an AJAX application (using ClearNova's ThinkCap) and you are displeased with the result. What options might one have to convert that AJAX application over to Flex? Is there a way to convert an AJAX application over to Flex? If Flex is not a good option for

[flexcoders] Re: ItemRenderer and Events

2006-06-09 Thread jpwarmer
--- In flexcoders@yahoogroups.com, Jim Robson [EMAIL PROTECTED] wrote: I already try that way.the problem is that I can't catch the event that the renderer dispatch...I don't want that the renderer chatch the event.The DataGrid must catch it, so i can do something with it... mx:DataGrid

RE: [flexcoders] Convert AJAX to Flex?

2006-06-09 Thread Carson Hager
Dan, We know quite a bit about ThinkCAP as well as Flex. Unfortunately, this is going to be a manual process. There really is no good way to go from TC to Flex or any other RIA. That being said, I'd agree that what you're doing in principle isa wise choice. Carson

[flexcoders] Is it posible to bind this xml to textarea?

2006-06-09 Thread tonyx_788
is it posible to bind this kind of xml to a FLEX Textarea? doument:document-content text:p text:style-name=P1 text:span text:style-name=T1A orillas de una laguna./text:span text:p text:style-name=P2Libro de Edmundo Batres Ledón, Roque Ballinas Ballinas, Francisco Fonz

[flexcoders] BindingUtils and ArrayCollection.filter questions

2006-06-09 Thread Tom Bray
If you run the sample code below and click the Update Filter button, both lists get filtered but I only want the one on the right to be filtered. I have two ArrayCollections, one bound to the other via BindingUtils and I didn't expect that filtering the target AC would also filter the source AC.

[flexcoders] stupid question, CSS and XML

2006-06-09 Thread tonyx_788
Hi,anyone knows how i can make a specific text (in a textarea) boldhere is part of theXML*datosnombre dato="A orillas de una laguna."desc B353/B Libro de Edmundo Batres Ledón, B353/BRoque Ballinas Ballinas, B353/BFrancisco Fonz Chan, consta de 75 pp. La edición fue de 1,000

[flexcoders] Camera object

2006-06-09 Thread Andrew Trice
Anybody have any ideas on this, or know of any documentation? The API doesnt say anything about it really. Thanks, Andy _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY

RE: [flexcoders] Re: ItemRenderer and Events

2006-06-09 Thread Stacey Mulcahy
I think you need to look at IDropinItemRenderer or something like that From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jpwarmer Sent: Friday, June 09, 2006 1:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: ItemRenderer and Events

[flexcoders] Binding to Datagrid.columns

2006-06-09 Thread Brendan Meutzner
Hi All, Before I dive in, I'd like to make not that this thread is sort of a continuation on: http://groups.yahoo.com/group/flexcoders/message/33238?l=1 I'm looking at binding some container widths to the widths of my individual DataGrid columns. I'm putting a drop down box above each datagrid

[flexcoders] Re: stupid question, CSS and XML

2006-06-09 Thread jpwarmer
I believe the error is because of the accent...you should use desc![CDATA[ And.. You could try passing text to the htmlText attribute on the text area --- In flexcoders@yahoogroups.com, tonyx_788 [EMAIL PROTECTED] wrote: Hi, anyone knows how i can make a specific text (in a textarea) bold

Re: [flexcoders] [OT] astroturf (was: Adobe as biz partner)

2006-06-09 Thread John Dowdell
Robert Thompson wrote: By the way, you may want to make sure he doesn't have an alias named Steve Barkto (Google Steve Barkto Incident :-) Whoa. I didn't know about that one, although I had met Rick about that time on CompuServe, and I still read his weblog today.

RE: [flexcoders] flex2b3 - flexbuilder codegen errors

2006-06-09 Thread Tracy Spratt
How do you know what to comment out? When I get the cdoegen error, no file is identified. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bhaq1972 Sent: Friday, June 09, 2006 10:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] flex2b3

[flexcoders] Is this a bug?

2006-06-09 Thread Darren Houle
Why does this... package org.mycomp.iaclean.vo { public class LoginVO implements org.nevis.cairngorm.ValueObject { public var uid : String; public var password : String; } } Return an Interface ValueObject was not found error, but if I import first like

RE: [flexcoders] Flex and e-forms

2006-06-09 Thread David Mendels
Hi Jonathan, I run both LiveCycle and Flex at Adobe. We are working on bringing them together in a few interesting ways. It might be good to have you talk offlist with some folks herewe might not have an answer for you today, but it would help inform us for the future and make sure

[flexcoders] Re: Event when Data is Loaded ?

2006-06-09 Thread Tim Hoff
Hi Jean-Luc, I'm handling a similar situation in the onResult function of the command that gets the data. In the function, I'm casting the lastResult from the RPC call to the VO in the ModelLocator and then changing the view's state to display the data grid. This way the grid isn't

[flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Tim Hoff
Hey Tom, In response to this question and the BindingUtils and ArrayCollection.filter question, I offer this suggestion. In the ModelLocator maintain a single master Array of all the users. Then in each instance of your view components, create a new bound ArrayCollection (dataProvider),

[flexcoders] Re: stupid question, CSS and XML

2006-06-09 Thread Antonio Silva
could you post an example i'm using Flex 2 B1 __Correo Yahoo!Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regístrate ya - http://correo.yahoo.com.mx/ __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] finally!!

2006-06-09 Thread Clint Modien
Improved search!!! Yahoo! http://groups.yahoo.com/local/news.html Clint Modien http://esria.com p. 1.877.TRY.ESRIA ext 706 c. 1.408.489.0750 f. 1.877.828.4436 [EMAIL PROTECTED] __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Is this a bug?

2006-06-09 Thread ben.clinkinbeard
Yep, in AS3 everything must be imported no matter what. See #5 here: http://labs.adobe.com/wiki/index.php/ActionScript_3:Learning_Tips Ben Yahoo! Groups Sponsor ~-- You can search right from your browser? It's easy and it's free. See how.

RE: [flexcoders] Is this a bug?

2006-06-09 Thread Tracy Spratt
I believe it is required. From the Migration doc: It is important to understand that you should import classes with an import statement rather than use the full classname in your code. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darren Houle

[flexcoders] Re: Return value from ExternalInterface.call method

2006-06-09 Thread Tim Hoff
To communicate back to the Flex application you have to reference it by its' id (myMXML) in the HTML page. Something like this: function f(p) { alert(p); document.myMXML.SetVariable(ret,p); } I haven't tested this, but that's the idea. -TH --- In flexcoders@yahoogroups.com,

[flexcoders] Migration: What is the F2 equivalent of TreeNode

2006-06-09 Thread Tracy Spratt
Title: Migration: What is the F2 equivalent of TreeNode One of my apps uses the 1.5 TreeNode class and the treeDataProvider methods to build big complex treeDataProviders. Is this gone completely in F2? Is there any legacy support? Is long term migration goig to require moving to an e4x

[flexcoders] Re: Viewing HTML

2006-06-09 Thread Suzy Lawson
Drome- Thank you so much for your help. I was able to modify your regEx to make it work for my needs. I just needed to add in a piece for return characters and form feeds as well. The regex i used was: var pattern:RegExp = /\n|\r|\f/gi var htmlstr : String = htmlTextString.replace(pattern,

[flexcoders] Re: finally!!

2006-06-09 Thread ben.clinkinbeard
The 'Expand Messages' link is my other favorite addition. Finally, you can view a whole thread on one page! Ben Yahoo! Groups Sponsor ~-- You can search right from your browser? It's easy and it's free. See how.

  1   2   >