RE: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-09 Thread Matt Chotin
You have to simulate private constructors by having the constructor take a class that is inaccessible to other classes (namely putting that class in the same file as the singleton outside of the package block).  Unfortunately I believe the rule is that the constructor of the class has to

RE: [flexcoders] HTTPService

2006-02-09 Thread Matt Chotin
I haven't confirmed this behavior but I've filed a bug pointing to the two XML files. We'll see if QA reproduces. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of José Saldanha Sent: Thursday, February 09, 2006 3:15 PM To: flexcoders@yahoo

RE: [flexcoders] Array serialization for Webservice

2006-02-09 Thread Matt Chotin
Unfortunately I think this may be a known bug. I believe you're going to need to do a literal request format and pass the information in XML yourself to make it work. I don't remember if we may have fixed this in a hotfix, if you have a support contract you may want to ask your rep. Matt -O

RE: [flexcoders] Re: e4x XML question - possible bug?

2006-02-09 Thread Matt Chotin
I'm not sure the filtering predicate operator will work for a variable. I think you're going to need to do this instead: var matches:XMLList = new XMLList(); var i:int = 0; for each (var emp:XML in x.employee) { if (emp[testVar] == testValue) { matches[i++] = emp; } } The e4x compiler i

RE: [flexcoders] Flex 2.0 beta TextArea question

2006-02-09 Thread Gordon Smith
These were examples from someone else that I was trying to help, but that doesn't matter.   You're explanation is correct, except for one detail... when you say "including redrawing if need be". Calling validateNow() doesn't cause the player to redraw during the call, although it may ca

RE: [flexcoders] referencing current object in an array between components (actionscript 2.0)

2006-02-09 Thread Matt Chotin
Something like parent.deleteRow(this) should work. You could declare the deleteRow function like this: //needs fixing for all cases function deleteRow(child:HBox):Void { if (child == null) { child = RowArray[Counter-1]; } myHBox.destroyChild(child); } Matt -Original Message-

RE: [flexcoders] Singleton inline initialization problem?

2006-02-09 Thread Matt Chotin
Hmm, I believe this should work. Can you put together a case that fails regularly? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov Sent: Thursday, February 09, 2006 1:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Sing

RE: [flexcoders] Flex 1.5 : Problem updating value columnCount in TileList

2006-02-09 Thread Matt Chotin
When are you reading those values? Has the TileList dispatched creationComplete yet? And are you sure it's populated when you read it? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of More García Sent: Thursday, February 09, 2006 4:51 AM To: fl

RE: [flexcoders] New Inline cell renderers

2006-02-09 Thread Matt Chotin
I have now filed this.  #158932 for those folks internally who can see it.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda Sent: Thursday, February 09, 2006 5:14 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] New

RE: [flexcoders] Flex store services in web browser cache?

2006-02-09 Thread Matt Chotin
Uh, that doesn't seem good. I'm pretty sure that all web service responses come back with a no-cache header. Can you run a sniffer between the flex client and the web service proxy to see what comes back from the proxy? The no-cache header (along with an expires header) should be there. Wh

RE: [flexcoders] Flex 2.0 beta TextArea question

2006-02-09 Thread Mac Martine
  If I understand you correctly, here’s the difference between your examples…   In your example where you set the vPosition from a Button:   private function setLogVPosition():void {   txtLog.vPosition = txtLog.maxVPosition;  }   …the text in the text area was already set

Re: [flexcoders] Problem with listItemRenderer and AddChild

2006-02-09 Thread Manish Jethani
On 2/9/06, Eric D Anderson <[EMAIL PROTECTED]> wrote: > I tried this with the Flex 2 beta and I don't see any problem. Works for me too. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yah

Re: [flexcoders] Image loader from thumbnail repeater

2006-02-09 Thread Manish Jethani
On 2/9/06, Stephane B. <[EMAIL PROTECTED]> wrote: > Looks like the right solution, but I get the following error: > ReferenceError: Error #1069: Property repeaterIndex not found on > flash.display.Loader and there is no default value > at ProductDetails/___Image2_click() Change "event.target

RE: [flexcoders] Learning AC for Flex 2.0 from scratch: best bet?

2006-02-09 Thread Stephane B.
Thanks! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXLSent: Thursday, February 09, 2006 4:14 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Learning AC for Flex 2.0 from scratch: best bet? Site (AS2) http://www.debreuil.com/docs/   It's how I

