[flexcoders] Custom Validators - subField

2006-09-13 Thread lostinrecursion
Hi all, In LiveDocs, its says that by setting subField within a ValidationResult, it allows Flex to "highlight" the component. I am not experiencing this behavior. Could someone help? I just want the Validator to highlight the correct field. I set up the fields to validate in an tag as such:

[flexcoders] Re: share a project in a team

2006-09-13 Thread omkarjoe
Share Project deals with the version control system such as CVS or subversion. It uploads project on CVS or subversion. --- In flexcoders@yahoogroups.com, "amigo_fd" <[EMAIL PROTECTED]> wrote: > > Hello, > > When you righclick on a Flex project name, you get the option Team > > Share project. >

[flexcoders] asfunction in flex 2

2006-09-13 Thread ashishpatel2007
I am trying to make this work in Flex 2 and looked at Nahuel's code. However, I do not see in his example where he is using wrote: > > I need this to work in Flex 1.5, is there a similar way to get it to > work? Basically I just need to know when the link was clicked or > for that matter the m

[flexcoders] Re: have there any rightClick mouseEvent in Flex2?

2006-09-13 Thread James Polanco
I think you are looking for access and the ablity to customize the Right Click Context menu, correct? If so check out this doc: http://livedocs.macromedia.com/flex/2/langref/flash/ui/ContextMenuItem.html Hope that helps! James --- In flexcoders@yahoogroups.com, "feel8335" <[EMAIL PROTECTED]> wr

[flexcoders] Re: Yahoo Maps questions

2006-09-13 Thread ashishpatel2007
I am trying to make this work in Flex 2 and looked at Nahuel's code. However, I do not see in his example where he is using wrote: > > I need this to work in Flex 1.5, is there a similar way to get it to > work? Basically I just need to know when the link was clicked or > for that matter the m

[flexcoders] asfunction within Flex2

2006-09-13 Thread ashishpatel2007
I am trying to make this work in Flex 2 and looked at Nahuel's code. However, I do not see in his example where he is using From what I can tell or tested, asfunction is no longer available in Flex2? Any help would be appreciated. Thanks in advance, ashish --- In flexcoders@yahoogroups.com, "jg

[flexcoders] lots of different operation in the same web service

2006-09-13 Thread Diego Guebel
Hi there, I just wondering from the best practice point of view what would be the best approach in a cairngorm application to call more than 40 different operation in the same webservice. Have a big delegate class with more than 40 different methods? group them with some criteria and have 5 lit

RE: [flexcoders] Re: Rotating html text

2006-09-13 Thread Joan Lafferty
Setting the fontFace property in html to your embedded font doesn’t work for the Text. You have to set fontFamily="MyArial" on the Text component. Once you do this, the rotate works fine. I don’t think we have support right now for specifying different fonts for various segments of the

Re: [flexcoders] Can't view source code on Mac Martine's website

2006-09-13 Thread Mac Martine
Title: Re: [flexcoders] Can't view source code on Mac Martine's website Sorry about that. It’s Beta code, so the Publish Source code changed as well. I just made the source code directories browseable, so you should be able to go see all the source code now. However, note that it is Beta code

[flexcoders] Cairngorm - Call function inside View Component

