RE: [flexcoders] Resetting a Cellrenderer

2005-07-18 Thread Stacy Young
*smacks head* was a typo in setValue….   Cheers…   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young Sent: Monday, July 18, 2005 9:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Resetting a Cellrenderer   Interesting

[flexcoders] Resetting a Cellrenderer

2005-07-18 Thread Stacy Young
Interesting predicament…any suggestions on how to reset a Cellrenderer inside a datagrid? After a certain process is completed I need to return the user to a particular screen which has this grid and renderers. I have an init script which resets the dataprovider of both the grid and the c

RE: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Keldon Rush
I would love to get a definitive answer on this question from someone at MM.   Question: Can you follow an ASP model with a server running Flex?     Thanks, Keldon Rush Principal Spiral9 5814 4th Ave NW Seattle WA 98107 e:  [EMAIL PROTECTED] m: 206.349.8690 w: www.spiral9.co

RE: [flexcoders] How can I get an object by its id in a string?

2005-07-18 Thread Tracy Spratt
Are those names or id's? If they are Flex id's then you can do things like: var myObj:Object = eval("object" + N); Or: this["object" + N].myProperty = "whatever"; Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dimkapimkakolbasa Sent: Mond

RE: [flexcoders] Axis server exceptions and Flex.

2005-07-18 Thread Shlomi Cohen
Title: Mercury Email Signature well ?  was it too long or you didn't see it ? :-)   please take a moment guys   thanks   Shlomi     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shlomi CohenSent: Sunday, July 17, 2005 17:52To: 'flexcoders@yahoogroups.com'Subje

RE: RE. [flexcoders] get ComboBox selected item with RemoteObject

2005-07-18 Thread Tracy Spratt
Here is another example, same solution as Stacy provided. http://www.cflex.net/showfiledetails.cfm?ObjectID=229 Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ghislain Simard Sent: Sunday, July 17, 2005 5:33 PM To: flexcoders@yahoogroups.co

[flexcoders] How can I get an object by its id in a string?

2005-07-18 Thread dimkapimkakolbasa
I have a string with the name of the object. What function should I use to get itself? For example, I produce many objects by createClassObject() with names "object1", "object2" and furthermore. How can I get access to the objectN, where N is a numeric variable? -- Flexcoders Mailing List F

[flexcoders] How to catch events of a child component by the parent component?

