[flexcoders] Partnership Lookout

2006-08-04 Thread Alexander Tsoukias
My company owns a bunch of Flex 2 Enterprise (FDS) licenses and are looking for some type of partnership with any projects which are in need of infrastructure and licensing. Nothing formal, feel free to get in touch, even if you are still at the idea phase. Thank you, Alexander C. Tsoukias Cosmo

[flexcoders] passing data to CF and back

2006-08-04 Thread Devin Holloway
I have an ArrayCollection used as the dataProvider for a datagrid. Submitting a form adds an item to the ArrayCollection (and therefore the grid). I'm also detecting changes to the ArrayCollection using the CollectionEvent.COLLECTION_CHANGE event listener. When detecting an "ADD", for example, I t

[flexcoders] Re: WebService & Cairngorm 2 Example

2006-08-04 Thread Jason
Thanks for posting your Cairngorm 2 example. Seeing it in action really helped pull all the pieces of Cairngorm together for me. I have only been using Cairngorm for a few days, but it is very similar to a MVC micro-arcitecture I wrote from scratch for use with AS2 (it took me 18 months to get it

Re: [flexcoders] Help with SharedObject please!

2006-08-04 Thread Jeremy Lu
Looks like a security problem, can you trace the contents stored in the sharedobject and see if all data are kept there ? Jeremy.On 8/5/06, wayneposner <[EMAIL PROTECTED]> wrote: Howdy all... I trying to use a SharedObject to keep user entered search strings

Re: [flexcoders] Is this a bug, or is it just me?

2006-08-04 Thread Rick Root
sinatosk wrote: > > no it's not a bug :p > > lets just say you have an xml tag > > var xml_tag:XML = tag text; > > an thats been assigned to a variable 'xml_tag'. when you come to output > the contents of that variable... it will show "tag text" not "v1" or > "v2" ( which are attributes ). To

RE: [flexcoders] Validator Problems - Not clearing when disabled

2006-08-04 Thread Moishe Groger
Chad,   Try setting the errorString property of the control with the red border to an empty string.   Moishe Groger From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chad SherwoodSent: Friday, August 04, 2006 1:30 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders

Re: [flexcoders] Is this a bug, or is it just me?

2006-08-04 Thread sinatosk
no it's not a bug :plets just say you have an xml tagvar xml_tag:XML = tag text;an thats been assigned to a variable 'xml_tag'. when you come to output the contents of that variable... it will show "tag text" not "v1" or "v2" ( which are attributes ). To output the contents of those attributes .

[flexcoders] still stuck binding combobox to selected datalist item

2006-08-04 Thread Impudent1
Well even giving it a rest and doing other bits on the app. Coming back to this section of code just seems to not work for me :( I have a datagrid that is populated by an arraycollection coming from mysql. This is also set that each datagridcolumn has a dataField defined from that array. I hav

Re: [flexcoders] [Flex 2][RichTextEditor] How to use a RichTextEditor as itemEditor in DataGrid

2006-08-04 Thread Carlos Rovira
Apart from that, I think that the last part of my first mail was not interpreted correctly. Let me explain...The colorpicker I was talking about is the one inside the rich text editor. so first, I select the cell -> the richTextEditor pops  (as expected because is the itemEditor), then I select

Re: [flexcoders] [Flex 2][RichTextEditor] How to use a RichTextEditor as itemEditor in DataGrid

2006-08-04 Thread Carlos Rovira
Hi Joan,I try to modify the example that I've posted before but I can't get it work withoutthrowing that error. Could you modify the example in order to get it work without the text getter workaround in order to understand it well?. Thanks in advance.C.On 8/5/06, Joan Lafferty <[EMAIL PROTECTED]

Re: [flexcoders] Re: Shift-tabbing not working in Firefox with wmode=opaque

2006-08-04 Thread Brendan Meutzner
I'm guessing this is also the cause of an issue I noticed on my Flex App which is housed inside an iFrame... any PopUp content (menus, dateField selectors, etc...) does not allow interaction when loaded in Firefox... bug doesn't exist in IE... BrendanOn 7/5/06, Scott Romer <[EMAIL PROTECTED]> wr

Re: [flexcoders] [Flex 2][Bug][DataGrid] rowCount=5 shows 6 rows

2006-08-04 Thread Carlos Rovira
Hi Joan I think the bug is cuased by a itemRenderer...I'm using an ArrayCollection as the dataProvider.This is the code for the datagrid:        width="90%" rowCount="5">                                                                                itemRenderer="sessions.view.itemRenderers.Sta

RE: [flexcoders] [Flex 2][RichTextEditor] How to use a RichTextEditor as itemEditor in DataGrid

2006-08-04 Thread Joan Lafferty
The reason you get the error "there's no text property in the inline editor..." is because an itemEditor is always looking for the “text” property in your itemEditor to update your dataProvider with. So, if your editor was a Text, TextArea, or TexInput, then, this would work. In other c

[flexcoders] Re: filter operator

2006-08-04 Thread Tim Hoff
Also, not to be confused with a filter function (Collections). :-) -TH --- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote: > > As I mentioned in a post earlier today, the "filter operator" that the > error message referred to is the E4X predicate filtering operator. >

[flexcoders] [Flex 2][RichTextEditor] How to use a RichTextEditor as itemEditor in DataGrid

2006-08-04 Thread Carlos Rovira
After a lot of test I get a cell in a datagrid with an inline Text Control for itemRenderer and a RichTextEditor foritemEditor. I try drop-in itemEditor and itemRenderer but I can't get it work...This is my solution:                 headerText="Tema" width="330"                editorWidthOffset=

RE: [flexcoders] [Flex 2][Bug][DataGrid] rowCount=5 shows 6 rows

2006-08-04 Thread Joan Lafferty
Hi Carlos,   Can you give us more details on the bug? What kind of dataProvider are you using. Or, just send us the code and we’ll have a look. Is your DataGrid in a PopUp or custom component?   Thanks, Joan     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogr

RE: [flexcoders] filter operator

2006-08-04 Thread Gordon Smith
As I mentioned in a post earlier today, the "filter operator" that the error message referred to is the E4X predicate filtering operator.   You're correct that the Player also uses the term Filter to mean a bitmap transformation like a blur, glow, or dropshadow.   - Gordon  

Re: [flexcoders] filter operator

2006-08-04 Thread Impudent1
I may be wrong, and I'll eat a bug if I am.. :p but aren't filters flex talk for effects? If look at any of the examples you will notice that things like blur/glow/dropshadow etc are blurfilter etc. Impudent1 LeapFrog Productions -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/f

[flexcoders] Re: RadioButtons as customItemRenderers/Editors in DataGrids

2006-08-04 Thread Tim Hoff
Hi John, To get the RadioButtons inside an itemRenderer to work together, you need to associate them with a common RadioButtonGroup.  Place this tag right above the DataGrid in your application: Then, use code like this in your itemRenderer: -TH--- In flexcoders@yahoogroups.com, "John Mazzocch

Re: [flexcoders] new in this list

2006-08-04 Thread Paul Ihrig
have you looked at adobe labs under flex?http://www.adobe.com/products/flex/productinfo/overview/there are a ton of good articles there. welcome to the list!-paul __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: ht

[flexcoders] new in this list

2006-08-04 Thread Arleston L
Hello you guys!I'm from Brazil. I'm studing Flex and all that englobe Rich Internet Applications. My final work for the knowlege is about RIA. If you have some article on benefits of Flex, please send to me. Next year, I hope travel to USA. :)Thanks people!Hugs,Arleston __._,_.___ -- Flexc

