Re: [flexcoders] Flex And .NET

2005-07-27 Thread priya s
I m new  to Flex, could you elaborate more on what you mean by "right steps".Igor Costa <[EMAIL PROTECTED]> wrote: Well, following the right steps to write your mxml code will generatefor any version2005/7/27, priya_uvce <[EMAIL PROTECTED]>:> We are using Flex 1.5, which will be accessing.NET as

Re: [flexcoders] Overlay container on panels

2005-07-27 Thread Sreejith Unnikrishnan
Hi, I ran through your code. Looks like you have not quite understood the concept of using mx:Canvas. Also I found that your layout is in total disarray! Use these guidelines for basic layout. 1. You use mx:HBox to layout components horizontally. 2. Use mx:VBox to layout components vertical

RE: [flexcoders] Is there a way to selectively enable/disable Tabs?

2005-07-27 Thread Matt Chotin
This is undocumented so buyer-beware: tabNav['tabBar'].getChildAt(1).enabled=false"   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pilby1 Sent: Wednesday, July 27, 2005 3:17 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is there a w

RE: [flexcoders] Re: Custom Error Page

2005-07-27 Thread Matt Chotin
Not really, it’s a servlet.  Make sure you have FlexErrorServlet entries in your web.xml, maybe you merged web.xml and didn’t copy everything over?  Check the web.xml that comes with flex.war and see if all the error entries are in your server’s version.   Matt   From: flexcod

RE: [flexcoders] HTTPService result handler not called

2005-07-27 Thread Matt Chotin
HTTPService isn’t really meant to be used in AS though I think it will work (it’s not supported).  In your case you need to be adding event listeners, not assigning.   Service.addEventListener(“result”, function(event):Void {     mx.core.Application.application.debug.text += "OK

Re: [flexcoders] OT: Flex Team Macromedia :)

2005-07-27 Thread Rey Bango
Yep, I'm the one that keeps your page views and uniques at a consistent level! :o) Rey... Scott Barnes wrote: > On 7/27/05, Rey Bango <[EMAIL PROTECTED]> wrote: > >>BTW, I love your blog bud. You post some very good articles. Everytime I >>read it, it makes me want to dump CF, spark up FlexBuil

Re: [flexcoders] Event Handlers inside custom components

2005-07-27 Thread Scott Barnes
Yes, using object.watch(prop, callback [, user data]) On 7/28/05, Archibald Scatflinger <[EMAIL PROTECTED]> wrote: > I have a custom component and I want to make it so that when one of > its properties is changed by an external source then it triggers one > of the components methods. > > I rea

[flexcoders] Combo Box Quirk or Bug

2005-07-27 Thread charlespaz1
I have 3 editable combo boxes in a panel and when an item is selected, nothing appears in the text box. When an item is selected a second time, it works properly. Is this just a quirk of the Editable combobox or is this a bug? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flex

[flexcoders] Event Handlers inside custom components

2005-07-27 Thread Archibald Scatflinger
I have a custom component and I want to make it so that when one of its properties is changed by an external source then it triggers one of the components methods. I realize that this is probably really simple and I am just missing something but everything I have tried has either produced errors o

[flexcoders] Re: Is there a way to selectively enable/disable Tabs?

2005-07-27 Thread Archibald Scatflinger
There is two ways to do this. One is documented and the other is not (it may not work in future versions) The documented way is to use a TabBar with a ViewStack instead of a TabNavigator. That way you can access the children of the TabBar and enable or disable them individually. The other way i

RE: [flexcoders] Form visibility question

2005-07-27 Thread Allen Manning
Hello Jeff, Check out the DynamicFormItem component from the I2 Flex book - databind visible to an expression. It's great, we us it all of the time. Hope this helps, Allen www.prismix.com/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff

Re: [flexcoders] Is there a way to selectively enable/disable Tabs?

2005-07-27 Thread Scott Barnes
// Disable Tab2 tabNav.getChildAt(1).enabled = false;; // Disable Tab3 tabNav.getChildAt(2).enabled = false;; Should do the trick? On 7/28/05, pilby1 <[EMAIL PROTECTED]> wrote: > If I had this: > > > > > > > > > > > > > > > Is

Re: [flexcoders] OT: Flex Team Macromedia :)

