Re: [flexcoders] More knowledge of future component development?

2007-02-01 Thread Michael Schmalle
Matt, I've talked to Phil and we'll work on a guidance document for you. As you know this goes for more than just Doug here... ;-) Keep me up to date as well. Peace, Mike On 2/1/07, Matt Chotin [EMAIL PROTECTED] wrote: I've talked to Phil and we'll work on a guidance document for

RE: [flexcoders] More knowledge of future component development?

2007-02-01 Thread Matt Chotin
Yeah, it would go on the blog. Sorry, should have been clearer. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Thursday, February 01, 2007 5:46 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] More

Re: [flexcoders] Re: Possible to edit and recompile Flex framework?

2007-02-01 Thread Bjorn Schultheiss
yeah i noticed you were saying the same ;) On 02/02/2007, at 9:43 AM, Michael Schmalle wrote: Bjorn, I forgot about that but that is basically what I said without the addChild() part. so the static intializer will do the trick alone.

RE: [flexcoders] Using Effects with TitleWindow show/hide?

2007-02-01 Thread Brian Holmes
On your title window set visible=false and then on the creationComplete event set visible=true; mx:TitleWindow visible=false creationComplete=this.visible=true showEffect={myShowEffect} mx:WipeDown id=myShowEffect duration=700 / There's a much better way of handling this if you route all

[flexcoders] Re: Using Effects with TitleWindow show/hide?

2007-02-01 Thread Doug Lowder
Does it work if you use creationCompleteEffect? --- In flexcoders@yahoogroups.com, Danko Kozar [EMAIL PROTECTED] wrote: Is it possible to use mx:Effects with TitleWindow popped up by PopUpManager? I'd like to use some Move and Resize effects on window show and hide - just to make it

[flexcoders] Re: Using Effects with TitleWindow show/hide?

2007-02-01 Thread Danko Kozar
Thanks! I'll try it.. D. -- In flexcoders@yahoogroups.com, Brian Holmes [EMAIL PROTECTED] wrote: On your title window set visible=false and then on the creationComplete event set visible=true; mx:TitleWindow visible=false creationComplete=this.visible=true showEffect={myShowEffect}

[flexcoders] Re: Using Effects with TitleWindow show/hide?

2007-02-01 Thread Danko Kozar
No, I haven't tried it.. Cause the thing is that I extended the PopUpWindow to be resizable, minimizable, maximizable, restorable, blah.. So the creationComplete fires only the first time; I want the show effect to fire every time I restore the window ;-) D. --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Possible to edit and recompile Flex framework?

2007-02-01 Thread zzwi89
Hot damn, way out in left field but I'll be damned if it didn't work! Simply calling this upon initialize worked: private function init():void { this.addChild(new TabNavigator()); this.removeChildAt(this.numChildren-1); } --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL

[flexcoders] Re: Possible to edit and recompile Flex framework?

2007-02-01 Thread zzwi89
Hot damn, way out in left field but I'll be damned if it didn't work! Simply calling this upon initialize worked: private function init():void { this.addChild(new TabNavigator()); this.removeChildAt(this.numChildren-1); } --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL

[flexcoders] Re: Issues with modules and TabNavigator

2007-02-01 Thread zzwi89
--- In flexcoders@yahoogroups.com, zzwi89 [EMAIL PROTECTED] wrote: There's an issue some people are having where including a TabNavigator in a Module causes a nasty error. A thread on Adobe's forums can be found here:

Re: [flexcoders] Re: Issues with modules and TabNavigator

2007-02-01 Thread Michael Schmalle
Hi, Now rereading something I had read a while ago that Bjorn pointed out is importing and creating a dependency should fix it. import mx.managers.HistoryManager; private var historyManagerDependency:HistoryManager; Peace, Mike On 2/1/07, zzwi89 [EMAIL PROTECTED] wrote: --- In

Re: [flexcoders] Re: Possible to edit and recompile Flex framework?

2007-02-01 Thread Michael Schmalle
Hi, Now rereading something I had read a while ago that Bjorn pointed out is importing and creating a dependency should fix it. import mx.managers.HistoryManager; private var historyManagerDependency:HistoryManager; Peace, Mike On 2/1/07, zzwi89 [EMAIL PROTECTED] wrote: Hot damn, way

[flexcoders] HTTPService request parameters - multiple values for the same name

2007-02-01 Thread Ian Shafer
Hello, I'm not 100% sure this is compliant with the HTTP spec (I know the Java servlet libraries handle it, so I'm guessing it is to spec), but I want to pass multiple values for the same name. Example: http://test.com/doit.cgi?country=UScountry=AU This doesn't seem to be possible using an

RE: [flexcoders] AS3 object reference changes?