[flexcoders] [Flex 2][Bug][DataGrid] rowCount=5 shows 6 rows

2006-08-04 Thread Carlos Rovira
I'm experiencing a bug in DataGrid.I set "rowCount" to 5 and the grid is showing 6 rows. The last one overflows datagrid's bottom line.Someone knows how to fix this?-- ::| Carlos Rovira ::| http://www.carlosrovira.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

[flexcoders] Re: Application backgroundAlpha??

2006-08-04 Thread Tim Hoff
I haven't tested this, but you might try just setting the application's alpha property for transperancy. -TH --- In flexcoders@yahoogroups.com, "maikelsibbald" <[EMAIL PROTECTED]> wrote: > > How do you set the backgroundalpha ... because I want to show some > thing behind the flash in HTML. Is

[flexcoders] Re: toArray, Array and ArrayCollection Changes from beta 3

2006-08-04 Thread Tim Hoff
Hi Torey, One change that was made between B3 and final was the makeObjectsBindable property of the HTTPService tag. If you set this property to false, your application should return the same data result as in B3. -TH --- In flexcoders@yahoogroups.com, "Torey Maerz" <[EMAIL PROTECTED]> wrot

[flexcoders] Re: Is it possible to embed a html page in Flex application?

2006-08-04 Thread Tim Hoff
Here is an example how to embed an html page in Flex using an IFrame. http://coenraets.com/viewarticle.jsp?articleId=95  -TH--- In flexcoders@yahoogroups.com, "user_abcxyz" <[EMAIL PROTECTED]> wrote:>> Can we embed a html page in Flex application? If so, please show me an > example and/or explan