2005-07-18 Thread dimkapimkakolbasa
I've got a custom component Widget which makes a child "image" in it's createChildren() method like that: function createChildren (): Void { super.createChildren (); this.image = this.createClassObject ( mx.controls.Image, "abc", 0,

[flexcoders] Binding DataGridColumn widths across DataGrids

2005-07-18 Thread alandouglasgray
Hi, I am new to Flex so apologies if this is trivial. I have tried searching for an answer but I'm at the end of my tether. I would like to add a totals line to a datagrid. Of course I don't want it to be affected by sorting the body of the datagrid. Using this article (http://www.richintern

RE: [flexcoders] populating controls from a structure coming from a RemoteObject call

2005-07-18 Thread Tracy Spratt
Looks ok at first glance. I assume this is not working? Is rToListSet() getting called? Can you debug in that handler to see exactly what the structure of your result object is? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ghislain S

[flexcoders] firefox set variable

2005-07-18 Thread nextadvantage
We are tring to set a variable in HTML, to set the focus of an flex accordion. We are having issues passing the value from firefox. Can someone please post the java/mxml required to do this. Thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

RE: [flexcoders] Breakline in Buttons.

2005-07-18 Thread Tracy Spratt
Here are two ways. Unfortunately, the text does not center. Tracy http://www.macromedia.com/2003/mxml"; initialize="initUI()"> -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Omar Ramos Sent: Monday, July 18, 2005 5:51 PM To

RE: [FlexCoders] Validator width actionscript and without model tag

2005-07-18 Thread Eric Guesdon
Darron, So funny, when i receive your post I just found the solution. Thanks a lot for your help Eric -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Darron J. Schall Envoyé : lundi 18 juillet 2005 21:11 À : flexcoders@yahoogroups.com Objet 

Re: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Daniel Cascais
You might want to mention if you are planning on charging for your hosting. If it's free: I'm not sure, but you probably can't. If it's not free: I dont think so. On 7/18/05, Clint Modien <[EMAIL PROTECTED]> wrote: > anyone? > > > On 7/15/05, Clint Modien <[EMAIL PROTECTED]> wrote: > > Just a q

[flexcoders] Breakline in Buttons.

2005-07-18 Thread Omar Ramos
Hi everyone, Is there a way to instert line breaks in a button? so I can have multiline text in it. I have tried html but it doesn't render it. Any ideas? thanks. Omar Ramos System Developer Nobox Marketing Group, Inc -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders

Re: [flexcoders] Re: No Deserializer for List -- more information

2005-07-18 Thread Sreejith Unnikrishnan
Rajesh Jayabalan wrote: > org.xml.sax.SAXException: No Deserializer defined for array type "this error is usually on the client side where in the array type was not mapped properly" - sun forum > In my WSDD I do not get the No Deserializer error anymore , but the > data is not coming to the web

Re: [FlexCoders] Validator width actionscript and without model tag

2005-07-18 Thread Darron J. Schall
Eric Guesdon wrote: >I do this code and i retreived true or false from validate method but i >would like to retreive default validators behaviors (TextInput with red >border and error tooltip attach to the error field) > That's kind of funny - I actually just ran into this exact same thing today.

RE: [FlexCoders] Validator width actionscript and without model tag

2005-07-18 Thread Eric Guesdon
Good evening, I do this code and i retreived true or false from validate method but i would like to retreive default validators behaviors (TextInput with red border and error tooltip attach to the error field) http://www.macromedia.com/2003/mxml"; creationComplete="initApp()"

[flexcoders] Re: No Deserializer for List -- more information

2005-07-18 Thread Rajesh Jayabalan
Hi, After I changed my beanmappings from http://www.macromedia.com/samples"/> http://www.macromedia.com/samples"/> to http://www.macromedia.com/samples"; qname="ns:MarketRequest" type="java:mr.massconnections.client.MarketRequest" serializer="org.apache.axis.encoding

[flexcoders] Christopher Coenraets' SQLAdmin

2005-07-18 Thread charlespaz1
Is anyone using Christopher's Flex SQL Admin application? If so, how do you set up the database name bundle? I lost my instructions and his site is down. Thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-a

RE: [FlexCoders] Validator width actionscript and without model tag

2005-07-18 Thread Sauro, Nick
first off, ALL mxml classes are reallly Actionscript. The mxml serves as a shortcut for coding, in theory you can write an entire Flex app using nothing but AS.  During compilation, all your mxmls are converted into AS. There's an option in flex-config to keep-generated-as files, so you ca

[FlexCoders] Validator width actionscript and without model tag

2005-07-18 Thread Eric Guesdon
Hi to all, I’m looking for validator without or . In fact how to make validation totally with actionscript I didn’t find any solutions for the moment First is it possible ? Second are there any old messages about this use of validation Thanks in advance for your help Eric This message con

Re: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Clint Modien
so that means asp is out... On 7/18/05, Tarik Ahmed <[EMAIL PROTECTED]> wrote: Well what if I developed a Flex application, sold it or gave it to you, and you got it going on your machine. You're 'hosting' my application, which I believe is legal. The only thing I see is section 3c

[FlexCoders]

2005-07-18 Thread Eric Guesdon
Hi to all,   I’m looking for validator without or . In fact how to make validation totally with actionscript   I didn’t find any solutions for the moment   First is it possible ? Second are there any old messages about this use of validation   Thanks in advance for your help  

RE: [flexcoders] dispatching effects

2005-07-18 Thread Tracy Spratt
While I have not tried it personally, I believe you can just run the event with a statement like: myDataProvider.modelChanged   I know I have seen that particular syntax.   Could it be as easy as myPanel.resize; ?   Tracy   From: flexcoders@yahoogroups.com [mailto:flexcod

[flexcoders] dispatching effects

2005-07-18 Thread Sauro, Nick
Hey guys, here's a question.   I have a Panel, and on this Panel there is a Button.  Initially, the Panel is not exposed(save for the Button). When the user clicks the button, I want to dispatch the Panel's Resize effect.  Currently, its hacked, so the panel has a , and yea that works, but

Re: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Tarik Ahmed
Well what if I developed a Flex application, sold it or gave it to you, and you got it going on your machine. You're 'hosting' my application, which I believe is legal. The only thing I see is section 3c: Unless otherwise provided herein, you may not rent, lease, or sublicense the Software.

Re: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Nate Nielsen
From what I understand, only on an ASP basis.    I.e.  you can only host what you create for your clients.   -someone correct me if I'm wrong please   :)   - Original Message - From: Clint Modien To: flexcoders@yahoogroups.com Sent: Monday, July 18, 2005 2:54 PM

RE: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Tracy Spratt
I can’t quote line/verse, but I do know that MM has said repeatedly that third party hosting is not permitted under any Flex license.. Tracy   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Modien Sent: Monday, July 18, 2005 4:54 PM To:

Re: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Clint Modien
Asp basis would work for my situation... I can't see it being a big deal... It's per cpu right?  *snickers* BUT ITS NOT PER CORE!!!... muahahahahaha... On 7/18/05, Clint Modien <[EMAIL PROTECTED]> wrote: *yoda voice*  confusing mm's motives are On 7/18/05, Clint Modien

[flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Clint Modien
anyone?On 7/15/05, Clint Modien <[EMAIL PROTECTED]> wrote: Just a question I thought I'd kick out there to MM. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Clint Modien
*yoda voice*  confusing mm's motives are On 7/18/05, Clint Modien <[EMAIL PROTECTED]> wrote: *shakes head*On 7/18/05, Tracy Spratt < [EMAIL PROTECTED]> wrote: I can't quote line/verse, but I do know that MM has said repeatedly that third party hosting is not permitted under any

Re: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-18 Thread Clint Modien
*shakes head*On 7/18/05, Tracy Spratt <[EMAIL PROTECTED]> wrote: I can't quote line/verse, but I do know that MM has said repeatedly that third party hosting is not permitted under any Flex license.. Tracy   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogr

[flexcoders] Horizontal Datagrid

2005-07-18 Thread superabe
Hello List, Is there any way to achieve a horizontal datagrid effect using a datagrid or otherwise. E.g COLUMNItem1Item2Item3 columnAval1aval2a val3a columnBval1bval2b val3b columnC

RE: [flexcoders] Using Run-as for web services

2005-07-18 Thread Matt Chotin
I wonder if this is a bug.  Leave the run-as in but try setting to true maybe?   Matt   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tony_lic Sent: Friday, July 15, 2005 3:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Using Run-as for w

RE: [flexcoders] Location of the shared.sws

2005-07-18 Thread Rob Rusher
Joost, You need to create the library descriptor file that defines the SWS. In this descriptor file you will be able to reference SWF or SWC .   http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=1165.htm   Th

[flexcoders] Re: No Deserializer for List

2005-07-18 Thread Rajesh Jayabalan
Hi, Anyone faced this problem. Regards Rajesh J --- In flexcoders@yahoogroups.com, "Rajesh Jayabalan" <[EMAIL PROTECTED]> wrote: > Hi, > > I have a webservice which accepts a complex paramenter > > createRequest(MarketRequest marketRequest) > > where > > class MarketRequest > { > protecte

[flexcoders] Re: Help with loading of some SWF content in an mx:Image tag

2005-07-18 Thread alex_harui
Well, if you are in "no-source-code hell", then you have to hack your way out. If you know the internal structure of the loaded SWF, you can try to find the place the loadVars is done and try to grab a "load" event on it, or set a timer and check to see if the loadVars is complete. After that

[flexcoders] Re: dispatching event from custom swc file

2005-07-18 Thread alex_harui
You didn't explain what the problem is. Do you get a compile error? What is the error? Does the code listening for the event not run? Post a mini-example. Your sample looks right to me. --- In flexcoders@yahoogroups.com, "m00n_de" <[EMAIL PROTECTED]> wrote: > hi, maybe someone could explai

[flexcoders] Re: cursor manager bug

2005-07-18 Thread alex_harui
This is a "fact-of-life" of how security in loaded SWFs works. Assets in subordinate SWFs are not available to the top-level SWF, but the cursorManager only can work in the top-level SWF. The easy workaround is to put a DividedBox in the top-level movie and hide it. The more sophisticated wor

Re: [flexcoders] Re: clone objects

2005-07-18 Thread Darron J. Schall
Clint Modien wrote: > i remember reading a post a few weeks ago that said something about > this is broken for v 1.5 > > http://www.mail-archive.com/flexcoders@yahoogroups.com/msg09275.html I fixed ObjectCopy earlier this year here: http://www.darronschall.com/weblog/archives/000148.cfm I'm

Re: [flexcoders] email servers and live links

2005-07-18 Thread Clint Modien
email question was just asked last week... run a search http://www.mail-archive.com/flexcoders@yahoogroups.com/ then search for getUrl to help with your "live" link problem On 7/18/05, Sauro, Nick <[EMAIL PROTECTED]> wrote: Does Flex have any capabilities to communicate with any type of

Re: [flexcoders] Re: clone objects

2005-07-18 Thread Clint Modien
i remember reading a post a few weeks ago that said something about this is broken for v 1.5 http://www.mail-archive.com/flexcoders@yahoogroups.com/msg09275.html might want to search for On 7/18/05, m00n_de <[EMAIL PROTECTED]> wrote: ahh, thanks, works now--- In flexcoders@yahoogroups.com, "

[flexcoders] email servers and live links

2005-07-18 Thread Sauro, Nick
Does Flex have any capabilities to communicate with any type of email servers?(pop3, smtp, etc).   I am also having a problem creating a List of live links. I can make labels, and use the htmlText property to create a link normally. Yet, when I try to make a List of Labels using the same

[flexcoders] Re: clone objects

2005-07-18 Thread m00n_de
ahh, thanks, works now --- In flexcoders@yahoogroups.com, "Darron J. Schall" <[EMAIL PROTECTED]> wrote: > m00n_de wrote: > > >how is it possible to clone an object, rather than creating a > >reference to an object ? > > > > > > Use mx.utils.ObjectCopy - > http://livedocs.macromedia.com/flex/1

[flexcoders] Re: OT: Just testing

2005-07-18 Thread abdulqabiz3
Hi, I have not recieved any mail since morning. Even my own mail. I am replying this from web interface of yahoo groups :( Why am I not recieving mails? This has happened for first time with me... -abdul --- In flexcoders@yahoogroups.com, Sreejith Unnikrishnan <[EMAIL PROTECTED]> wrote: > :-)

Re: [flexcoders] clone objects

2005-07-18 Thread Darron J. Schall
m00n_de wrote: >how is it possible to clone an object, rather than creating a >reference to an object ? > > Use mx.utils.ObjectCopy - http://livedocs.macromedia.com/flex/15/asdocs_en/mx/utils/ObjectCopy.html It's "for internal use only" but usage is as such: var instance2:SomeClass = SomeCla

[flexcoders] clone objects

2005-07-18 Thread m00n_de
hi folks, how is it possible to clone an object, rather than creating a reference to an object ? For example: I have to Objects, ObjA and ObjB; when i call ObjA = ObjB and ObjB changes, ObjA also changes. In Flash itself there is a way using the function below, in flex this doesnt work, or maybe

Re: [flexcoders] OT: Just testing

2005-07-18 Thread Sreejith Unnikrishnan
:-) you are ... incase u dont recieve ur own mails !!! Abdul Qabiz wrote: > Testing, if I am still in the list...Have not received any new mails... > > -abdul > > Breeze 5 - high-impact online communications everyone can access > instantly. Test drive Breeze 5 today! > www.macromedia.com/go/bree

[flexcoders] fp8

2005-07-18 Thread Philippe Maegerman
Not really Flex-centric, some examples of the FP8 power ;) http://www.5etdemi.com/blog/archives/2005/07/fp8-invasion-of-the-goths/   Philippe Maegerman   -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-arc

[flexcoders] OT: Just testing

2005-07-18 Thread Abdul Qabiz
Testing, if I am still in the list...Have not received any new mails... -abdul Breeze 5 - high-impact online communications everyone can access instantly. Test drive Breeze 5 today! www.macromedia.com/go/breeze5 -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/fl

Re: [flexcoders] Rich Text Editor Component, someone have it?

2005-07-18 Thread Clint Modien
hot control...  how well does it work in flex?On 7/17/05, JesterXL <[EMAIL PROTECTED]> wrote: Closest you'll get for now:  http://www.flashtexteditor.com/in.php     - Original Message - From: Bruno Martins To: flexcoders@yahoogroups.com Sent: Sunday, July 17, 2005 4:32 PM Su

[flexcoders] Location of the shared.sws

2005-07-18 Thread Joost Nuijten
Hi,   I have the following problem regarding the shared library:   The webserver (server 1) embeds mxml.swf files from the flexserver (server 2). The shared.sws is located on server 2. The mxml says the rsl can be found on rsl="shared.sws".   When the page is accessed throught the HTML th