2007-02-01 Thread Gordon Smith
Sorry, I don't understand what you're trying to accomplish. Why do you need to use a ChangeWatcher? What are you watching in a? I'm not very familiar with ChangeWatcher, but I think it watches changes to properties of a particular object. Changing which var points the which object is not

RE: [flexcoders] Where is CalendarLayout?

2007-02-01 Thread Gordon Smith
I don't think our docs are supposed to have any references to CalendarLayout. (Where did you find it?) The CalendarLayout class is intentionally not hinted and not listed in the Flex 2 Language Reference (i.e., the ASDoc) because it is unsupported and subject to change without notice in a future

[flexcoders] Re: Using Effects with TitleWindow show/hide?

2007-02-01 Thread Danko Kozar
I did as you said, and tried the other way also (with creationComplete). I'm beginning getting some results, but they are very unpredictable :- ) Let's say I have 2 Move effects - one (myShowEffect) that moves a window to it's final position from the bottom of the screen, the other

[flexcoders] Re: Gantt Chart

2007-02-01 Thread napearson99
Hmmm..so i guess that only got me 10% of the way there. Is there a way to put dates on the linear access? I also want custom labels for those dates. I.E. 10/1/2007 would equal Q1 2008. I also want the axis labels to appear at the top and bottom. Doug - I'm interested in those click and

RE: [flexcoders] What is the best way to draw about 10,000 to 15,000 rectangles?

2007-02-01 Thread Gordon Smith
adding all of them to the display list takes so long and is just too much What kind of time are you seeing? I was able to add 10,000 UIComponents as children in about 10 seconds. And I was able to add 10,000 Sprites as raw children (using rawChildren.addChild()) in about 2 seconds. How fast

RE: [flexcoders] Is it possible to write or to modify registrations of a xml with Flex?

2007-02-01 Thread Gordon Smith
What do you mean by registrations of a xml? - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alphaclass525 Sent: Thursday, February 01, 2007 10:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is it possible to

RE: [flexcoders] Extend ButtonBar so it supports Buttons with htmlText

2007-02-01 Thread Gordon Smith
Take a look at the source code for these classes and find the methods that get/set the 'text' property of the TextField that displays the button's label. Then try overriding these methods in a subclass to get/set the 'htmlText' property instead. Just wondering... what are you doing that

RE: [flexcoders] Importing mx packages into AS3 project

2007-02-01 Thread Gordon Smith
It sounds like you want components which are both very rich and very lightweight. If we knew how to do that, we'd write the Flex components that way. : ) Seriously, athough we've tried to balance these concerns in the Flex framework components, we realize that they don't meet everyone's needs.

[flexcoders] Re: Extend ButtonBar so it supports Buttons with htmlText

2007-02-01 Thread joaoak
Thanks for your answer. :) I'm creating something that's not a RIA neither a website... It's a bit of both. :) So, I have some boring design requirements that I need to follow. I have some tests online on http://onfashion.webfuel.pt/onfashion_pt.html where you can see the use of the

Re: [flexcoders] Re: Gantt Chart

2007-02-01 Thread Brendan Meutzner
Hi, You can accomplish the dates on the linear axis by defining what value 0 would be as a date (eg. Today)... then just use a labelFunction on the axis to return the date based on how many days before/after value 0. Same thing with for the custom labels... labelFunction... Not sure about the

[flexcoders] Re: Flex UG in Denver?

2007-02-01 Thread johnesocko
http://flash.meetup.com/116/calendar/5383880/?a=cv1_ve Colorado Flash FLEX Developers Group EVENT What: Colorado Flash FLEX Developers Group February Meetup When: Wednesday, February 7 at 7:30PM Where: Effective User interface 1800 Glenarm Place 11th Floor Denver CO 80202 Event

RE: [flexcoders] What is the best way to draw about 10,000 to 15,000 rectangles?

2007-02-01 Thread Roger Gonzalez
I had a similar problem drawing dependency graphs. I've had the best luck simply drawing them to a Graphics, adding them as children was too expensive and couldn't keep up with the frame rate. You'll probably want to create a spatial partitioning scheme so that you can quickly determine

Re: [flexcoders] Re: Gantt Chart

2007-02-01 Thread Clint Tredway
Just a shot in the dark here, but you could use the scheduling frame work to use it as a Gantt chart... On 2/1/07, Brendan Meutzner [EMAIL PROTECTED] wrote: Hi, You can accomplish the dates on the linear axis by defining what value 0 would be as a date (eg. Today)... then just use a

[flexcoders] Re: Could it really take so much code to color a row in a DataGrid..?

2007-02-01 Thread coderjun
Paul, Check out Mike Nimer's Blog: http://www.mikenimer.com/index.cfm/2006/10/3/BackgroundRowColor-DataGrid-component -Jun --- In flexcoders@yahoogroups.com, paulwelling [EMAIL PROTECTED] wrote: Hello Sanjay, Thanks for the response... I should have been much more explicit in my