Re: [flexcoders] How do you install CF Extensions for Flex 2?

2006-08-04 Thread Clint Tredway
assuming you are on windows, its here C:\Documents and Settings\user\Local Settings\Temp\ColdFusion Extensions for Flex BuilderGo into Flex builder and Help - Software Updates - Find and Install - search for new features - new archived site Use the path that I supplied up above and change 'user'

[flexcoders] Re: How do you install CF Extensions for Flex 2?

2006-08-04 Thread g8torjoe
A Thank you for that. I guess a search would have turned it up, but I thought about that too late. Thank you!!! --- In flexcoders@yahoogroups.com, "João Fernandes" <[EMAIL PROTECTED]> wrote: > > they should be here > > C:\Documents and Settings\[UserAccountName]\Local Settings\Temp\Co

Re: [flexcoders] How do you install CF Extensions for Flex 2?

2006-08-04 Thread João Fernandes
they should be hereC:\Documents and Settings\[UserAccountName]\Local Settings\Temp\ColdFusion Extensions for Flex BuilderJoão FernandesOn 8/4/06, g8torjoe <[EMAIL PROTECTED]> wrote: That's it. My question is the subject. :) I have searched hi and low and can

[flexcoders] installation on XP in spanish

2006-08-04 Thread Ruben Sainz de la Maza
Hi I´m newbee in Flex. When the try to compile the proyect the folder bin is empty, and an error ocurr. Can anybody helpme? The version of Flex is 2, Beta 3, and I have Windows XP in spanish. Thanks Ruben Dto Internet -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/f

[flexcoders] installation on XP in spanish

2006-08-04 Thread Ruben Sainz de la Maza
Hi I´m newbee in Flex. When the try to compile the proyect the folder bin is empty, and an error ocurr. Can anybody helpme? The version of Flex is 2, Beta 3, and I have Windows XP in spanish. Thanks Atte Ruben A. Sainz de la Maza Dto Internet - AFIP -Mensaje original- De: flexcoders@yah

RE: [flexcoders] Re: How do you install CF Extensions for Flex 2?

2006-08-04 Thread Mike Anderson
Okay, if that's the case - then my original post is the answer then. If not, here is a portion of the Readme, explaining the steps required: To install the ColdFusion Plugin for Flex Builder 2: In Flex Builder, select Help > Software Updates > Find and Install. Select the Search For New Feature

[flexcoders] Is there a way to search and append an XMLListCollection

2006-08-04 Thread Dave Bobby
I have been looking for the past 4 hours, maybe not looking in the right place. I need to update my Tree component, with the new XML retrieved through the HttpService. I need to find the node that was clicked and then append to this node. Where can i start, clues/hints/... -- Flexcode

[flexcoders] Re: How do you install CF Extensions for Flex 2?

2006-08-04 Thread Anthony DeBonis
After installing FlexBuilder 2 I found this dir: C:\WINDOWS\Downloaded Installations\Adobe Flex Builder 2\ColdFusion Extensions for Flex Builder and it has a file called Installing the ColdFusion Extensions for Flex Builder 2.htm Here are the instructions that worked for me: Installing the Cold

[flexcoders] Flex 2 Dynamic DataGrid column width issue

2006-08-04 Thread Anthony DeBonis
We are using a DataGrid and appending columns to the right side and it works fine ONLY if the DataGrid is visable. IF we add columns and the DataGrid is in a ViewStack and not the current visible item in the stack THEN make it visible – the column widths are all messed up. We can find no way t

[flexcoders] Re: How do you install CF Extensions for Flex 2?

2006-08-04 Thread g8torjoe
Just to make sure I am explaining myself properly...I am looking to install the extensions into Flex Builder so that I can utilize the RDS and CFC creation features. I had it in the Beta release, but I just can't put my finger on how to install them now. Thanks again! --- In flexcoders@yahoogrou

RE: [flexcoders] Confused if I should use Classes or Packages?? (Cairngorm specific question)

2006-08-04 Thread Mike Anderson
Thank you SO much! I prefer the 2nd method anyway, so all the better :) Many thanks - and I appreciate the rapid reply, Mike -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Bokelberg Sent: Friday, August 04, 2006 2:24 PM To: flexcoders@ya

RE: [flexcoders] How do you install CF Extensions for Flex 2?

