RE: [flexcoders] Re: Adding AS3 support to 3rd party editors - legal question

2006-08-04 Thread Matt Chotin
I see what youre saying now. Im not sure that would be the end of the world (the lawyer canceled the meeting so I wont get to talk to him till next week) but a more traditional approach would be to get your editor to understand the AS3 source format. Since we ship the source in the SDK

Re: [flexcoders] fundamental logout problem...

2006-08-04 Thread Ralf Bokelberg
In a cairngorm application you could simply clear all the models and all the views would be updated automatically. Another way would be to create a central Object which dispatches Login/Logout events. Every view, which is interested in such an event, can register itself to this object. In case

[flexcoders] [Flex 2][Accordion] Can't use more than one icons in segment headers

2006-08-04 Thread Carlos Rovira
Hi,I'm trying to define a diferent icon for each segment in an Accordion component.The result is that only the last one is used for ALL the segmentsmx:Accordion ... mx:View icon=...someicon/ mx:View icon=...othericon/ /mx:Accordionif othericon is the last one, all segments in the Accordion

Re: [flexcoders] Re: Newbie Help - simple login via CFC

2006-08-04 Thread Tom Chiverton
On Thursday 03 August 2006 15:25, flycl65 wrote: TypeError: Error #1009: Cannot access a property or method of a null object reference. Something is not what you think it is :-) Set a breakpoint. -- Tom Chiverton This email is sent for

Re: [flexcoders] Re: Developing on Linux?

2006-08-04 Thread Tom Chiverton
On Thursday 03 August 2006 09:16, Joan Garnet wrote: For AS3 syntax highlighting I can't tell you.. There's an Eclipse plugin for AS2 that works very well for high-light: http://sourceforge.net/projects/aseclipseplugin/ -- Tom Chiverton

Re: [flexcoders] Re: Is there a way to put a close X on the tabnavigator

2006-08-04 Thread Tom Chiverton
On Tuesday 01 August 2006 20:25, Andrew Trice wrote: polished version of Keun's ExtendedTabNavigator component will be one of the components in the library. You can expect to see it in the very near future. Oh, rar. You're not doing a graph with a two-thumb slider on the horizontal axis are

[flexcoders] why and HOw ? Web 2.0 development with Flash Platform

2006-08-04 Thread Sajid Hussain
Hello DearI have some question reagarding Web 2.0 development with Flash Platform with FlexWhy Flex dont have offical integration of Remoting with .net? Is there any way to get Communication Cotrols for Flex ? if I am using .net webservices and mange to session how ? if I will return

Re: [flexcoders] reset forms

2006-08-04 Thread Paul Arch
arnold_charming wrote: Hi! How to reset input forms when a user returns to a screen where he has already been? By default all previous typed text is shown in input boxes. I usually have an initScreen()() function on each screen which resets my controls to a state that I want them to

Re: [flexcoders] Re: Developing on Linux?

2006-08-04 Thread Joan Garnet
Is it already working for AS3 ?? Tom Chiverton escribió: On Thursday 03 August 2006 09:16, Joan Garnet wrote: For AS3 syntax highlighting I can't tell you.. There's an Eclipse plugin for AS2 that works very well for high-light: http://sourceforge.net/projects/aseclipseplugin/ --

[flexcoders] Using JavaScript with navigateToURL

2006-08-04 Thread moni_singhal
var urlReq:URLRequest=new URLRequest(E:/flex/monika/a.html); navigateToURL(urlReq,'var x=javascript:window.open (,test,height=100,width=150,toolbar=no,scrollbars=1,resizable=ye s);x'); Make the 1st arg of you JS function the page URL, rather than i nthe URLRequest constructor ? If now my

[flexcoders] Firefox and multiselect list

2006-08-04 Thread swhitley02
I'm having trouble with multi-select Lists in Firefox. I have an application with multiSelect=true on the List object. It works fine in IE. I hold the control key and can select multiple items. In Firefox, I can only select single items. Is there something special that needs to be done

Re: [flexcoders] fundamental logout problem...

2006-08-04 Thread Paul Arch
Doug Arthur wrote: I've built a system that utilizes a login/logout process. The login portion works great. I realize now that my app is 95% complete, that when logout is executed, all it really does is change states, clear the user singleton instance, but what I didn't realize was going to

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

2006-08-04 Thread santharao246
Hi, I tried to construct Tree with Actionscript object.Root should be name of the object and childrens should be properties and their values of that object.That's why I tried to get the property names and class name of that given object in Flex20. Please help me. Thanks, Santa Rao --

[flexcoders] Problem with charts license

2006-08-04 Thread Bill Lane
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 say they only have one number and the order form

[flexcoders] Object is null/when it is passed along to Coldfusion.

2006-08-04 Thread maikelsibbald
We even made a simple test: //WOKING cf.test(true); //WOKING cf.test(1); //WOKING cf.test(hello); //NOT WOKING //in CFC we expect a struct, right!? var oData:Object = new Object(); cf.test(oData); mx:RemoteObject id=cf destination=ColdFusion source=

[flexcoders] filter operator