2006-09-13 Thread Pete Capra
Hi all,   I'm current developing a Flex 2 app using Cairngorm and I'm not sure what the best practice is for the following scenario:   I have a view component that is nested inside the application, and it has a public function that selects an item on a Tree (manually, instead of the user

RE: [flexcoders] Re: Clone / Copy Array

2006-09-13 Thread Bjorn Schultheiss
The bytearray option is the best function clone(source:Object):*{    var myBA:ByteArray = new ByteArray();    myBA.writeObject(source);    myBA.position = 0;    return(myBA.readObject());} This will guarantee all nested Objects are not references. slice() will copy the array but the obje

Re: [flexcoders] background color of a text?

2006-09-13 Thread oktay nba
thanx allOn 9/13/06, Ashish Goyal <[EMAIL PROTECTED]> wrote: You can just wrap your text or label component in a container with backgroundColor set to desired color. For eg:     text="Label1"/>   -Ashish     From: flexcoders@yahoogroups.com [mailto: f

[flexcoders] Re: Rotating html text

2006-09-13 Thread jeremyrichman
Hi Joan, I haven't been using the Rotate class, I've just been setting the rotate property to += 90 (I just want a static rotation of text). The following code demonstrates this. Click on the "Rotate HTML" button and the text disappears - click 3 more times so it rotates back to 0 degrees an

[flexcoders] Re: Centering a checbox in a datagrid column

2006-09-13 Thread Jack OMelia
Thanks to all who replied. I'm sorry I'm only getting back now, but I was away on business for a few days. I was able to put the checkbox in a VBox in the itemRenderer (and center it), but I lost any selected checks in the data because I only had a reference to the data in the dataprovider. Once

[flexcoders] Re: Clone / Copy Array

2006-09-13 Thread Daniel
Thanks for your reply, however, I've already seen that solution. What I'm looking for is a more explicit solution. I have an array and want to copy it into another array. THx --- In flexcoders@yahoogroups.com, "bill_sahlas" <[EMAIL PROTECTED]> wrote: > > > From the docs > > > Cloning arrays >

[flexcoders] object index in data provider when binding to a control

2006-09-13 Thread pk_wasp
Say i'm using a data control like a tile list etc e.g. in ItemTest we get the reference to the object via the data property/variable, is there anyway to get the index of where this object is in the collection? cheers -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcode

[flexcoders] adding control bar to panel programitically

2006-09-13 Thread aaron smith
I've been just messing around with how to do things through code. It seems adding a ControlBar to a panel in code doesn't do the same thing as it does in mxml.here is my mostly code example:MXML:http://www.adobe.com/2006/mxml" layout="vertical" creationComplete="initApp()">             import Co

[flexcoders] Re: Clone / Copy Array

2006-09-13 Thread Oscar
use myCopy = originalArray.slice() --- In flexcoders@yahoogroups.com, "Daniel" <[EMAIL PROTECTED]> wrote: > > Good Day all! > > I need to clone or copy the content of an Array, not to keep reference > to the array neither the to objects inside, a complete new array but > with the s

[flexcoders] Can't view source code on Mac Martine's website

2006-09-13 Thread wayneposner
keep getting "Timer could not be found" error when tyring to view your source. Your custom tree item renderer is kind of like what I need only I need the icon to appear at the end of the label. HELP! Wayne -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/fle

Re: [flexcoders] tree labelFunction that an determine what type of node I'm dealing with?

2006-09-13 Thread Michael Schmalle
Hi,I think what you are looking for is.function labelThingy(node:Object):void{   trace("my name is " + node.name());   trace("my id is " + [EMAIL PROTECTED]);}Peace, Mike On 9/13/06, Clare Todd <[EMAIL PROTECTED]> wrote: I have a tree that has some XML returned

[flexcoders] Re: tree labelFunction that an determine what type of node I'm dealing with?

2006-09-13 Thread bill_sahlas
Here are links to the Flex 2 docs that deal with exactly this situation!  Check out Working with XML and in particular Traversing XML structures  --- In flexcoders@yahoogroups.com, "Clare Todd" <[EMAIL PROTECTED]> wrote:>> I have a tree that has some XML returned from an HTTP service as its data

[flexcoders] Re: Error #2032 HTTPS IE only

2006-09-13 Thread vitopn
Excellent! The add-no-cache-headers did the trick. Thank you! --- In flexcoders@yahoogroups.com, "Kumaran Nallore" <[EMAIL PROTECTED]> wrote: > > If you are testing with self-signed certificates, ensure that the > property is set to true in proxy-config.xml. > > > > Another thing to try is

[flexcoders] Re: criticla problem charting component - coding axis

2006-09-13 Thread trader230
Hi Olivier - 'baseAtZero' sets the minimum to zero (if your data are all >=0) or the maximum to zero (if the data are < 0). Choices for setting the axis range are a) let the chart decide min and max; b) set them yourself. If you want to use baseAtZero="true" (with choice (a)), it will se