2006-08-04 Thread Mike Anderson
Oh, sorry about that -   I mis-read your post - you are referring to the portions that get copied to the actual ColdFusion Server.   I apologize for jumping the gun on that post - I should have read it through more thoroughly before replying.   Mike - From: flexcoders@yahoogroups.com [mai

Re: [flexcoders] How do you install CF Extensions for Flex 2?

2006-08-04 Thread Douglas Knudsen
they should be in the temp directory FB used to install.  You can nab them herehttp://ray.camdenfamily.com/index.cfm/2006/7/6/Getting-the-RDS-extensions-for-CFEclipse   too.go gators!  DKOn 8/4/06, g8torjoe <[EMAIL PROTECTED] > wrote:That's it. My question is the subject.  :)  I have searched hi

RE: [flexcoders] How do you install CF Extensions for Flex 2?

2006-08-04 Thread Mike Anderson
There should be a Read Me file contained within the Zip - It spells it all out right there - it was very intuitive as to what to do, immediately after downloading the file from Adobe - you just need to be inquisitive enough, to poke around. The file from Adobe's site, comes as a Zip File I believ

Re: [flexcoders] Confused if I should use Classes or Packages?? (Cairngorm specific question)

2006-08-04 Thread Ralf Bokelberg
Hi Mike, the first example is AS2/Flex 1.5 and the second one is AS3/Flex 2 Cheers, Ralf. On 8/4/06, Mike Anderson <[EMAIL PROTECTED]> wrote: > Hello All, > > In scouring all my Cairngorm examples, I am seeing 2 distinct methods of > creating the Delegates (under com.adobe.cairngorm.business). >

[flexcoders] How do you install CF Extensions for Flex 2?

2006-08-04 Thread g8torjoe
That's it. My question is the subject. :) I have searched hi and low and can not seem to figure out where the CF Extensions for Flex 2 are and how to install them. Thanks for your help! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search A

[flexcoders] Confused if I should use Classes or Packages?? (Cairngorm specific question)

2006-08-04 Thread Mike Anderson
Hello All, In scouring all my Cairngorm examples, I am seeing 2 distinct methods of creating the Delegates (under com.adobe.cairngorm.business). One method uses a Class - like so: --- import com.adobe.cairngorm.business.Responder; impor

Re: [flexcoders] Styles editor

2006-08-04 Thread John Grden
Yes Yes Yes, that's the one!Sam rocks \m/Haha, sounds like "shamrocks" ;)On 8/4/06, sam / pixelconsumption < [EMAIL PROTECTED]> wrote: John, Do you mean the styles explorer? If so this one runs fine for me in the release player, http://examples.adobe.com/flex

RE: [flexcoders] How to get the property names from Actionscript object like java reflection

2006-08-04 Thread Gordon Smith
You can use the function flash.utils.describeType(instance) to find out the public property and method names in an instance.  It will also tell you the name of the instance's class. If the class name is all you need, flash.utils.getQualifiedClassName() is much faster than describeType()

[flexcoders] Help with SharedObject please!

2006-08-04 Thread wayneposner
Howdy all... I trying to use a SharedObject to keep user entered search strings in a drop-down box like the Google IE Toolbar. This works fine when I'm running the app locally, but as soon as I move it to a server and access it via a URL, it stops working. Does anyone know what might be causi

RE: [flexcoders] filter operator

2006-08-04 Thread Gordon Smith
If '-thisObject' and 'arguments' are arguments you are passing to a method named 'handler', then you shouldn't have a dot before the left parenthesis in the method call. foo.(condition) is the E4X notation for predicate filtering of an XML or XMLList instance. It lets you pick out elem

[flexcoders] Is this a bug, or is it just me?

2006-08-04 Thread Rick Root
When a tree has only one item, the dataProvider is empty when dumped to a string. Example: https://www.it.dev.duke.edu/temp/flex/bin/Test.html Drag one of the parent items over and click "Show List Items", and the textarea is populated with all of the nodes in the data provider. Now hit "Rese

Re: [flexcoders] FYI on AJAX Security Problems

2006-08-04 Thread The Irrelevant Elephant
Not a bad article, but a lot of what is said is not specific to AJAX, and a lot of it can also be applied to Flash. I think the title is misleading too, since it's not AJAX that is introducing vulnerabilities, but programmers using it's methodologies. It would be hard to use this article as a

Re: [flexcoders] Styles editor

2006-08-04 Thread Peter Baird
Title: Re: [flexcoders] Styles editor Yes, it does link to the same URL, and yes it is the release version.   The link in the Flex Builder Start Page is http://www.adobe.com/go/flex_styles_explorer_app and this is actually a redirect link that will always work. You can read more about the la

Re: [flexcoders] Re: How do I reset itemRenderer inside DataGrid when dataProvider is updated?

2006-08-04 Thread Brendan Meutzner
LOL... guess I should clarify that the setSelectionStyle method inside the renderer would check to see if this item was a "selected" item or not, and would set the backgroundColor style appropriately... On 8/4/06, Brendan Meutzner <[EMAIL PROTECTED]> wrote: Not sure if this was 100% the right wa

[flexcoders] Validator Problems - Not clearing when disabled

2006-08-04 Thread Chad Sherwood
I'm using flex 2.0 and multiple validators in such a manner that I enable/disable them depending on whether some text has been placed in specific textInput controls. However, *most* of the time, the validators are disabled but the screen still reflects that they are operating (ie, the red boxe

Re: [flexcoders] Re: How do I reset itemRenderer inside DataGrid when dataProvider is updated?

2006-08-04 Thread Brendan Meutzner
Not sure if this was 100% the right way to accomplish what i needed, but it worked for me...I've got a DataGrid with an itemRenderer instance that colors the background of my rows differently based on selection order... yada yada... Anyway, came across this problem when I wanted to "clear" my se

Re: [flexcoders] Variable references

2006-08-04 Thread Rick Root
Never mind, I discovered XMLList.copy() =) It works! -- 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: htt