2006-08-04 Thread Roman Protsiuk
Hi, everyone. Can anybody tell me whatta heck is Filter operator? Thanx in advance, Roma. -- 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

[flexcoders] Re: getURL()

2006-08-04 Thread moni_singhal
HI, Thanks for the reply .But when i tried like this: var urlReq:URLRequest=new URLRequest(); navigateToURL(urlReq,'var x=javascript:window.open (E:/FlexSDK2_B2_03- 16/monika/a.html,test,height=100,width=150,toolbar=no,scrollbars= 1,resizable=yes);x'); Its giving me this error: TypeError: Error

[flexcoders] Using JavaScript with navigateToURL

2006-08-04 Thread moni_singhal
I am trying to convert my existing flex1.5 code to flex20 . As getURL is replaced by navigateToURL so if in flex 1.5 the code was like this: getURL(javascript:window.open(' + UPLOAD_PAGE_URL + ?userID= + userID + userName= + userName + sessionID= + sessionID +

[flexcoders] Re: getURL()

2006-08-04 Thread moni_singhal
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 03 August 2006 10:43, moni_singhal wrote: var urlReq:URLRequest=new URLRequest(E:/flex/monika/a.html); navigateToURL(urlReq,'var x=javascript:window.open

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

2006-08-04 Thread joangarnetdotcom
Hi list, I want an HTTP spy so I can debug HTTP traffic (AMF, XML_HTTP, POST...) and so. I can see that there's Cherles and Service Capture which both look very promising but Do I have more options ( OpenSource?? ) Which is better for you? Cheers! -- Flexcoders Mailing List FAQ:

Re: [flexcoders] sending parameters from Flex2 to AMFPHP

2006-08-04 Thread Luís Gustavo Sanabio
I prefer to use: var myPostData: Object = new Object(); myPostData.param1 = 1; myPostData.param2 = 2; myPostData.param3 = test; myPostData.Date = new Date().valueOf().toString(); gateway.call(Projekt.shraniProjekt, new Responder(onResult,onFault), myPostData); enjoy, Gustavo 2006/8/2,

Re: [flexcoders] How to migrate HAccordion from flex 1.5 to flex 2 ?

2006-08-04 Thread Tom Chiverton
On Thursday 03 August 2006 13:37, exeypan wrote: //before my correcting /* line 52 */ public class mx:Canvas extends Box //after my correcting /* line 52 */ public class VBox extends Box Why not Canvas as the base class ? -- Tom Chiverton

Re: [flexcoders] Re: getURL()

2006-08-04 Thread Tom Chiverton
var urlReq:URLRequest=new URLRequest(); navigateToURL(urlReq,'var x=javascript:window.open (E:/FlexSDK2_B2_03- 16/monika/a.html,test,height=100,width=150,toolbar=no,scrollbars= 1,resizable=yes);x'); Its giving me this error: TypeError: Error #2007: Parameter url must be non-null.

[flexcoders] Re: Adding AS3 support to 3rd party editors - legal question

2006-08-04 Thread ben.clinkinbeard
Thanks Matt, The goal is definitely to have the editor understand the AS3 format, but in the discussion we had, the problem we saw was the lack of source for the top-level and flash.* classes. As far as I can tell, the only source provided with the SDK is the mx.* packages and classes. Am I

Re: [flexcoders] Re: Adding AS3 support to 3rd party editors - legal question

2006-08-04 Thread Tom Chiverton
On Friday 04 August 2006 06:55, Matt Chotin wrote: the SDK you could just parse that and get all the information you need. The soon-to-be-release AS3Doc tool may help here, of course. -- Tom Chiverton This email is sent for and on behalf

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

2006-08-04 Thread Michael Klishin
Sergey Kovalyov wrote: I assume that it is not Flex specific question and probably software issue in general, but still. Does anybody know the validation rules for messengers ID. I mean length and allowed characters. I know that Skype id must be at least 6 and maximum 32 characters length,

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

2006-08-04 Thread Paul Arch
joangarnetdotcom wrote: Hi list, I want an HTTP spy so I can debug HTTP traffic (AMF, XML_HTTP, POST...) and so. I can see that there's Cherles and Service Capture which both look very promising but Do I have more options ( OpenSource?? ) Which is better for you? How about

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

2006-08-04 Thread Joan Garnet
Nice one... But I don't see AMF support in the features page... Cheers Joan Paul Arch escribió: joangarnetdotcom wrote: Hi list, I want an HTTP spy so I can debug HTTP traffic (AMF, XML_HTTP, POST...) and so. I can see that there's Cherles and Service Capture which both look very

RE: [flexcoders] Object is null/when it is passed along to Coldfusion.

2006-08-04 Thread Benoit Hediard
Try to put stuff in your object: var oData:Object = new Object(); oData.test = hello; Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de maikelsibbald Envoyé : vendredi 4 août 2006 08:28 À : flexcoders@yahoogroups.com Objet :

Re: [flexcoders] Re: Firefox + Network debugging + you

2006-08-04 Thread Tom Chiverton
On Friday 04 August 2006 04:20, Clint Modien wrote: IE is auto configured... but granted... Firefox takes 4 mouse clicks to switch over to using serviceCap and 4 mouse clicks to stop using it. Or you can save the serviceCap settings in a different profile. -- Tom Chiverton

RE: [flexcoders] filter operator

2006-08-04 Thread Matt Horn
Can you tell us where you saw that term used? matt horn flex docs -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roman Protsiuk Sent: Friday, August 04, 2006 3:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] filter operator

[flexcoders] UserTransaction on Windows and Linux

2006-08-04 Thread dreuimar
I'm writing an application that's being developed on a Windows machine and the production server is on Linux. Both are running Tomcat with the exact same configuration. I am using FDS and everything works great on both machines until an updateItem() method is called. On Windows updateItem works

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

2006-08-04 Thread Sergey Kovalyov
Thank you, Michael! And what about ICQ? Now they use both digital value and digital with dashes. Sergey. On 8/4/06, Michael Klishin [EMAIL PROTECTED] wrote: Sergey Kovalyov wrote: I assume that it is not Flex specific question and probably software issue in general, but still. Does

Re: [flexcoders] Can We Refresh DataGrid Contents after a Certain Period?

2006-08-04 Thread Tom Chiverton
On Tuesday 01 August 2006 05:18, nitin rastogi wrote: should be reflected in datagrid.I had used Timer Control,but I could't get the desired result, Please help me out Something like the following is an alternative: setInterval(updateServiceFunction, minutes*60*1000); -- Tom Chiverton

Re: [flexcoders] Re: Developing on Linux?

2006-08-04 Thread Tom Chiverton
On Friday 04 August 2006 11:44, Joan Garnet wrote: Is it already working for AS3 ?? Sorry, I wasn't clear - although it targets only AS2 atm, it works fine for AS3 because they are obviously similar enough. -- Tom Chiverton This email is

Re: [flexcoders] ColorPicker Cell Renderer

2006-08-04 Thread Tom Chiverton
On Tuesday 01 August 2006 17:39, buhlly88 wrote: I'm looking for a colorPicker renderer for a dataGrid. Has anyone successfully built one of these you could share? You mean like the colorPicker control that comes with Flex 2 ? Why not use that ? -- Tom Chiverton

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

2006-08-04 Thread bhaq1972
i was trying out the example where it says you can use an Embed in an external style sheet so i tried this .MyButton { upSkin: Embed('../assets/button1.png'); } but i get an Invalid Embed directive in stylesheet - can't resolve source 'Embed ('../assets/button1.png)' any ideas? thanks

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

2006-08-04 Thread Michael Klishin
Sergey Kovalyov wrote: Thank you, Michael! And what about ICQ? Now they use both digital value and digital with dashes. It's just digits, the shortest I could find is 4 chars length and the longest at the time is 9. Dashes are stripped in database queries and used just for usability sake.

Re: [flexcoders] filter operator

2006-08-04 Thread Roman Protsiuk
Error that is throwed when trying to do something likeoverloadHandler.handler.(_thisObject, arguments);looks like TypeError: Error #1123: Filter operator not supported on type builtin.as$0.MethodClosure .Strange thing is that there is nothing about this filter operator in the help system.

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

2006-08-04 Thread Sergey Kovalyov
So, the validation string should be like this [0-9]{4,10}$ in order to fit future 10-digits numbers? On 8/4/06, Michael Klishin [EMAIL PROTECTED] wrote: Sergey Kovalyov wrote: Thank you, Michael! And what about ICQ? Now they use both digital value and digital with dashes. It's just

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

2006-08-04 Thread joao_m_fernandes
Try this: upSkin: Embed('/pathtomyassets/assets/button1.png'); João Fernandes --- In flexcoders@yahoogroups.com, bhaq1972 [EMAIL PROTECTED] wrote: i was trying out the example where it says you can use an Embed in an external style sheet so i tried this .MyButton { upSkin:

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). Heres discussion on it in parallel universe

[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: for

[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 external style

[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.

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

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:

[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

[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

[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 configured

[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

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] 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 thecolumns to the query to check/uncheck those boxes created above. As the itemRenderer, how do I

[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 mx:WebService tag but not using the WebService API. Basically, the WebService API works and the tag

[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] 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 message...

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 Italy in

[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. mx:DataGridColumn dataField=code headerText=Code/ mx:DataGridColumn dataField=desc headerText=Desc/ mx:DataGridColumn dataField=price

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] 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] 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

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] selectedindex and change event

2006-08-04 Thread Tobias Patton
As far as I know you cant. 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 changeWatchers callback will be invoked when the value is changed programmatically. Its

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] fundamental logout problem...

2006-08-04 Thread Tobias Patton
You could store all the users 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

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

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 value

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 that ;)

[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. mx:Parallel target={myPanel} mx:Resize id=one widthFrom=300 widthTo=580 duration=500 / mx:Resize id=two

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] 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

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 for

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

[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

[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 database

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 say

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=opaqueDid 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

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

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_Partsfile=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: [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

[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

[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 trigger

[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 PROTECTED]

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. Heres the link with the instructions for installing that:

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? -- John

[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:

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:

[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

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:

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

[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

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 way

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

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

[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 Reset

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

[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

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

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,

[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;

  1   2   >