2005-07-27 Thread Scott Barnes
On 7/27/05, Rey Bango <[EMAIL PROTECTED]> wrote: > BTW, I love your blog bud. You post some very good articles. Everytime I > read it, it makes me want to dump CF, spark up FlexBuilder and get knee > deep in Flex. :o) So you're the one! (reading the blog, always wondered who you were ehhehe). Than

Re: [flexcoders] OT: Flex Team Macromedia :)

2005-07-27 Thread Scott Barnes
On 7/28/05, John Dowdell <[EMAIL PROTECTED]> wrote: > Scott Barnes wrote: > > wtf is our "FLEX" Team Macromedia :) (ie noice no FLEX team macromedians)... > I'm guessing "w" stands for "where" this time... otherwise I'm off-track > in the following reply ;-) yes, w = where and don't ask what

[flexcoders] Is there a way to selectively enable/disable Tabs?

2005-07-27 Thread pilby1
If I had this: Is there a way I could selectively disable only Tab 2 and Tab 3? Thanks. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archi

[flexcoders] Re: Flex And .NET

2005-07-27 Thread joao_m_fernandes
I think a good way to avoid many recoding whould be to use a serviceLocator like Cairngorm does. It's a perfect way to avoid to much code rewriting. João Fernandes --- In flexcoders@yahoogroups.com, "priya_uvce" <[EMAIL PROTECTED]> wrote: > We are using Flex 1.5, which will be accessing.NET

Re: [flexcoders] Re: Flex CPU License(s)

2005-07-27 Thread Dave Carabetta
On 7/27/05, jwc_wensan <[EMAIL PROTECTED]> wrote: > Dave: > > I had talked to MM several times, but know one mentioned this > document. > > I greatly appreciate you letting me know about it. > Not a problem. From their site, it was only posted on 7/25, so that might be why they never told you/k

[flexcoders] Flex Style Explorer

2005-07-27 Thread Fernando Lobos
http://weblogs.macromedia.com/mc/archives/FlexStyleExplorer.html -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

Re: [flexcoders] Form visibility question

2005-07-27 Thread JesterXL
You're probably binding it's visible property to another's property, and hosting them in a container. If so, say a VBox, then just additionally start them out with widht and height values of 0; then when they are made visible, have their width and height return to default values as well. Upon

[flexcoders] Form visibility question

2005-07-27 Thread Jeff Beeman
We've got a project that has the following behavior. When a particular form item is answered a certain way, another form item should "turn on" on the page. A common example is choosing "Other" in a radio group turns on a text box for inputting what "Other" is. Right now, we've got ActionScript t

RE: [flexcoders] Overlay container on panels

2005-07-27 Thread dfatta
I thought this would do it but I'm still getting the same problem.  I have one canvas tag that wraps all my other code.  I'm scratching my head on this one...    If you could take a second look, I've included the modified code below:   Also, a general layout question.  Is it good practi

[flexcoders] Re: Flex CPU License(s)

2005-07-27 Thread jwc_wensan
Dave: I had talked to MM several times, but know one mentioned this document. I greatly appreciate you letting me know about it. Thanks, Jack --- In flexcoders@yahoogroups.com, Dave Carabetta <[EMAIL PROTECTED]> wrote: > On 7/20/05, jwc_wensan <[EMAIL PROTECTED]> wrote: > > To All: > > > > Y

Re: [flexcoders] Overlay container on panels

2005-07-27 Thread Sreejith Unnikrishnan
The key to overlay is using mx:Canvas and putting the containers inside the canvas. You can then set the visibility of each of those containers. Sree coldfs wrote: > Hi, > > I have a vertical container that I need to overlay all other panels > upon the click of a button. I used the code in the

[flexcoders] Overlay container on panels