[flexcoders] Variable references

2006-08-04 Thread Rick Root
I've got an interesting issue which I'm sure real programmers understand but I don't know quite how to describe. Essentially, I've got a flex component that contains, among other things, an XMLList component with some data in it. I have assigned that as the data provider for a tree item, and I'

Re: [flexcoders] Styles editor

2006-08-04 Thread Brendan Meutzner
Not sure if it it links to the same URL that Sam provided below, but you can access the Styles Explorer, Component Explorer and various examples through the Flext Start Page of FlexBuilder...Brendan On 8/4/06, sam / pixelconsumption <[EMAIL PROTECTED]> wrote: J

[flexcoders] FYI on AJAX Security Problems

2006-08-04 Thread Jack W. Caldwell @ Zingit Technologies, Inc.
Title: FYI on AJAX Security Problems To all: For anyone being asked by clients regarding AJAX . . . some fuel for your arsenal.     http://www.eweek.com/article2/0,1895,1998795,00.asp?kc=EWENTEMNL080506EOAD Jack __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.y

Re: [flexcoders] Styles editor

2006-08-04 Thread sam / pixelconsumption
John, Do you mean the styles explorer? If so this one runs fine for me in the release player, http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html . - Sam John Grden wrote: > > Has that little gem been updated for the final release of FP9/flex 2? > > -- >

RE: [flexcoders] UserTransaction on Windows and Linux

2006-08-04 Thread Jeff Vroom
FDS requires that your app server have an implementation of JTA – the javax.transaction.UserTransaction class.  Tomcat does not come with one out of the box but you can download the open source implementation.      Here’s the link with the instructions for installing that:   http://

[flexcoders] Re: Flex2 and CFC work on local but not whe uploaded to host

2006-08-04 Thread flycl65
yes... crossdomain.xml is in the root. --- In flexcoders@yahoogroups.com, "Battershall, Jeff" <[EMAIL PROTECTED]> wrote: > > One thing to check - is there a crossdomain.xml in the webroot of your > site? > > Jeff > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL P

[flexcoders] Re: Validators -- Is there a better way of doing this? (Flex 2)

2006-08-04 Thread Raheen M Shabbazz
Still encountering this issue -- any ideas? --- In flexcoders@yahoogroups.com, "Raheen M Shabbazz" <[EMAIL PROTECTED]> wrote: > > Hello All, > > I'm using Flex 2 to develop an app that requires some validation. I > can't seem to find any info on how to reuse validators or how to use > several

[flexcoders] Need a little help with some as.

2006-08-04 Thread Jeremy Rottman
I am using hbox's to display various information in my app. I have two sides to any given file. Seller on one side and Buyer on the other. On my closing screen, I have 3 sets of these hbox's. Thier visibility is hidden. I am using a for loop to over over each of the sides that I return from my cfc.

RE: [Junk E-Mail - LOW] Re: [flexcoders] manipulating adanced datagrids...

2006-08-04 Thread Shannon Hicks
listData is null... How does it apply? Shan -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joan Garnet Sent: Friday, August 04, 2006 10:30 AM To: flexcoders@yahoogroups.com Subject: [Junk E-Mail - LOW] Re: [flexcoders] manipulating adanced datag