[flexcoders] Re: Gantt Chart

2007-02-01 Thread napearson99
I'm kind of a newbie to flex. Do you have any links of examples on how to use the labelfunction? --- In flexcoders@yahoogroups.com, Brendan Meutzner [EMAIL PROTECTED] wrote: Hi, You can accomplish the dates on the linear axis by defining what value 0 would be as a date (eg. Today)... then

[flexcoders] Re: Gantt Chart

2007-02-01 Thread napearson99
Clint, you're a genius. I just downloaded the sample pack and tried it out. Functionally it looks like it could work! I haven't look at the code yet and I'm going home for the night. Does anyone have any experience with the scheduler? The executives at my company are going to use this tool

Re: [flexcoders] Gantt Chart

2007-02-01 Thread Douglas Knudsen
On 1/30/07, Doug McCune [EMAIL PROTECTED] wrote: OK, so here's a question for Ely or some chart experts. Let's say you wanted to create an editable chart, like a Gantt chart that let you drag the regions. Is there any obvious way to go about doing this using the chart classes? I've done

[flexcoders] FDS/Hibernate Sample of updating hierarchical list of values

2007-02-01 Thread parkerwhirlow
Hi all, I have been tearing my hair out trying to get FDS/Hibernate to update a hierarchical list of values. Even the simplest of collection mappings in Hibernate cause various exceptions when trying to update. Before I post my details, does anyone have any examples of this that work? Has

Re: [flexcoders] Gantt Chart

2007-02-01 Thread Clint Tredway
no problem, I figured it could work as a gantt chart even if it wasnt originally designed to do so... hope it works out.

[flexcoders] How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-01 Thread helihobby
Can anyone please post sample code of how to make a copy of a XMLListCollection. Not a copy of the instance object but a new XMLListCollection object. Thank you for all the help, Sean.

Re: [flexcoders] Gantt Chart

2007-02-01 Thread Doug McCune
Here's my attempt that uses the DataGrid approach: http://dougmccune.com/blog/2007/02/01/building-a-gantt-chart-component-in-flex/ It uses adjustable sliders, so you can adjust each item. It's by no means complete, but maybe it can be a start... Doug Clint Tredway wrote: no problem, I

RE: [flexcoders] Gantt Chart

2007-02-01 Thread Andrew Trice
Nice work Doug. I just threw that idea together a there a while back. I'm glad to see you build off of it. I like the sliders. -Andy _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Blog:

Re: [flexcoders] Gantt Chart

2007-02-01 Thread Clint Tredway
yes, very cool. I have been using the scheduling framework a bit and thought that it could be used for a gantt chart but I do like your approach as well. very very nice. On 2/1/07, Andrew Trice [EMAIL PROTECTED] wrote: Nice work Doug. I just threw that idea together a there a while back.

[flexcoders] Is it possible to write or to modify a xml with Flex?

2007-02-01 Thread alphaclass525
Is it possible to write or to modify a xml with Flex?

Re: [flexcoders] Flex UG in Denver?

2007-02-01 Thread Jim Cheng
John Kirby wrote: Anyone know of a Flex Users Group in Denver... or would like to start one? My company, effectiveUI, hosts one: http://flash.meetup.com/116/?gj=sj10 We meet monthly at the effectiveUI offices in downtown Denver, with the next meeting to be held on February 7th at 7:30pm.

[flexcoders] Container focus question