2005-07-27 Thread coldfs
Hi, I have a vertical container that I need to overlay all other panels upon the click of a button. I used the code in the Flex explorer and got everything working except the ability for the container to overlay my other panels. Is there an attribute or other trick to doing this. Thank you,

Re: [flexcoders] Flex And .NET

2005-07-27 Thread Igor Costa
Well, following the right steps to write your mxml code will generate for any version 2005/7/27, priya_uvce <[EMAIL PROTECTED]>: > We are using Flex 1.5, which will be accessing.NET assemblies through > Flash Remoting. > The macromedia site says that Flex 2.0 will do away with Flash Remoting > for

Re: [flexcoders] Internet Explorer Remote Object problem

2005-07-27 Thread Greg Fuller
Oddly, when I change the contextroot param to /ewn or ewn, the remote object call does not work in any browser. Peter Farland wrote: >Have you tried changing your contextroot commandline param to be "/ewn"? >I know this doesn't immediately explain why this works on Netscape, but >perhaps th

Re: [flexcoders] Flex CPU License(s)

2005-07-27 Thread Dave Carabetta
On 7/20/05, jwc_wensan <[EMAIL PROTECTED]> wrote: > To All: > > Yesterday I made a post regarding trying to determine how many users > a single server with one CPU could handle. I realize "it depends" > and I did not define any type of application. > > I am trying to get some type of handle on w

[flexcoders] Internet Explorer Remote Object problem

2005-07-27 Thread goboborz
Hi folks, I have a problem using a Flex RemoteObject cfc with Internet Explorer. The Flex app works fine with Firefox and Netscape browsers. The problem appeared when I started using mxmlc to compile the flex app. We plan to deploy "flexless", using none of the flex services like proxies. (We ha

Re: [flexcoders] OT: Flex Team Macromedia :)

2005-07-27 Thread Rey Bango
Hi John. With the big push that MM is giving Flex and the amount of investment, both in personal time and financially, that these folks are making on this Yahoo group, I think it would behoove MM to really look into embracing this Yahoo group and rewarding some of the folks on here with inclusi

Re: [flexcoders] OT: Flex Team Macromedia :)

2005-07-27 Thread John Dowdell
Scott Barnes wrote: > wtf is our "FLEX" Team Macromedia :) (ie noice no FLEX team macromedians)... I'm guessing "w" stands for "where" this time... otherwise I'm off-track in the following reply ;-) Rey had the main point -- Team Macromedia is oriented around the Macromedia newsgroups and

RE: [flexcoders] sound problem: onSoundComplete

2005-07-27 Thread Tom Fitzpatrick
Dirk, thanks for the suggestion - but still no luck. Same problem: sound plays, no onSoundComplete execution. Were you able to get this to work? Here's my revised code: function startSound(currentSound) { feedback.text += currentSound+" playin

[flexcoders] HTTPService result handler not called

2005-07-27 Thread pb_test
Hi, I have the code as: var service = new HTTPService(); service.url = ; service.request= {path:path, domain:Util.getDomain(), recur:"n"}; service.showBusyCursor = true; service.resultFormat = "text"; service.result = function(event):Void {

[flexcoders] Re: How to co-ordinate an event after multiple remote objects finish

2005-07-27 Thread greenfishinwater
Philippe, A different approach is always to be welcomed, I'd been looking for a solution within Flex, but what you describe is a solution to be implemented both in Flex and Java. Now that you mention it, it seems obvious. Thanks Andrew --- In flexcoders@yahoogroups.com, "Philippe Maegerman" <[EM

RE: [flexcoders] sound problem: onSoundComplete

2005-07-27 Thread Dirk Eismann
There's still a scoping problem. Try this: function startSound(currentSound) { feedback.text += currentSound+" playing now"; glow.alpha = 100; var snd:Sound = new Sound(); snd.attachSound(currentSound); snd.onSoundComplete = mx.utils.Delegate.create(this, soundStopped); snd.start(); }

Re: [flexcoders] OT: Flex Team Macromedia :)

2005-07-27 Thread Rey Bango
Scott, being a former member of Team Allaire, I can tell you that the big thing that MM will look for is participation in their site forums. Not having checked the MM forums for Flex, I'm not sure how active you are on them but if you're not, you should get more involved on them. If you are, th