Re: [flexcoders] manipulating adanced datagrids...

2006-08-04 Thread Joan Garnet
This will help you: http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=0834.html Cheers Joan Shannon Hicks escribió: > Here's the scenario: > I'm dynamically adding columns to my datagrid... all the added columns have > the same cell

RE: [flexcoders] Flex2 and CFC work on local but not whe uploaded to host

2006-08-04 Thread Battershall, Jeff
One thing to check - is there a crossdomain.xml in the webroot of your site? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flycl65 Sent: Friday, August 04, 2006 11:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2 and CFC wo

Re: [flexcoders] Firefox and multiselect list

2006-08-04 Thread Scotty Scott
hi there,I seem to have the same problem... I think I narrowed it down to wmode="opaque"Did you set a different wmode for your application?-- Scotty Scott http://www.franciswscott.comOn 8/4/06, swhitley02 <[EMAIL PROTECTED]> wrote: I'm having trouble with multi

Re: [flexcoders] Problem with charts license

2006-08-04 Thread Dave Carabetta
On 8/4/06, Bill Lane <[EMAIL PROTECTED]> wrote: > I'm having a problem with inputting our serial number for Flex > Charting. FB2 has accepted the serial number no problem. But the > charting says it's invalid. Should there be a different serial number > for charting compared to FB2. Our IT guys

[flexcoders] Re: UI Design Help

2006-08-04 Thread gotgoose09
This article might help you with the drag and drop: http://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/ --- In flexcoders@yahoogroups.com, Rick Root <[EMAIL PROTECTED]> wrote: > > I'm building an app that will replace a current HTML-based app that > allows users to search our databas

[flexcoders] Styles editor

2006-08-04 Thread John Grden
Has that little gem been updated for the final release of FP9/flex 2?-- John Grden __._,_.___ -- 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: UI Design Help

2006-08-04 Thread Douglas Knudsen
http://examples.adobe.com/flex2/inproduct/sdk/explorer/explorer.htmlgood thing to bookmark DK On 8/4/06, Rick Root <[EMAIL PROTECTED]> wrote: gotgoose09 wrote:>>> Perhaps you could let them drag and drop fields they want into a List> or something?What i'm trying right now is side-by-side tree co

[flexcoders] toArray, Array and ArrayCollection Changes from beta 3

2006-08-04 Thread Torey Maerz
It seems like there are some changes from beta 3 to release in how Arrays are wrapped or something that is causing me problems. I used to be able to use ArrayUtil.toArray() to make sure that my HTTPService results were in a format which I could loop not I cannot. Can anyone give a good solutio

Re: [flexcoders] Re: selectedindex and change event

2006-08-04 Thread Douglas Knudsen
hmm, that sounds like a huge can of works there, eh?  :)in the docs we haveselectedIndex property  selectedIndex:int  [read-write] The index in the data provider of the selected item. The default value is -1 (no selected item). This property can be used as the source

Re: [flexcoders] UI Design Help

2006-08-04 Thread Tom Chiverton
On Friday 04 August 2006 15:44, Rick Root wrote: > I was thinking about using some kind of tree component - but with Or an accordian/tab viewstack. Have a play with the Style Explorer (doubles as a component explorer !) and see what else is there. -- Tom Chiverton *

[flexcoders] Resize width and heights at different rates

2006-08-04 Thread tr.coffey
Hi, I'm trying to resize the width and height of a panel using differnt duration within a Transition but this does not work. Instead the Resizes are happening in sequence twice. It can be done with the AS2 Tween class pretty easily. Any thoughts. -- Flexcoders Mailing List FAQ: h

Re: [flexcoders] Re: UI Design Help

2006-08-04 Thread Rick Root
gotgoose09 wrote: > > > Perhaps you could let them drag and drop fields they want into a List > or something? What i'm trying right now is side-by-side tree components and dragging from one to the other. I added the dragEnabled="true" property but apparently I have to write more code than tha

Re: [flexcoders] need to be able to cancel change to a DateField

2006-08-04 Thread Tom Chiverton
On Wednesday 02 August 2006 20:21, jrjazzman23 wrote: > I'd like to be able to ask the user to confirm their date selection > BEFORE the selectedDate field gets set. The Change event appears to > not be cancelable. Is there any other way to accomplish this? Am I wrong in thinking the newDate val

Re: [flexcoders] Keyboard.isDown