[flexcoders] Re: Error #2032 HTTPS IE only

2006-09-13 Thread vitopn
Excellent suggestion .. I did verify that a HTTPService could retrieve data from my server over SSL (both in IE and firefox).  Unfortunately the problem seems to be limited to a SecureHTTPCHannel channel trying to connect to my DataService server in IE.I'm starting to think that this problem has

[flexcoders] Re: Clone / Copy Array

2006-09-13 Thread bill_sahlas
From the docs   Cloning arrays The Array class has no built-in method for making copies of arrays. You can create a shallow copy of an array by calling either the concat() or slice() methods with no arguments. In a shallow copy, if the original array has elements that are objects, only the refer

[flexcoders] Re: Error #2032 HTTPS IE only

2006-09-13 Thread vitopn
Matt, Thank you for the feedback. I did setup the IE browser to accept the self-signed cert. by installing the verisign trial root cert (http://www.verisign.com/ssl/buy-ssl-certificates/free-ssl-certificate-trial/test-root-ca/index.html). I verified that I can browse to the site without getti

[flexcoders] have there any rightClick mouseEvent in Flex2?

2006-09-13 Thread feel8335
have there any rightClick mouseEvent in Flex? if not, then how to produce a right click event to provide more function , like rename a display object, change color or set icon on there THX~~! @@ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFA

Re: [flexcoders] Flex 2 SWFLoader disable browser cache

2006-09-13 Thread Ralf Bokelberg
You could add a parameter to the url. For example, if you want to completely stop cacheing, you can add the current time to the url. url = "test.swf?nocache=" + ( new Date().getTime() ); Cheers, Ralf. On 9/13/06, supertodda <[EMAIL PROTECTED]> wrote: > I have a flex 2 app that calls some swf fil

RE: [flexcoders] Rotating html text

2006-09-13 Thread Joan Lafferty
Can you please post the code that is not working? I tried to rotate Text, Label, and TextInput components that had htmlText and an embedded fontFamily specified. The rotation seemed to work for me. I tried specifying the fontFamily in the css and by using setStyle. These all worked, so

[flexcoders] Flex 2 SWFLoader disable browser cache

2006-09-13 Thread supertodda
I have a flex 2 app that calls some swf files using the SWFLoader component. I've noticed that although I have the following headers in the web page that calls the parent movie, the child swfloader movies are being cached in IE. Is there any way around this? I've noticed some cache control stuff

[flexcoders] Flash 8 - Custom databinding

2006-09-13 Thread slangeberg
I'm adapting Cairgorm 0.99 for Flash 8. I want to set up databinding on my ModelLocator, to update a view, and I'm wondering if anyone has done anything like this before?Currently, my model is emitting a 'change' event when properties are changed through getter / setters. I'm guessing I could se

RE: [flexcoders] TileBase (HorizontalList): when items are rendered?

2006-09-13 Thread Joan Lafferty
I’m not 100% sure about this, but try the updateComplete event.   Joan   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roman Protsiuk Sent: Wednesday, September 13, 2006 1:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileBase (Horizont

[flexcoders] tree labelFunction that an determine what type of node I'm dealing with?

2006-09-13 Thread Clare Todd
I have a tree that has some XML returned from an HTTP service as its dataprovider  The XML structure is essentially:     I'd like my labelFunction to be able to react to the different types of things.  In english it would do this: Hey, I have an item! Is this item a "redthing"?  If so, ret

RE: [flexcoders] Request for flex modification?

2006-09-13 Thread Matt Chotin
Sure, file away at http://www.adobe.com/go/wish.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Samuel Colak Sent: Wednesday, September 13, 2006 2:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Request for flex modifica

RE: [flexcoders] Re: Fw: WatcherSetupUtil issue

2006-09-13 Thread Matt Chotin
I’ve forwarded.  The main reason for this setup is we didn’t think through the use-case fully and probably would have implemented things differently had we considered it.     Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of maxym.hryni

[flexcoders] Re: Drag Drop Outside App

2006-09-13 Thread astgtciv
Something like this: http://www.artificialcolors.com/experiments/mouseCaptureToFlash.html . This is quite old though, but might give some ideas... -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flex

[flexcoders] Re: Using objects in XML

2006-09-13 Thread kristian_wright2002
--- In flexcoders@yahoogroups.com, "bhaq1972" <[EMAIL PROTECTED]> wrote: > > sorry i meant labelField="label" > > --- In flexcoders@yahoogroups.com, "bhaq1972" wrote: > > > > just a guess, in your repeater try > > > > > > > dataProvider="{rpComboBox.currentItem.dataprovider}" /> > >

RE: [flexcoders] XMPP AS3 class libraries on Labs

2006-09-13 Thread João Fernandes
Andrew ,   Nick velloff is porting XIFF (jivesoftware.org) to AS3.  You can see a demo here:http://velloff.com/XIFF_AS3/XIFF_AS3_GUI.html   And get the beta from svn here : http://svn.jivesoftware.org/svn/repos/xiff/branches/xiff_as3_flexlib_beta1/   João Fernandes    

Re: [flexcoders] Re: Lost commit on data source with polling AMF

2006-09-13 Thread Kornelius . Elstner
Thanks for the responses, how long does it usually take to implement a hotfix? We have been playing around with a datasource that has autocommit and automerge set to false, but it appeared to be almost impossible to issue merge() and commit() sequences without running into problems. Are there any

[flexcoders] Re: Using objects in XML

2006-09-13 Thread kristian_wright2002
--- In flexcoders@yahoogroups.com, "bhaq1972" <[EMAIL PROTECTED]> wrote: > > just a guess, in your repeater try > > >dataProvider="{rpComboBox.currentItem.dataprovider}" /> > Didn't work - just returned an empty combobox. Also, my labels and data are different (data is an int I use

[flexcoders] Clone / Copy Array

2006-09-13 Thread Daniel
Good Day all! I need to clone or copy the content of an Array, not to keep reference to the array neither the to objects inside, a complete new array but with the same source as the other. Any ideas? Thanks!. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/fle

[flexcoders] Selection Of FLEX + Cairngorm For a Large Enterprise Project

2006-09-13 Thread AJIT DIXIT
I am in process of evaluating technology to be used for a large scale transactional application I invite your attension to following link http://www.actionscript.com/Article/tabid/54/ArticleID/flash-insecurity/Default.aspx I am evaluating using Flex + Cairngorm for a large e-governance product

[flexcoders] Re: Using objects in XML

2006-09-13 Thread bhaq1972
sorry i meant labelField="label" --- In flexcoders@yahoogroups.com, "bhaq1972" <[EMAIL PROTECTED]> wrote: > > just a guess, in your repeater try > > >dataProvider="{rpComboBox.currentItem.dataprovider}" /> > -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcode

[flexcoders] Re: cf query, xml & fle

2006-09-13 Thread Mike Collins
Not what you may be looking for but you might try converting the entire cfquery into XML. I wrote this in CF to convert any query into XML. "> #xmlformat(v)#"> "> "> -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/f

Re: [flexcoders] XMPP AS3 class libraries on Labs

2006-09-13 Thread Andrew D. Goodfellow
Hi Danny,Any word on an update? There are several issues that are not compatible with the full release. StringBuilder and flash.util are a few. I have corrected all the errors and warnings, however many of the tests are failing and if there is an imminent update I will wait on debugging the old

[flexcoders] Re: Using objects in XML

2006-09-13 Thread bhaq1972
just a guess, in your repeater try -- 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 group on the web, go to: http://groups

[flexcoders] Re: Trying to understand RemoteObjects

2006-09-13 Thread dinger0007
Hey Tom can you expand on what you are saying about recompiling with a services-config.xml. I havn't tried using remote objects on my shared server becasue I thought I needed to update a xml file at the root of the server. Any infomation or links would be appreciated. --- In flexcoders@yahoogro

[flexcoders] Drag Drop Outside App

2006-09-13 Thread esb260
I am wondering if there is a way for me to somehow catch when a user drags a Flex object outside the main app window so that I can take the object they have dragged out and place it in another app that is not Flex. Javascript prehaps? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com

Re: [flexcoders] Re: cf query, xml & fle

2006-09-13 Thread Paul Hastings
On 9/13/06, bhaq1972 <[EMAIL PROTECTED]> wrote: > why don't you do a dump of the object in cf before it gets sent to > flex. as i said, already have. works fine in cf. > do the following - > for(var obj1:Object in returnedObject.layers) > { >trace(obj1, returnedObject.layers[obj1]); > }

[flexcoders] Using objects in XML

2006-09-13 Thread kristian_wright2002
I'm creating a dynamic from via a repeater that creates ComboBoxes surrounded in FormItems on the fly. My XML looks like the following: label name id name true {arrARRAY} 1 I convert the XML to an XMLList (based on combo), then this XMLList to an XMLCollection, which I in

Re: [flexcoders] share a project in a team

2006-09-13 Thread Tom Chiverton
On Wednesday 13 September 2006 09:31, amigo_fd wrote: > When you righclick on a Flex project name, you get the option Team > > Share project. > > Any ideas how this works ? Do I have to setup a pserver (whatever that You need to install a RCS server of some sort. Subversion is popular and free, as

[flexcoders] Double colon in flex

2006-09-13 Thread Jonas Windey
Hi,   Is there a use/possibility to use the double colon operator ( :: ) in Flex 2? Like in java, the namespace operator? Anyone who could give me an example?   Thanks!   Jonas Windey Web Developer T. +32 3 216 86 47   Pixco Interactive Division T. +32 3

Re: [flexcoders] Casting Value Objects

2006-09-13 Thread Sam Shrefler
Pete:   Two things to try...first:  Try typing your array collection by doing this in your ModelLocator:   [ArrayElementType("com.xxx.xxx.model.ModuleVO")]public var modules:ArrayCollection;   Also, in your VO class, add this:   //assuming you have your VO named the same on the remote side... [R

Re: [flexcoders] Flex 2: Passing Custom Classes to .NET Web Service

2006-09-13 Thread Sam Shrefler
John:   I just put together a little tutorial on using .NET (with AMF0) with WebOrb.NET Standard (free) to pass typed custom classes back and forth, you can check it out here:   http://blog.shrefler.net/?p=6   Or, you can use JSON (both in flex and .net) with a .NET webService to serialize and d

RE: [flexcoders] criticla problem charting component - coding axis

2006-09-13 Thread Matt Horn
can you post a simple sample that shows the property not working? > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of olivier > Sent: Wednesday, September 13, 2006 5:11 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] criticla probl

[flexcoders] Webservice and Flex - Retrieve column names

2006-09-13 Thread The Crow
Hello. I want to retrieve the column names from a webservice. I am able to retrieve the data but I am not able to do so with the column names. Can anyone help me out with this issue please. Thanks. Regards, Anoop -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files

[flexcoders] Re: How can I keep one component in front of all other components?

2006-09-13 Thread hastyarkxu
Anybody knows it. I am suffered... --- In flexcoders@yahoogroups.com, "hastyarkxu" <[EMAIL PROTECTED]> wrote: > > Hi, > > But I have two thing that not very clear: > 1. The component that always on top are not created by SystemManger, > it is the grandson of , how can I swap this instance

[flexcoders] Re: unable to load wsdl?? flex, you're pissing me off...

2006-09-13 Thread Jason
Would love some outside assistance on this issue I'm having. Further information can be found on my blog entry: http://blog.wrench.com.au/2006/09/06/flex-2-unit-converter-part-iii/ Thanks, Jason -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] can we communicate between flex and npruntime plugin directly

2006-09-13 Thread Gaurav Sehgal`
Hi, I am writing a flex app which needs to talk with npruntime plugin. For these two to communicate JavaScript wrapper needs to be written. It is making the application slow. Is there a mechanism so that flex and npruntime plugin can talk directly? Regards, Gaurav -- Flexcoders Mailing List

[flexcoders] Re: Datagrid with a dropdown column!

2006-09-13 Thread sahay17
Hi, Thanks for the prompt solution. Thanks, Anurag. --- In flexcoders@yahoogroups.com, "Joan Lafferty" <[EMAIL PROTECTED]> wrote: > > Since your dataProvider has values of 'b', "i" and 'e", then, your > ComboBox dataProvider should also have these values: > > array collection and now I have to

[flexcoders] Re: Need help auto starting a Java program to listen to msgs from Flex client

2006-09-13 Thread Dave Wolf
The best way to do this is to implement your JMS listener class as a Java Servlet. You can then configure the servlet to startup upon server startup (you can even configure the order of the startup). Yes, you can use threads inside the Servlet. -- Dave Wolf Cynergy Systems, Inc. Adobe Flex

[flexcoders] DataGrid labelFunction

2006-09-13 Thread rafael_magalhaes007
Hi, i have a datagrid with N column, in this datagrid there's a column in the end that makes the sum of all the other columns this sum is made by the property labelFunction that calls out a function created by me to sum the values in the columns the cells are editable and when i change the val

[flexcoders] share a project in a team

2006-09-13 Thread amigo_fd
Hello, When you righclick on a Flex project name, you get the option Team > Share project. Any ideas how this works ? Do I have to setup a pserver (whatever that may be ?!) ? Can this be done with a Windows Server ? Do I need extra software for this ? The Flex projects I'm working on, are on my

[flexcoders] Newbie FlexUnit/FlexBuilder setup

2006-09-13 Thread John Mark Hawley
I'm attempting to sensibly set up a directory structure in FlexBuilder for unit testing -- setting things up in a way analagous to my AS2.0/ASUnit projects back in Eclipse doesn't seem possible. Can someone point me in the right direction? In the project root, I have a src folder and a tests fo

[flexcoders] Re: systemmanager root display

2006-09-13 Thread astgtciv
The SystemManager (http://livedocs.macromedia.com/flex/2/langref/mx/managers/SystemManager.html) itself is a DisplayObject. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.co

[flexcoders] TileBase (HorizontalList): when items are rendered?

2006-09-13 Thread Roman Protsiuk
Hi, all. Can anyone tell me how can I detect moment when HorizontalList has rendered all of its items? I need to set selectedIndex after this moment. If I set it before, the selection will be lost after rendering. R. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files

[flexcoders] Re: Anybody use the AS3 downloaded from labs.adobe.com?

2006-09-13 Thread hastyarkxu
Sorry, I didn't express myself clearly. This package is for Flickr Service API. Used to read,add&delete photos in website: www.flickr.com --- In flexcoders@yahoogroups.com, "hastyarkxu" <[EMAIL PROTECTED]> wrote: > > Hi all, > > I just found that there is no 'comments' related methods and cl

[flexcoders] Re: Flashvars using Application.application

2006-09-13 Thread Adam Dorritie
On 9/13/06, niuscha.massoudi <[EMAIL PROTECTED]> wrote: > I had the same Problem like Kyle. It works with the solution from > Adam. But only in Firefox and not in IE. What is the Problem? > I tried also , it doesn't > work. I use IE when I develop here at work and my solution works fine for me. I

[flexcoders] Request for flex modification?

2006-09-13 Thread Samuel Colak
Matt, is there anyway to request feature modifications to the library components. In particular the graphics object to include the setPixel and getPixel functions? Many thanks, Samuel -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Ar

[flexcoders] Re: cf query, xml & flex

2006-09-13 Thread bhaq1972
--- In flexcoders@yahoogroups.com, "Paul Hastings" <[EMAIL PROTECTED]> wrote: > > On 9/13/06, bhaq1972 <[EMAIL PROTECTED]> wrote: > > > try this > > > > var xml1:XML = new XML( > > yes that works, at least it reports the 2 "root" nodes but as i said > before, this stuff works inline fine. it's

Re: [flexcoders] Re: cf query, xml & flex

2006-09-13 Thread Paul Hastings
On 9/13/06, bhaq1972 <[EMAIL PROTECTED]> wrote: > try this > > var xml1:XML = new XML( yes that works, at least it reports the 2 "root" nodes but as i said before, this stuff works inline fine. it's coming over from cf that's killing me. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/

[flexcoders] Re: cf query, xml & flex t

2006-09-13 Thread bhaq1972
try this var xml1:XML = new XML(

[flexcoders] Flex 2: Passing Custom Classes to .NET Web Service

2006-09-13 Thread John C. Bland II
Has anyone successfully done so? I found this blog (here: http://weblogs.asp.net/soever/archive/2005/10/29/428902.aspx) that showed how he did it with the mx:operation but I want to pass MyFunction(MyClassObject) and have it do what it needs to do. Any ideas?-- John C. Bland IIChief DeveloperKat

[flexcoders] criticla problem charting component - coding axis

2006-09-13 Thread olivier
Hi, I've a critical problem when I want to code in actionscript a chart with a linearxis. Indeed, all propertie can be set but the baseAtZero doesn' t work properly. It computes the maximum value but the minimum value is always 0. I've tried with several different series without any success.

Re: [flexcoders] Re: cf query, xml & flex t

2006-09-13 Thread Paul Hastings
On 9/13/06, bhaq1972 <[EMAIL PROTECTED]> wrote: > the 'layers' property is the bit you're interested in. Its well > formed xml correct? so what happens when you do yup. i can dump it out in cf & use that xml inline w/the Tree as > var xml1:XML = new XML(yourReturnedObject.layers); more or les

[flexcoders] Re: Fw: WatcherSetupUtil issue

2006-09-13 Thread maxym.hryniv
Thanks, Matt. Now I got it, but // we can't // reference the WatcherSetupUtil class in the component, because the // WatcherSetupUtil can't be generated until after the component class is // done compiling. Can you ask Paul why he didn't use reflections to reference WatcherSetupUtil??? It looks

[flexcoders] Re: cf query, xml & flex tr

2006-09-13 Thread bhaq1972
the 'layers' property is the bit you're interested in. Its well formed xml correct? so what happens when you do var xml1:XML = new XML(yourReturnedObject.layers); can u show a brief structure of this xml. --- In flexcoders@yahoogroups.com, "Paul Hastings" <[EMAIL PROTECTED]> wrote: > > On 9/1

Re: [flexcoders] outside window event

2006-09-13 Thread Ralf Bokelberg
Ha, there is a MOUSE_LEAVE event for that. I just learned it from a friend of mine. Cheers,Ralf. On 9/5/06, Frias, Roberto < [EMAIL PROTECTED]> wrote: Have you ever use _javascript_ to achieve this kind of issues?, I'll try to look for it in internet, but I'd think that's not po

[flexcoders] Re: Removing outline from tabs

2006-09-13 Thread Tim Hoff
Hi Mike, The tabs of a TabNavigator are Buttons inside a TabBar. Because they are buttons, the borderStyle isn't a supported style. However, like other buttons, you can individually skin them with images (see docs) or apply supported button styles like this: myTabNavigator.getTabAt(0).setSty