[flexcoders] Re: OT: Flex Team Macromedia :)

2005-07-27 Thread Andrew Spaulding
Hehe, yeah I agree. I've tried email them twice but no response. Any MM folk have some thoughts on this? "Go Team!" - Flex that is ;) Cheers, Andrew Spaulding www.flexdaddy.info --- In flexcoders@yahoogroups.com, Scott Barnes <[EMAIL PROTECTED]> wrote: > Just realised something, > > wtf is o

RE: [flexcoders] sound problem: onSoundComplete

2005-07-27 Thread Tom Fitzpatrick
Matt - I made your modification in my code, and still have the same problem: sound plays OK, but the onSoundComplete actions (trace and reset alpha) never take place. Here's the modified code: function startSound(currentSound) { feedback.text

[flexcoders] Flex And .NET

2005-07-27 Thread priya_uvce
We are using Flex 1.5, which will be accessing.NET assemblies through Flash Remoting. The macromedia site says that Flex 2.0 will do away with Flash Remoting for .NET. How should we design our application so that they are minimal changes while migrating from Flex 1.5 to Flex 2.0 -- Flexcoder

[flexcoders] OT: Flex Team Macromedia :)

2005-07-27 Thread Scott Barnes
Just realised something, wtf is our "FLEX" Team Macromedia :) (ie noice no FLEX team macromedians)... oh so flash and dreamweaver get them, but wheres our flex luv..isn't our product worth more then the others combined? hehe -- Regards, Scott Barnes http://www.mossyblog.com -- Flexcoders Mai

RE: [flexcoders] Using Value Objects & CFC's

2005-07-27 Thread Allen Manning
Good stuff... -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Malcolm Sent: 27 July 2005 02:17 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Using Value Objects & CFC's Testify! That sure did the trick. I have done the following -- i

RE: [flexcoders] How to co-ordinate an event after multiple remote objects finish

2005-07-27 Thread Philippe Maegerman
One remote call that returns the 4 Arrays or Structs (objects) in a Struct or Array, onResult initialise the controls?   Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of greenfishinwaterSent: mercredi 27 juillet 2005 12:54To: flexcoders@yahoogr

[flexcoders] How to co-ordinate an event after multiple remote objects finish

2005-07-27 Thread greenfishinwater
I have a flex app that draws a chart, from data in a DB. The data set retrieved is determined by 4 seperate parameters, such as start month, warehouse. The possible values for these 4 parameters are retrieved from the same DB. So before the chart is drawn, the 4 sets of parameter data are retrieve

[flexcoders] Re: DataGrid Editable Header Renderer

2005-07-27 Thread bhaq1972
You can base it on the custom comboboxcellrenderer that Alistair did on richinternetapps.(but obviously use a textinput instead of a combobox) http://www.richinternetapps.com/archives/cat_macromedia_flex.html just another idea, have a vbox with two datagrids both with showHeader=false...one be

[flexcoders] Re: TabNavigator tabs style

2005-07-27 Thread bhaq1972
It looks like i've offended you. i apologize sincerely. this group has been and still is very helpful to me. so i dont want to offend anyone. --- In flexcoders@yahoogroups.com, Sreejith Unnikrishnan <[EMAIL PROTECTED]> wrote: > Either one can read the mind or the mail :-) > No point in asking

[flexcoders] Re: Custom Error Page

2005-07-27 Thread greenfishinwater
My flex server seems to be working fine, I have had no issues with that. Is it possible to extract the error pages from an existing war file and copy them to my flex server? Andrew --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > Maybe you have a bad WAR? The custom

[flexcoders] Re: TabNavigator tabs style

2005-07-27 Thread zipo13
Thanks Philippe, As I stated I tried what you did and for me it didn't work. I almost flipped when I saw what you wrote and found my mistake. To change the tab style I used: setStyle('corner-radius',1); instead of setStyle('cornerRadius',1); ho my, oh my, This would have saved me a couple of hour