Re: [flexcoders] Re: die hard 4 glass like interfaces

2008-09-28 Thread Josh McDonald
All I remember about that film was me crying what have they done to John McClane? I don't remember anything about cool user interfaces ;-) -Josh On Sun, Sep 28, 2008 at 5:20 AM, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, stinasius [EMAIL PROTECTED] wrote: hi guys this

Re: [flexcoders] Re: die hard 4 glass like interfaces

2008-09-28 Thread amanyire arthur
there was cool interfaces used by the geeks in the movie while working on the fire cell. actually you could not have missed seeing it coz thats what the movie was about. --- Josh McDonald [EMAIL PROTECTED] wrote: All I remember about that film was me crying what have they done to John McClane?

[flexcoders] mx:PopUpMenuButton drop down menu looks blurd when wmode is opaque

2008-09-28 Thread Jonathan Lee
Hello all: I'm using the mx:PopUpMenuButton and I set the dataProvider to be a fixed XML list in the mxml file Everything looks fine if the wmode in browser is set as window. But I want to use transparent or opaque. Then, when I use Google Chrome, or IE7, the drop down menu looks some fuzzy, I

[flexcoders] Re: BarChart - Different colors for negative and positive values

2008-09-28 Thread Amy
--- In flexcoders@yahoogroups.com, Diff Gal [EMAIL PROTECTED] wrote: Thanks Amy, I was trying to achieve this in flex 2. I think there's a post on how to do this with custom itemRenderers in the flex cookbook hosted at adobe.com. HTH; Amy

[flexcoders] Thermometer Component

2008-09-28 Thread Dan Pride
Thermometer Component I am looking for a component which will reflect a single value like a thermometer. Simple feed in the value and display it with updates. Any idea where to look or if anyone has one for sale this is for a commercial product. Thanks Dan

Re: [flexcoders] Thermometer Component

2008-09-28 Thread Sajid Hussain
maybe this could help http://samples.degrafa.com/ThermometerSkin/Thermometer.html http://samples.degrafa.com/ Sajid   - Original Message From: Dan Pride [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, September 28, 2008 6:06:35 PM Subject: [flexcoders] Thermometer

[flexcoders] Re: AS3 - single-fire event listener

2008-09-28 Thread Matt Bennett
shaun [EMAIL PROTECTED] wrote: http://blog.iconara.net/2007/11/05/a-generic-way-to-remove-an-event-listener/ Thank you gents - that solved my anonymous function problem and started me down the road of a more generic solution. Borrowing directly from ExtJS [1] (licenced under GPLv3) and

[flexcoders] Chart ItemRenderer - Seeking Confirmation of this Bad Memory Leak Queue Problem

2008-09-28 Thread EddieBerman
I submitted this issue to the Adobe Flex Bug Mgmt System a few weeks back but haven't as yet seen a comment, nor did my last post on this forum yield a response, so I'm going to give it another go here. The problem I'm seeing is that you cannot dynamically switch itemRenderers on a chart

[flexcoders] Chart ItemRenderer - Seeking Confirmation of this Bad Memory Leak Queue Bug

2008-09-28 Thread EddieBerman
I submitted this issue to the Adobe Flex Bug Mgmt System a few weeks back but haven't as yet seen a comment, nor did my last post on this forum yield a response, so I'm going to give it another go here. The problem I'm seeing is that it appears that you cannot dynamically switch itemRenderers on

[flexcoders] Chart ItemRenderer - Seeking Confirmation of this Bad Memory Leak Queue Bug

2008-09-28 Thread EddieBerman
I submitted this issue to the Adobe Flex Bug Mgmt System a few weeks back but haven't as yet seen a comment, nor did my last post on this forum yield a response, so I'm going to give it another go here. The problem I'm seeing is that it appears that you cannot dynamically switch itemRenderers on

[flexcoders] Re: Date chooser component with only months and years

2008-09-28 Thread james.tundra
Hi, You can hide the date grid in the component, by using the mx_internal namespace: e.g: myDateChooser.mx_internal::dateGrid.visible = false you can then just grab the month / year values as you need them: var month:int = myDateChooser.displayedMonth var year:int = myDateChooser.displayedYear

[flexcoders] What is equivalent of HttpServletRequest request HttpServletResponse response object in mxml

2008-09-28 Thread Mohit Arora
Hi All I need to pass HttpServletRequest request HttpServletResponse response to a remote object(written in java) function as parameters from my mxml file. I tried many option but nothing worked. Please help Thanks in advance Mohit

[flexcoders] Pure MVC

2008-09-28 Thread samanderson188
Hi all, I have been working in Flex for couple of months, but I have never used any frameworks before. I am now trying to learn Pure MVC framework, but I guess its a little too complicated for me to understand and I tried referring puremvc.org, still I am facing some trouble to understand ! It

[flexcoders] Re: Text or Label wrap only when needed

2008-09-28 Thread mattstorman
I have another custome uicomponent that comes before and after the text, so the parent is a Hbox. I want the content in the custom Ui to display on the left and right of the text. If i dont set a percentwidth=100 on the text, the text does not wrap. If i do the the uicomponent following the

RE: [flexcoders] Pure MVC

2008-09-28 Thread Mark Easton
I use PureMVC and also found it hard to understand. I can tell you that I just persisted and now I have a good grasp of it. Took me a solid week to get over the initial hurdle. I just referred to blogs like this and followed them through closely:

RE: [flexcoders] Pure MVC

2008-09-28 Thread Manu Dhanda
Hii, Sorry for not being related. But as it came about pureMVC, I was also looking for it. Can someone confirm me that we have some solution in pureMVC for modules? Thanks, Manu. Robert Easton wrote: I use PureMVC and also found it hard to understand. I can tell you that I just persisted

[flexcoders] Runtime default parameter

2008-09-28 Thread itdanny2002
Hi, How to set the default running parameter for testing ? Normally, we create a program named abcde. We run path+abcde. However, I want to add some parameter after the program for testing e.g. path+abcde+#123 i.e.http: ...abcde#123 Now, I run the program and then type #123 on url

RE: [flexcoders] Pure MVC

2008-09-28 Thread Mark Easton
Yes it does - PureMVC MultiCore ... This variation supports modular programming, allowing the use of independent program modules each with their own independent PureMVC 'Core'. A Core is a set of the four main actors used in the Standard framework (Model, View, Controller and Facade). This

[flexcoders] Have a question about Weborb

2008-09-28 Thread timgerr
Hello all, I am trying to learn Weborb and need some help on how to update a database record. Here is my question, I have a database table named test and the construction of one row is: id = 1 name = Tim email = [EMAIL PROTECTED] Now if I wanted to return all the rows it would be

Re: [flexcoders] about keyboard operation in flex

2008-09-28 Thread Igor Costa
Anyway If you open the index.template.html that's stored in html-template you can avoid that browser borring thing and will works. Open it and add the following code onLoad=window.document.${application}.focus(); onkeydown=window.${application}.focus() into your body tag It will works both in

[flexcoders] Re: Have a question about Weborb

2008-09-28 Thread timgerr
Can changes to the active record only be done on the datastore? Thanks, timgerr --- In flexcoders@yahoogroups.com, timgerr [EMAIL PROTECTED] wrote: Hello all, I am trying to learn Weborb and need some help on how to update a database record. Here is my question, I have a database table

[flexcoders] flex dynamic instantiation of classes or class names

2008-09-28 Thread flexaustin
Is it possible to instantiate objects with dynamic names? So instead of:--- var n:Object = new Object; Something like:- for (var i:int=0; i array.length; i++){ var n(i):Object = new Object; } I need to create instance of certain type