2006-08-04 Thread Tom Chiverton
On Wednesday 02 August 2006 21:31, Cleiton Luiz Coradelli wrote: > How can I implement a workaround? Use an event to set/unset some global flag variable onKeyUp/onKeyDown -- Tom Chiverton This email is sent for and on behalf of Halliwells LL

RE: [flexcoders] fundamental logout problem...

2006-08-04 Thread Tobias Patton
You could store all the user’s data in a singleton object, like a Cairngorm data model. The data model has “Reset()” method that returns all the data to its initial state. The Logout handler could call dataModel.Reset().   From: flexcoders@yahoogroups.com [mailto:flexcoders@ya

Re: [flexcoders] Another Dummie

2006-08-04 Thread Tom Chiverton
On Thursday 03 August 2006 15:51, robert_mediasvar wrote: > Could someone actually give me tutorial sample and hints on how to > create my first Cairngorm 2 app, I would really appriciate it. It may be easier for you to post a specific 'what does this sentance mean / code do'. Cairngorm can be a

RE: [flexcoders] selectedindex and change event

2006-08-04 Thread Tobias Patton
As far as I know you can’t. Change events are only fired when the selectedIndex is changed by a user action.   My solution to this problem was to attach a changeWatcher to the selectedIndex. The changeWatcher’s callback will be invoked when the value is changed programmatically. It’s

Re: Re: [flexcoders] integrating map24 maps with FLEX2

2006-08-04 Thread Rich Tretola
I think the IFrame is the only way to go. Here is the original sample but I think its FP 8.5: http://www.deitte.com/archives/2006/02/embedding_html.htm Rich On 8/4/06, Michael Hansen <[EMAIL PROTECTED]> wrote: > You could use an iframe solution. Google around for iframe and > flex2... I've seen

Re: [flexcoders] UserTransaction on Windows and Linux

2006-08-04 Thread Tom Chiverton
On Friday 04 August 2006 14:26, dreuimar wrote: > I'm writing an application that's being developed on a Windows machine > and the production server is on Linux. Aside: Doing this leads to a world of pain and hurt, like this. You should try and develop on the same platform you deploy onto. > Any

[flexcoders] Metadata in AS3

2006-08-04 Thread maxym.hryniv
Hi all. How can I receive class related metadata in AS3. F.ex i have class with metadata. [Event(name="enableChange", type=flash.events.Event)] public class ModalText extends TextArea { How can i receive that class has such metadata? For properties i can use describeType, but i cannot find any

Re: [flexcoders] Re: selectedindex and change event

2006-08-04 Thread Tom Chiverton
On Friday 04 August 2006 02:37, Douglas Knudsen wrote: > that assumes I have access to the view, eh? Using Cairngorm here. In my > case I have a result set in hand in a command, I assign it to a > arraycollection in my model. The List is bound to this variable in the > model, it gets updated and

[flexcoders] Re: DataGrid Problem

2006-08-04 Thread Silpa sirivella
But i don't know what are the dataFields in the XML to hard code it. I mean in your code i don't want to hard code dataFields. I'm try to create DataGrid Dynamically, now i'm passing XML data that i'm receiving, i have to construct data grid. var metaDataMap:Dictionary =

Re: Re: [flexcoders] integrating map24 maps with FLEX2

2006-08-04 Thread Michael Hansen
You could use an iframe solution. Google around for iframe and flex2... I've seen seen a sample somewhere out there. cheers -michael On 7/28/06, duccio del ministro <[EMAIL PROTECTED]> wrote: > > > > > > > Thanks Rich but yahoo maps don't have road details that map24 has for > Europe and Ital

[flexcoders] Re: TypeError: Error #1009: Cannot access a property or method of a null object

2006-08-04 Thread gotgoose09
Can you show us the code that generates the error? --- In flexcoders@yahoogroups.com, "joshie679" <[EMAIL PROTECTED]> wrote: > > Hi, I started working on a project on Flex 2.0 beta 3 and now that i > have Flex 2.0 builder with charting and i imported my project over i > am getting this error mess

[flexcoders] Re: UI Design Help

2006-08-04 Thread gotgoose09
Perhaps you could let them drag and drop fields they want into a List or something? --- In flexcoders@yahoogroups.com, Rick Root <[EMAIL PROTECTED]> wrote: > > I'm building an app that will replace a current HTML-based app that > allows users to search our database and then do a file drop of the

[flexcoders] WebServices: Declarative vs. Programmatic

2006-08-04 Thread codemonkey666
I am in the process of evaluating Flex for a series of applications for a large financial services company. We intend to make significant use of Web Services. I have had trouble using the tag but not using the WebService API. Basically, the WebService API works and the tag doesn't. I am sure t

[flexcoders] manipulating adanced datagrids...

2006-08-04 Thread Shannon Hicks
Here's the scenario: I'm dynamically adding columns to my datagrid... all the added columns have the same cell renderer/editor, a checkbox. I'm dynamically (on the coldFusion side) adding the columns to the query to check/uncheck those boxes created above.   As the itemRenderer, how do I

Re: [flexcoders] Re: HTTP spy :: Charles, Service Capture or...

2006-08-04 Thread Jeremy Lu
Charles, a pretty nice replacement for NCD  :-)Jeremy.On 8/4/06, Dave Wolf <[EMAIL PROTECTED] > wrote: If you are using Tomcat as your application server, the built in SOAPMonitor is awesome. Its free, and shows all request and response traffic. We have things

[flexcoders] Flex 2 DS shared Managed Objects question

2006-08-04 Thread thunderstumpgesatwork
I'm using Data Services with Managed Objects and the Hibernate Assembler. I have a question regarding updating a shared managed object through one managed object, and having that update be reflected in another managed object. Should this work? I the most simple case, lets say I have a managed obj

[flexcoders] Flex2 and CFC work on local but not whe uploaded to host

2006-08-04 Thread flycl65
I have a simmple Flex2 app that uses a simple CFC to query the db. Works great on my local server but when I upload to my host I get an error. NetConnection.Call.Failed "http://www.dentalsales.com/flex2gateway/"; level = error If I browse to http://localhost/flex2gateway/ I get 500 No configure

[flexcoders] TypeError: Error #1009: Cannot access a property or method of a null object

2006-08-04 Thread joshie679
Hi, I started working on a project on Flex 2.0 beta 3 and now that i have Flex 2.0 builder with charting and i imported my project over i am getting this error message... what is wrong? It used to work on beta 3 TypeError: Error #1009: Cannot access a property or method of a null object re

[flexcoders] UI Design Help

2006-08-04 Thread Rick Root
I'm building an app that will replace a current HTML-based app that allows users to search our database and then do a file drop of the results in CSV/Excel/Tab format. They have the ability to choose which fields to drop, if they want.. so I've got an HTML format that looks like this, a bunch o

Re: [flexcoders] ICQ, Skype, Yahoo and other messengers id validation

2006-08-04 Thread Michael Klishin
Sergey Kovalyov wrote: > So, the validation string should be like this [0-9]{4,10}$ in order to > fit future 10-digits numbers? Kinda that -- Michael "Antares" Klishin, http://www.novemberain.com | mailto:[EMAIL PROTECTED] -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcod

Re: [flexcoders] Firefox and multiselect list

2006-08-04 Thread Tom Chiverton
On Friday 04 August 2006 05:17, swhitley02 wrote: > Firefox, I can only select single items. Is there something special > that needs to be done for Firefox? Nope. Are you sure the HTML page isn't cached or something silly ? -- Tom Chiverton

[flexcoders] Re: HTTP spy :: Charles, Service Capture or...

2006-08-04 Thread Dave Wolf
If you are using Tomcat as your application server, the built in SOAPMonitor is awesome. Its free, and shows all request and response traffic. We have things setup in our standard build scripts to deploy and enable the SOAPMonitor by telling the build you want a developer build. Pretty slick. -

[flexcoders] Re: flex2 final - cant use 'Embed ' inside a style sheet

2006-08-04 Thread nelsoncostabatista
Hello all, For the CSS, to avoid errors you must write like this: upSkin: Embed(source="/yourAppRoute/button1.png"); notice the " . Best. --- In flexcoders@yahoogroups.com, "bhaq1972" <[EMAIL PROTECTED]> wrote: > > i was trying out the example where it says you can use an Embed in an > extern

[flexcoders] dynamic gridcolumns

2006-08-04 Thread Shannon Hicks
I'm trying to implement dynamic datagrid columns, and figured out you need to build an array of columns, then set that array to the columns property of datagrid. The problem is when I try to set the itemRenderer I can't figure it out. Here's the code I've tried that doesn't work:  

RE: [flexcoders] ICQ, Skype, Yahoo and other messengers id validation

2006-08-04 Thread Rostislav A. Siryk
Sergey,   As I understand, the only requirement for ICQ numbers is to be a number. Historically, ICQ numbers started from 1 and theoretically can have up to infinity digits (now the biggest is 10 but the ICQ community still grows).   Here’s discussion on it in parallel universe thou

  1   2   >