[flexcoders] Flex 2 Beta 1 - SpringBeanAdapter

2006-02-09 Thread javanatic23
Does SpringBeanAdapter works with Flex 2 Beta 1 ? any special configuration? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your grou

RE: [flexcoders] Image loader from thumbnail repeater

2006-02-09 Thread Stephane B.
Looks like the right solution, but I get the following error: ReferenceError: Error #1069: Property repeaterIndex not found on flash.display.Loader and there is no default value at ProductDetails/___Image2_click()   any idea? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Re: Problem with listItemRenderer and AddChild

2006-02-09 Thread tobiaspatton
Yes. I am using Flex 2 Beta 1. When you run the application and click on Alpha, is a button appearing underneath Alpha, or Beta? It should be Alpha. Thanks. Tobias. --- In flexcoders@yahoogroups.com, "Eric D Anderson" <[EMAIL PROTECTED]> wrote: > > Hi, > > I tried this with the Flex 2 beta an

RE: [flexcoders] Flex 2.0 beta TextArea question

2006-02-09 Thread Gordon Smith
Sorry, I'm not following you. If you can be more explicit about what did and didn't work (i.e., what's in the body of the function, and how you call it), I can probably explain what's going on. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Beha

RE: [flexcoders] referencing functions within a component

2006-02-09 Thread Gordon Smith
Change click="delete();" to click="parentDocument.delete();", and change function delete() from private to public. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rgwilson26 Sent: Thursday, February 09, 2006 7:39 AM To: flex

Re: [flexcoders] Image loader from thumbnail repeater

2006-02-09 Thread Manish Jethani
On 2/9/06, Stephane B. <[EMAIL PROTECTED]> wrote: > Would you have a syntax recommendation (actual code) for the suggestion > (first reply below)? [old] click="img.load('images/booking/' + repImages.currentItem);" [new] click="img.load('images/booking/' + repImages.getItemAt(event.target.rep

Re: [flexcoders] Rich text Editor ...

2006-02-09 Thread Manish Jethani
On 2/9/06, Jeremy Rottman <[EMAIL PROTECTED]> wrote: > I have a rich text editor component in my app, that allows users to > input text for news and the such. However, I can not figure out how to > get the RTE component to insert the data into the database as html and > no as flat plain text. Has a

Re: [flexcoders] Re: Tilelist event question

2006-02-09 Thread Manish Jethani
On 2/9/06, sufibaba <[EMAIL PROTECTED]> wrote: > Yes, I meant to say object reference. > > > The cell renderer can dispatch an event that would bubble up to the > > Form1.mxml component. The component can catch the event and get a > > reference to the object using "event.target". > > What would be

RE: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-09 Thread Jeff Tapper
Now that I have a real connection, and not just the phone, I can answer a bit more fully. In the DataManager class that I wrote (http://jeff.mxdj.com/as3_datamanager.htm), the DataManager is a Singleton, so it needs a private constructor, sadly, no private constructors are available in AS3, so

RE: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-09 Thread jeff tapper
take a look at the AS3 DataManagger post on my blog for a workaround. Http://jeff.mxdj.com Sent with Wireless Sync from Verizon Wireless Original Message From: "Carlos Rovira" <[EMAIL PROTECTED]> Date: 2/9/06 6:05 pm To: "flexcoders@yahoogroups.com" Subj: [flexcoders] AS3 class const

RE: [flexcoders] embed a movieclip

2006-02-09 Thread Roger Gonzalez
LocalConnection, probably with a FP8-built proxy if you didn't design the FP8 movie for it ahead of time.   There are limitations, but its the only safe approach I know of at the moment.   -rg From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason Y. Kwo

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-09 Thread Michael Hansen
AS3 has some pretty interesting constructs, and private constructors is not one of them. Don't be fooled - it's not java. I can recommend reading up on the as3 pdf.A couple of months ago I hit that same stumbling block, i.e. "what! no private constructors?!"I what follows is a response from zwe

[flexcoders] Implementing setFocus for Datagrid which has cellRender with TextInput field

2006-02-09 Thread t_msreddy
Hi I have a datagrid with a vbox cell renderer which has text box. I want to implement a kind of focus manager to set the focus on TAB key press. Here is what i want: If current focus is in TextField1 in Cell(i,j), pressing the tab key should set the focus on TextField1 in Cell(i, j+1) ... some

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-09 Thread Johannes Nel
abstract classes i am not expecting, private constructers i certainly hope forOn 2/9/06, Carlos Rovira <[EMAIL PROTECTED] > wrote: Hi,I was trying to migrate some classes from AS2 to AS3 and notice that can't mark the class constructor as private. Is that correct or there's a workaround? if no

RE: [flexcoders] Problem with listItemRenderer and AddChild

2006-02-09 Thread Eric D Anderson
Hi, I tried this with the Flex 2 beta and I don't see any problem. Can you confirm you're using Flex 2 beta? Thanks Eric -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tobiaspatton Sent: Thursday, February 09, 2006 6:42 PM To: flexcoders@ya

Re: [flexcoders] Learning AC for Flex 2.0 from scratch: best bet?

2006-02-09 Thread JesterXL
Site (AS2) http://www.debreuil.com/docs/   It's how I learned.   - Original Message - From: Stephane B. To: flexcoders@yahoogroups.com Sent: Thursday, February 09, 2006 4:21 PM Subject: [flexcoders] Learning AC for Flex 2.0 from scratch: best bet? I'm trying to define the best w

[flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-09 Thread Carlos Rovira
Hi,I was trying to migrate some classes from AS2 to AS3 and notice that can't mark the class constructor as private. Is that correct or there's a workaround? if not have plans to implement private constructors. and abstract classes?Thanks in advance.-- ::| Carlos Rovira::| http://www.carlosrovir

[flexcoders] Problem with listItemRenderer and AddChild

2006-02-09 Thread tobiaspatton
Hi again; This might be a bug. The code at the end of this message creates a list with a custom item renderer. The renderer handles clicks by changing the component's state, effectively adding a button. This works fine as long as the list property `variableRowHeight' is set to `false'. If it i

[flexcoders] Learning AC for Flex 2.0 from scratch: best bet?

2006-02-09 Thread Stephane B.
I'm trying to define the best way to learn ActionScript with Flex in mind and no prior programming experience. Book or low cost e-learning recommendation anyone?   Steph -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: ht

Re: [flexcoders] embed a movieclip

2006-02-09 Thread Jason Y. Kwong
No, no love here.  However, it does bring up the question: What are our options if we want to be able to script a Flash 8 swf inside a Flex2 app?  On 2/9/06, Roger Gonzalez <[EMAIL PROTECTED]> wrote: Um, so don't fall in love with any of this.   Just sayin'.   -rg -- Flexcoders Mailing L

Re: [flexcoders] populate datagrid from object of object

2006-02-09 Thread Oscar . Cortes
This worked for me .using Label Function http://www.macromedia.com/2003/mxml"; initialize="myInit()"> |

[flexcoders] HTTPService

2006-02-09 Thread José Saldanha
Hi Some ex. that I have and use .xml file and mysql PHP data, Flash Player give me that error: TypeError: Error #1009: null has no properties. at mx.rpc.xml::NamespaceUtil$/getLocalName() at mx.rpc.xml::SimpleXMLDecoder/decodeXML() at mx.rpc.xml::SimpleXMLDecoder/decodeXM

[flexcoders] Re: populate datagrid from object of object

2006-02-09 Thread Doug Lowder
One way to get the value you want displayed is with a cell renderer. You can use a cell renderer by changing your DataGridColumn to this: Then create a file named MyCellRenderer.as and insert this: import mx.controls.Label; class MyCellRenderer extends Label { function setV

Re: [flexcoders] Filters, Contributing

2006-02-09 Thread JesterXL
Ohhh, you want to actually have it be a filter vs. using another one. Sorry about that; I reckon if your class doesn't extend at least a class in the flash.filters.* package, it won't work. - Original Message - From: "Trey Long" <[EMAIL PROTECTED]> To: Sent: Thursday, February 09, 200

Re: [flexcoders] How to get data from mySQL database

2006-02-09 Thread Teoti Graphix
Hello, I agree with jesse, I am making an as2, as3 class/interface parser/documenter in Flex and it fully uses AMFPHP and mysql! I have a nice service class that accesses php's file handling. So it's like virtual file opening/editing etc with AMFPHP. Heh, yeah a php guy here but man, with Fl

[flexcoders] populate datagrid from object of object

2006-02-09 Thread deepu_verma
Hi, I am trying to populate a datagrid from object object as in the below example (this is a dummy example, i am getting the result from a VO) var arr = new Array() arr[0] = new Object() arr[0].j=10; arr[0].k=new Object() arr[0].k.l=20;

[flexcoders] Re: Array serialization for Webservice

2006-02-09 Thread Dmitry Miller
Hmmm... I have noticed that WebService Tag has a wsdl attribute. You try specifying [web service URL]?wsdl for this attribute ie. wrote: > > Is there a way to change the "item" label of the resultant serialized > items of the array? Or add more than one instance of an object with the > same name

[flexcoders] Flex -> <- Flash Projector(.exe) Question (?)

2006-02-09 Thread jadiazguti
Hi everyone. I'm new in this world of Flex. I'm a Action Script student and seeing Flex i've learned lot of thigs that could help me on my projects. I used to develop Macromedia Flash 8's projectors and here is my question: Can I use a FLEX 1.5 project in a Macromeia Flash (7.0 + ...) desktop

Re: [flexcoders] Filters, Contributing

2006-02-09 Thread Trey Long
I read through that, from what I understand it didn't exactly cover what I wanted to do. I was hoping to do something like the following: MyNewFilter would extend from the BitMapFilter class: var f:MyNewFilter = new MyNewFilter(); var filtsCopy:Array = DisplayObject.filters; filtsCopy.push(MyNe

[flexcoders] Re: Flex and Flash Media server

2006-02-09 Thread ccoenraets
I just posted an updated example with Flex 2 and Flash Media Server 2. http://coenraets.com Christophe --- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED]> wrote: > > His site does that all the time, just refresh one time; always works the 2nd > time. > > - Original Message --

Re: [flexcoders] Re: Flex and Flash Media server

2006-02-09 Thread JesterXL
His site does that all the time, just refresh one time; always works the 2nd time. - Original Message - From: "flashmxfreak" <[EMAIL PROTECTED]> To: Sent: Thursday, February 09, 2006 3:25 PM Subject: [flexcoders] Re: Flex and Flash Media server Requested page cannot be displayed ---

RE: [flexcoders] Re: Array serialization for Webservice

2006-02-09 Thread Pablo Apanasionek
Is there a way to change the "item" label of the resultant serialized items of the array? Or add more than one instance of an object with the same name to the main parameter object? Thanks, Pablo Apanasionek -Mensaje original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En

Re: [flexcoders] Re: Flex and Flash Media server

2006-02-09 Thread Daniel Cascais
Try this: http://coenraets.com/ And on the menu to the left, look for: "Collaboration-Enabled RIAs using Flex and Flash Communication Server" On 2/9/06, flashmxfreak <[EMAIL PROTECTED]> wrote: > Requested page cannot be displayed -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/fle

RE: [flexcoders] Image loader from thumbnail repeater

2006-02-09 Thread Stephane B.
The Image component in the code extract (initial post below) relates to the thumbnails. The "img" id refers to the full size image component on the same view. When a thumb within the repeater is clicked, it is expected to change the source of the full size image "img" accordingly. Thumb an

Re: [flexcoders] embed a movieclip

2006-02-09 Thread JesterXL
...I'm not, but your RSL stuff takes awhile, and I'm niccin', so no choice bro!   - Original Message - From: Roger Gonzalez To: flexcoders@yahoogroups.com Sent: Thursday, February 09, 2006 4:07 PM Subject: RE: [flexcoders] embed a movieclip Um, so don't fall in love with any of t

RE: [flexcoders] embed a movieclip

2006-02-09 Thread Roger Gonzalez
Um, so don't fall in love with any of this.   Just sayin'.   -rg From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXLSent: Wednesday, February 08, 2006 2:06 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] embed a movieclip ...whoa

Re: [flexcoders] How to get data from mySQL database

2006-02-09 Thread JesterXL
I've been using AMFPHP; works pretty well. http://www.jessewarden.com/archives/2005/12/amfphp_10_works.html - Original Message - From: "flashmxfreak" <[EMAIL PROTECTED]> To: Sent: Thursday, February 09, 2006 3:23 PM Subject: [flexcoders] How to get data from mySQL database Hi all Flex

[flexcoders] Re: Flex and Flash Media server

2006-02-09 Thread flashmxfreak
Requested page cannot be displayed --- In flexcoders@yahoogroups.com, Daniel Cascais <[EMAIL PROTECTED]> wrote: > > Christophe Coenraets has an example here: > > http://coenraets.com/viewarticle.jsp?articleId=90 > > On 2/9/06, brownd_92 <[EMAIL PROTECTED]> wrote: > > Hi guys, > > Does any one h

Re: [flexcoders] Re: Flex and ColdFusion

2006-02-09 Thread Douglas Knudsen
http://www.macromedia.com/cfusion/usergroups/index.cfm DK On 2/9/06, Brendan Meutzner <[EMAIL PROTECTED]> wrote: > Just relocated to the Boston area... anyone around here know where to > check for things like this? > > Thanks, > > Brendan > > > --- In flexcoders@yahoogroups.com, "cfeditor" <[EMAI

[flexcoders] How to get data from mySQL database

2006-02-09 Thread flashmxfreak
Hi all Flex users. I am new user of Flex Builder 2. I work with Flash 8 now and I would like know how is possible to get data from mySQL database. I will create e.g. simly adress book as example of using Flex. Thank you for any examples or help. -- Flexcoders Mailing List FAQ: http://groups.y

[flexcoders] Re: FW: link specific mouse pointer

2006-02-09 Thread douglowder
Someone asked a while ago if there were any default cursors besides the busy cursor (the ticking clock), but I never saw a response so I'll take that to mean there is no predefined hand cursor. If that's the case, you'll need to create your own cursor and use your component's mouseOver and mou

[flexcoders] Re: Flex2 Tree

2006-02-09 Thread Michael Montagna
What you're doing is correct, so this is probably a bug. If we find a workaround I'll post it. Thanks, -Michael --- In flexcoders@yahoogroups.com, Teoti Graphix <[EMAIL PROTECTED]> wrote: > > Hello, > > I am writting this more as a comment then question. > > I have spent 2 days experimentin

[flexcoders] Re: Flex and ColdFusion

2006-02-09 Thread Brendan Meutzner
Just relocated to the Boston area... anyone around here know where to check for things like this? Thanks, Brendan --- In flexcoders@yahoogroups.com, "cfeditor" <[EMAIL PROTECTED]> wrote: > > Ben Forta is doing a tour promoting Flex 2 and ColdFusion, and I > really think people should contact th

[flexcoders] Re: Flex 2 Charts Licensing

2006-02-09 Thread Brendan Meutzner
Phil, Thanks... any idea on the cost yet? Brendan --- In flexcoders@yahoogroups.com, "Phil Costa" <[EMAIL PROTECTED]> wrote: > > No, we're planning to sell the charting components by developer seat, > similar to the way you buy other GUI libraries. > > Phil Costa > Group Product Manager, Flex

[flexcoders] Re: Array serialization for Webservice

2006-02-09 Thread Dmitry Miller
I am not sure if you can customize Flex serialization. I assume you are using Axis. If that's the case, you need to go and modify your service descriptor in "services.wsdd" (Don't remember on top of my header where it is located in JRun) file where you explicitly map your "ranges " member of the re

[flexcoders] FW: link specific mouse pointer

2006-02-09 Thread Stephane B.
Hello everyone,   Any idea how to change mouse pointer icon when rolling over clickable component, in a similar fashion as regular browser with arrow for non clickable and the hand when clickable.   Thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/f

[flexcoders] Rich text Editor ...

2006-02-09 Thread Jeremy Rottman
I have a rich text editor component in my app, that allows users to input text for news and the such. However, I can not figure out how to get the RTE component to insert the data into the database as html and no as flat plain text. Has anyone got this to work at all yet? -- Flexcoders Mailing

RE: [flexcoders] Flex 2 Charts Licensing

2006-02-09 Thread Phil Costa
No, we're planning to sell the charting components by developer seat, similar to the way you buy other GUI libraries. Phil Costa Group Product Manager, Flex -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan Meutzner Sent: Thursday, Februar

Re: [flexcoders] Filters, Contributing

2006-02-09 Thread JesterXL
Here is the 1.5 way; 2 shouldn't be that different: http://www.jessewarden.com/archives/2006/01/how_to_use_the.html - Original Message - From: "Trey Long" <[EMAIL PROTECTED]> To: Sent: Thursday, February 09, 2006 1:54 PM Subject: [flexcoders] Filters, Contributing I created my own bi

[flexcoders] Re: Tilelist event question

2006-02-09 Thread sufibaba
Yes, I meant to say object reference. > The cell renderer can dispatch an event that would bubble up to the > Form1.mxml component. The component can catch the event and get a > reference to the object using "event.target". What would be the code in Form1.mxml be in order to catch the bubling ev

[flexcoders] Array serialization for Webservice

2006-02-09 Thread Pablo Apanasionek
I tried many things without results, so I decided to ask for help. I'm using Flex 1.5 and some Java Webservices. I have an object that is passed as a parameter to a webservice. The Object goes something like this: SomeObject(code:String, ranges:Array) The "ranges" array contains 1 or more inst

[flexcoders] Filters, Contributing

2006-02-09 Thread Trey Long
I created my own bitmap filter from scratch. I was hoping that I could follow the MM framework on this one but there is no info in the API nor is there an interface that I can follow. If any Adobe / MM guys have any advice on this one please let me know. I would like to just use it in the same

[flexcoders] Re: Tilelist event question

2006-02-09 Thread sufibaba
Hi Matt, How do you get the value of "dataObject.data.ID" from the thumbnail.mxml with the ItemClick event. Thanks --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > Where is the click event? Obviously you have access to it inside > Thumbnail.mxml, so are you sayi

Re: [flexcoders] Icon bug and tree Control (Flex 2.0 beta)

2006-02-09 Thread Manish Jethani
Thanks - that sounds like a bug. On 2/9/06, sourcecoderia <[EMAIL PROTECTED]> wrote: > > When custom icons are used, and you hover over the icon, the item is not > selected. If you use built in icons it is. So a click/double click > directly on/over a custom icon has no effect for said item. I'm s

Re: [flexcoders] Re: set dataObject() and null properties

2006-02-09 Thread Manish Jethani
On 2/9/06, tobiaspatton <[EMAIL PROTECTED]> wrote: > Is it fair to say that the documentation included with Beta 1 is > incorrect with respect to this procedure? The sample code I was > working from can be found at > > Flex Help->Developing Flex Applications->Using Cell Renderers and > Cell Editor

Re: [flexcoders] Image loader from thumbnail repeater

2006-02-09 Thread Manish Jethani
On 2/9/06, Stephane B. <[EMAIL PROTECTED]> wrote: > > height="93" click="img.load('images/booking/' + repImages.currentItem);" /> > Where does "img" come from? I think you meant "event.target". "currentItem" is not available in the click handler. Instead of current item, use getIte

[flexcoders] Re: populate a dataGrid

2006-02-09 Thread douglowder
Hi Ryan, Have a look at the dataProvider property of DataGrid. The easiest way to have two datagrids show the same data is probably to just bind their dataproviders to the same object: ... ... You could also set the dataProvider of one grid to the other's in ActionScript. Doug --- In flex

Re: [flexcoders] New Inline cell renderers

2006-02-09 Thread Manish Jethani
On 2/9/06, Jonathan Miranda <[EMAIL PROTECTED]> wrote: > Where can someone log this? Somebody from the Flex team in Adobe will log it. I'm travelling. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/f

[flexcoders] populate a dataGrid

2006-02-09 Thread rgwilson26
How do you populate a datagrid from another datagrid? "dgMyDataGrid.selectedItem" will only send a selected item within a data grid, but I want all item within a given datagrid to be sent regardless of selection. thanks, -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcod

Re: [flexcoders] Gradient Fills

2006-02-09 Thread Trey Long
Well, I just happened to figure out what the problem was. Much to my dismay and exuberance. For those of you interested in this I will give you the quick definition. This quote: "This value defines the percentage of the width where the color is sampled at 100%." I assumed that this meant the wi

[flexcoders] Re: set dataObject() and null properties

2006-02-09 Thread tobiaspatton
Hi Manish; As always, your response was prompt and, even better, helpful! Is it fair to say that the documentation included with Beta 1 is incorrect with respect to this procedure? The sample code I was working from can be found at Flex Help->Developing Flex Applications->Using Cell Renderers

[flexcoders] Re: e4x XML question - possible bug?

2006-02-09 Thread thunderstumpgesatwork
Good thought, and I saw this suggestion in another related post, however this always returns an empty list. Is this possibly a bug? Do you know that this should in fact work? I have not seen any documentation stating that it should or shouldn't. thanks, Thunder --- In flexcoders@yahoogroups.com

[flexcoders] Re: Date sorting in datagrid [1.5]

2006-02-09 Thread douglowder
What is the format of the date before you set it in the dataprovider? If you already have the date in a numeric format similar to what is returned by Date.getTime(), then take a look at Peter Ent's approach. The idea is to set the dataprovider with numeric time value to preserve the sort order, a

[flexcoders] Gradient Fills

2006-02-09 Thread Trey Long
If someone has any experience with drawing gradients with the GRAPHICS object please, your input would be invaluable. My issue is with the RATIO attribute of beginGradientFill(). I can't seem to understand exactly what the numbers in that array represent. For instance, to get a gradient all the

[flexcoders] Flex2 Tree

2006-02-09 Thread Teoti Graphix
Hello, I am writting this more as a comment then question. I have spent 2 days experimenting with the mx.collections classes and it has been fun. Now, I have a project where I need the tree's root to be; ClassPaths    - > c:/classes - > dir structure    - > c:/mm/classes ... - > dir

RE: [flexcoders] referencing functions within a component

2006-02-09 Thread Jason Hawryluk
Dispatch an event and add/use a listener to recive it.   i.e.   In component # 2 put this after the Hbox    [Event("deleted")]   and then dispatch it in you button like so.   label="Delete" click="dispatchEvent(new Event('deleted'));" />   now in component #1 you can get at it. Like so  

[flexcoders] Flex and ColdFusion

2006-02-09 Thread cfeditor
Ben Forta is doing a tour promoting Flex 2 and ColdFusion, and I really think people should contact their local user group, find out when he's going to be there, and go. (Details are available on http://www.forta.com.) I'd like to invite anyone in the New York area to come to the NYCFUG Meeting on

Re: [flexcoders] Re: How to use SharedObject.getRemote with Flex 2 / AS3

2006-02-09 Thread Brian Lesser
Hi Dominick, Just a guess but Flash Media Server uses AMF0 to send/receive ActionScript data. DataServices uses AMF3. So I would guess that getRemote is only broken for AMF0??? Maybe someone at Adobe could say more though as there might be a lot more to it. Yours truly, -Brian Dominick Accattat

Re: [flexcoders] Date sorting in datagrid [1.5]

2006-02-09 Thread Tom Fitzpatrick
At 07:07 AM 2/9/2006, you wrote: >See if this helps: >http://weblogs.macromedia.com/mesh/archives/2005/04/sorting_date_fi.cfm Looks like it should help - but I'm having problems. I'm guessing this is because I'm setting the date in the dataprovider using the DateField class, so it's not return

Re: [flexcoders] Recommended testing tool ? /Flex1.5

2006-02-09 Thread Johannes Nel
i saw something which macromedia/adobe consulting has called the event tester which allows you to write junit tests for a flex app and then triger certain application states by setting properties, calling methods and dispatching events. it ain't no winrunner or QTP but it seems to do the job. a

RE: [flexcoders] Flex 2 Beta - KeyboardEvent - Problem

2006-02-09 Thread Matt Horn
it seems to be something with having focus. when you first start the app, there's no focus on any control inside the app. I added a Button and click the Button. after that it works fine... so it doesn't appear to require that you click on the TextArea, just that you provide focus to someth

[flexcoders] referencing current object in an array between components (actionscript 2.0)

2006-02-09 Thread rgwilson26
In component #1 I have 2 functions that dynamically create an HBox and one that deletes an HBox. The HBox that is being createed in component #2 with a button that calls the delete function. My question is how do I send a reference back to the function for that particular row that has been crea

[flexcoders] Icon bug and tree Control (Flex 2.0 beta)

2006-02-09 Thread sourcecoderia
When custom icons are used, and you hover over the icon, the item is not selected. If you use built in icons it is. So a click/double click directly on/over a custom icon has no effect for said item. I'm sure it'll be fixed. Just thought I'd pass that along. -- Flexcoders Mailing List FAQ

Re: [flexcoders] Re: How to use SharedObject.getRemote with Flex 2 / AS3

2006-02-09 Thread Dominick Accattato
if remote sharedObjects aren't working, how does DataServices work.  On 2/9/06, Philippe Maegerman <[EMAIL PROTECTED] > wrote:I haven't played with flex 2 yet, but from what I read here, there are already 2 frustrating limitations to me: -You can connect to FMS but can't use remote Shared Object

RE: [flexcoders] Useful Videos

2006-02-09 Thread Jonas Windey
Nice, would be cool if someone could post the code if the transition demo.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda Sent: donderdag 9 februari 2006 16:39 To: flexcoders@yahoogroups.com Subject: [flexcoders] Useful Video

[flexcoders] referencing functions within a component

2006-02-09 Thread rgwilson26
I am fairly new to Flex and wondering how to get one component to call a function within another component. How do I reference the function in component #1 from #2? **component #1* http://www.macromedia.com/2003/mxml"; xmlns="*"> private function delete():Void{

[flexcoders] Flex 2 Beta - KeyboardEvent - Problem

2006-02-09 Thread Scott Langeberg
I can't get the following keyboardevent to fire, unless you click into the textarea on the stage. Any ideas why that would be?Note: I've tried adding the listener to: application, Application.application, the canvas on the stage, etc...     xmlns:mx="http://www.macromedia.com/2005/mxml"     xmln

[flexcoders] Useful Videos

2006-02-09 Thread Jonathan Miranda
Thought I’d pass this along – my buddy sent me this link and I never saw the link for this on the labs Flex site…but these are definitely some very useful videos. http://labs.macromedia.com/flexproductline/videos/#   I’m now a Control-O, Alt-Left, Alt-Right fanatic. __

Re: [flexcoders] embed a movieclip

2006-02-09 Thread Joe Berkovitz
I have to say, I think you have all missed my point. OK, we've found something clever and we're pleased that it works. That is not the end of the story. Don't just go away and assume that this is going to keep working, because it is totally undocumented and unsupported. If you want it, then

RE: [flexcoders] Flex 2 Beta 1 - i18n

2006-02-09 Thread Dirk Eismann
Yes, that is possible. I'll post an example shortly. Dirk. > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of javanatic23 > Sent: Thursday, February 09, 2006 12:31 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Flex 2 Beta 1 - i1

RE: [flexcoders] Recommended testing tool ? /Flex1.5

2006-02-09 Thread Matt Horn
> > We are working with Mercury on getting a solution for Flex > 2, it's in Alpha right now. > Does it means "Flex Enterprise Services 2 Beta" ? If so, I > have already participated. (Thanks!) Can that use for 1.5 ? No, it's a separate alpha specifically targeted at the Mercury/Flex integration

RE: [flexcoders] IFrame Example for Flex 2?

2006-02-09 Thread David Mendels
Hi,   Brian Deitte posted a port of this sample to Flex 2 a few days ago on his blog.   -David Adobe     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark WalesSent: Wednesday, February 08, 2006 9:05 PMTo: flexcoders@yahoogroups.comSubject: [flexco

Re: [flexcoders] Recommended testing tool ? /Flex1.5

2006-02-09 Thread Clint Modien
I remembered reading this a while back. This might be what your looking for.http://www.macromedia.com/devnet/flex/articles/amf_perftest_04.html On 2/6/06, Kazuya Komon <[EMAIL PROTECTED]> wrote: Hi all,Anyone have any ideas what to use testing tool ?I trid to use QTP whick Mercury provided.But I

Re: [flexcoders] Difference between WebService and Remote Object

2006-02-09 Thread Clint Modien
The format of these classes should work for ya... at least they have for me in the past.class com.mercury.onyx.client.services.vo.UserVO extends com.mercury.onyx.client.services.vo.BasicUserVO {        public static var regClass = Object.registerClass("com.mercury.onyx.client.services.vo.UserVO

[flexcoders] Flex 1.5 : Problem updating value columnCount in TileList

2006-02-09 Thread More García
I have a problem with the values of columnCount and rowCount properties of a TileList. It only show me the correct value of properties, when i resize the window navigator. When load the application, the values of columnCount and rowCount are 4 * 4, when really i have 9 * 6 in the screen. If i

Re: [flexcoders] Recommended testing tool ? /Flex1.5

2006-02-09 Thread KOMON Kazuya
Hi Matt, Thank you for the reply. I will try to use MS Application Stress(WAS) because it could be used successful in local. > We are working with Mercury on getting a solution for Flex 2, it's in Alpha > right now. Does it means "Flex Enterprise Services 2 Beta" ? If so, I have already par

  1   2   >