2007-02-01 Thread zhongtie
I tried to capture the TitleWindow focus, which I did, but somehow I can no longer focus in its RichEdit component. Attached is my code. Could anyone shred some light on it? Thanks! /*== Main application

[flexcoders] TitleWindow missing all focus events??

2007-02-01 Thread zhongtie
I pop up TitleWindows using PopupManager, and I change the titlebar colors based on if the titleWindow is active (topmost) or not. The problem is, I am NOT able to capture the focus event for TitleWindow (other controls, like TextArea, has no problems), nor does onFocusIn/onFocusOut overwrite

[flexcoders] Print Preview Help

2007-02-01 Thread Sastry
Hi All, I am trying to print the contents of a DataGrid using a Print Data Grid. The Direct print is working good. But now, I need a Print Preview and the preview should be able to show the number of pages that would be present in the Printed hard copy. I also want to let the user select the

[flexcoders] Re: Adobe.com Servers?

2007-02-01 Thread purcept
Thanks very much. I'll do that. Don --- In flexcoders@yahoogroups.com, John Dowdell [EMAIL PROTECTED] wrote: purcept wrote: Why have the Adobe.com servers been so Slow and Erratic over the last couple months? Any time I go there for Flex info, I always have to Refresh at least

[flexcoders] Re: Flex UG in Denver?

2007-02-01 Thread Damon Delgado
A colleague of mine in the DC Flex User Group pointed me to this web site: http://www.ria5280.org Not much there yet I live in Denver and would be interested as well Best, Damon Delgado 2MOROMEDIA.com

[flexcoders] Adding columns in DataGrid dynamically

2007-02-01 Thread Paul Neyman
Is it possible to add DataGrid columns dynamically, after DataGrid has been initialized? I have the following scenario: User loads swf file with DataGrid component in it, and passes a url as parameter. ActionScript code makes an HttpRequest call to this url, receives Xml data, parses it into

RE: [flexcoders] Is it possible to write or to modify a xml with Flex?

2007-02-01 Thread Tracy Spratt
An xml file on the server? See this: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=544 On the client? No. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alphaclass525 Sent: Thursday, February

RE: [flexcoders] Re: Index of an itemRenderer

2007-02-01 Thread Tracy Spratt
That is a dead end. You must work with the dataProvider. BTW, I am a guy. Tracy, like in Dick. Dick Tracy, get it? Ah, never mind. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of evert_dennis Sent: Thursday, February

Re: [flexcoders] How to create a Windows taskbar notification?

2007-02-01 Thread Mike Weiland
Hi Rachel, I canĀ¹t think of a solution without installing something on the end users computer. If your requirements will allow you such an install then you might be in luck. A few years ago I was looking this very solution, I ended up doing my application in Central, but in the process I came up

Re: [flexcoders] alternate build variables to ${FRAMEWORK} in Flex Builder build path

2007-02-01 Thread Collin Peters
This is an Eclipse feature called linked resources. In preferences filter on 'linked resources' to find it On 1/30/07, Christian Edward Gruber [EMAIL PROTECTED] wrote: One serious thing that would help, for example, is to allow for variable references to .swcs through different variables than

RE: [flexcoders] AS variables at the top level of a package

2007-02-01 Thread Stembert Olivier (BIL)
Hi Tom, Sorry but it's 7AM here in Luxembourg and I don't see... -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Thursday, February 01, 2007 1:11 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] AS variables at

[flexcoders] Clusterd NonClustered CPU

2007-02-01 Thread sanjaypmg
Hi Group, Can anyone tell me the difference between Clustered and Non-Clustered CPU in terms of Flex Data Services (FDS) license? Thanks in Advance... Sanjay Sharma

[flexcoders] Clustered and Non-Clustered CPU

2007-02-01 Thread sanjaypmg
Hi Group, Can anyone tell me the difference between Clustered and Non-Clustered CPU in terms of Flex Data Services (FDS) license? Thanks in Advance... Sanjay Sharma

[flexcoders] ComboBox Weirdness

2007-02-01 Thread Mikhail Shevchuk
When an empty item added to a data provider for ComboBox component, this component began to act strange. When menu is dropped down there are several empty items in it, which do not exist in data provider. There is a rule - every 5th item in it is empty. Is that a bug? -- A vivid and creative

[flexcoders] Non-Clustered CPU, Clustered, Distributed and Mirroring Environment????

2007-02-01 Thread sanjaypmg
Hi All, We need to install an application where a number of screens are developed using FLEX. We could have different environment-setups in which the application may be deployed and need to know in what scenarios we will have to get separate licences of FLEX DATA SERVICES for application

Re: [flexcoders] ComboBox Weirdness

2007-02-01 Thread Adam Royle
I've noticed this as well, so have ensured that my dataprovider doesn't have an empty string in it. Not sure what the actual bug is, but I experience it with the Adobe AutoComplete component (which extends ComboBox). Cheers, Adam - Original Message - From: Mikhail Shevchuk To:

[flexcoders] Can't find bug in this piece of ActionScript

2007-02-01 Thread malik_robinson
Hi, I am trying to set the selectedIndex of my U.S. States custom combo box equal to what the user has stored in their record in our database. Someone posted a link to a similar tutorial, but I could not get it to work and I think it seems to be slightly different than what I am doing. When the

RE: [flexcoders] Project structure

2007-02-01 Thread Stembert Olivier (BIL)
In other words, why do we have to put mxml applications in the main flex folder? I don't understand why such a limitation? Rgds, Olivier :) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stembert Olivier (BIL) Sent: Thursday, February

Re: [flexcoders] Panel and Scrollbars (basic question)

2007-02-01 Thread nwebb
Hi Rachel, the panel will be used to populate a modal pop-up window. It's currently not absolute or constrained. The content is dynamic and so I never know exactly what the width of the CheckBox labels or lbl text will be - therefore I don't want absolute values used for the width.

<    1   2