Re: [flexcoders] cloning was: in operator (F2B2)

2006-04-05 Thread jeremy lu
hi Darron, I did use regiserClassAlias() to register the VO to correct class. but it only works for copy of single VO, not a collection of VOs. (this is same as the example in livedoc, it's just copying one VO named eg) any idea ? On 4/5/06, Gordon Smith [EMAIL PROTECTED] wrote:

Re: [flexcoders] Flex 2 Beta 2 - dynamic headerRenderer / IFactory error

2006-04-05 Thread jeremy lu
hi Bruno, try this see if it works :-)On 4/6/06, Bruno Martins [EMAIL PROTECTED] wrote: How I can fix this: public override function set columns(value:Array):void {for(var i:Number = 0; ivalue.length; i++ ){ value[i].headerRenderer = HeadRendererAddRemove as IFactory;}} --

Re: [flexcoders] Flex 2: Multi-document interface

2006-04-05 Thread jeremy lu
you don't have to start from scratch, everything needed is in the framework, just use buttonbar and panel, should be done in 20 minutes.jeremy.On 4/6/06, dos dedos [EMAIL PROTECTED] wrote: Thanks Jesse! that helps! :)JesterXL [EMAIL PROTECTED] wrote: -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Flex 2 on Mac OS X

2006-04-05 Thread jeremy lu
Seriously Off Topic:apple just annouced Boot Camp which let you dual boot into windows on your mac, so -- 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] Finding Width of a DataGrid Column Dynamically / Super Header Text

2006-04-04 Thread jeremy lu
So...is there a way to determine the column width of eachDataGridColumn (probably on creationComplete) every time new data populates it and send that pixel width somewhere? check out DataGrid.columns, it's an array of all columns so just iterate thru it to get the width of each column.

Re: [flexcoders] cloning was: in operator (F2B2)

2006-04-04 Thread jeremy lu
hi Peter, last time when I making a copy of arrayCollection of VO's, turned out the copied arrayCollection won't keep VO's type, all the vos are turned into plain Object. any reason for this ? thanks.On 4/5/06, Peter Farland [EMAIL PROTECTED] wrote: Darren, yep, we use this approach

Re: [flexcoders] Re: Finding Width of a DataGrid Column Dynamically / Super Header Text

2006-04-04 Thread jeremy lu
the practice I'm looking for... :} Could you (or someone) provide me with a snippet of code as an example? Obliged, jk --- In flexcoders@yahoogroups.com, jeremy lu wade.lu@ wrote: So...is there a way to determine the column width of eachDataGridColumn (probably on creationComplete

[flexcoders] Closable and Draggable Tab component for Flex 2

2006-04-02 Thread jeremy lu
made this during the weekend :-) *blog entry: http://ria.richtechmedia.com/?p=356 *demo video: http://tinyurl.com/zmpsn *features -100% based on flex 2 mx:TabBar and mx:TabNavigator component, just added in needed APIs, so usage is pretty much the same as those two. -show/hide close

Re: [flexcoders] Closable and Draggable Tab component for Flex 2

2006-04-02 Thread jeremy lu
I can't really share the source/swc due to the contract agreement with my employer.but I can share some of the experiences learned during the making of those components, if any one have question regarding building custom component (using Flex 2 only), I might be of some help. as to english

Re: [flexcoders] Flex and Testing

2006-03-30 Thread jeremy lu
Mercury QuickTest Pro On 3/31/06, Jonathan Miranda [EMAIL PROTECTED] wrote: Just curious, internally for testing our QA department uses WebLoad from RadView a lot – don't see why it wouldn't play nice with Flex but just curious what other testing software there is for Flex.

Re: [flexcoders] Re: Closing tab - Eclipse style

2006-03-24 Thread jeremy lu
I'm interested, will use some spare cycles to take a look at this issue, should be easy :-)On 3/25/06, Michael Schmalle [EMAIL PROTECTED] wrote: Yeah, pardon me... Makes sense, if only Adobe mad the tabs modules... Peace, MikeOn 3/24/06, engkee [EMAIL PROTECTED] wrote: That is

Re: [flexcoders] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread jeremy lu
hi mvbaffa, forget about what I said, the api changed in beta2, correct way to do that is now : borderAlpha = 1; headerColors = [0xE7E7E7, 0xD9D9D9]; which will make a aqua-alike panel with grey-gradient titlebar. jeremy. On 3/22/06, mvbaffa [EMAIL PROTECTED] wrote: Hi everybody,

Re: [flexcoders] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread jeremy lu
hi scott, extends Panel/TitleWindow then use following code: this.titleBar.addEventListener(mouseDown, onMouseDown); you can pretty much do anything you like to titleBar. jeremy. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] Beta2 - Hide/Show Grid Columns - Where did getColumnAt() Go?

2006-03-23 Thread jeremy lu
how about grid.columns[1].visible = truegetColumnAt() is gone but you can manipulate it via columns getter/setter.jeremyOn 3/24/06, quasimotoca [EMAIL PROTECTED] wrote: Hi Folks:I used to be able to do this in Beta1:grid.getColumnAt(1).visible = trueIs there an alternative way to

Re: [flexcoders] Mac Flex developing

2006-03-23 Thread jeremy lu
mind you, dual boot to xp on intel-based mac is now proven :)best of both world ? On 3/24/06, Jonathan Miranda [EMAIL PROTECTED] wrote:Hmm, so what you're telling me is I shouldn't get an iMacPro laptop unless I can get it to dual-boot OSX/XP ;)_Jonathan

Re: [flexcoders] Request to Adobe re: Documentation format

2006-03-23 Thread jeremy lu
hi Matt, where's the other forum for discussion on Flex ?thanks.On 3/24/06, Matt Horn [EMAIL PROTECTED] wrote: I can assure you we read this and other forums. Hey, where do you think my best code samples come from? ;) -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Flex2 beta2 bug - Focus does not work on lists

2006-03-22 Thread jeremy lu
try make your VO class dynamic...flex framework will add-in another UID.On 3/23/06, Benoit Hediard [EMAIL PROTECTED] wrote: But uid is a property that we already use on all our value objects. I don't want flex to overwrite this property... Is there a workaround? Benoit Hediard De:

Re: [flexcoders] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-22 Thread jeremy lu
panelAlpha = 1headerHeight = 22will also look very much alike those found in aqua...On 3/22/06, mvbaffa [EMAIL PROTECTED] wrote:Hi everybody,How can I set the appearance of Flex 2 Panels and TitleWindows headers similar to one of Flex 1.5Thanks--Flexcoders Mailing ListFAQ:

Re: [flexcoders] Flash Player public beta

2006-03-21 Thread jeremy lu
remote shared object should work now, also the camera nullified problem is solved too.On 3/21/06, Johannes Nel [EMAIL PROTECTED] wrote: maybe because beta 2 is coming out and a lot of api's have been refactored this player beta is another build (aka has the beta 2 framework ) normally the

Re: [flexcoders] Runtime Shared Libraries (flex 2)

2006-03-21 Thread jeremy lu
sorry to plug in like this, just want to say thanks to Roger for providing a detailed dynamic class loader/example in the new beta2 document, great job ! jeremy.On 3/21/06, Roger Gonzalez [EMAIL PROTECTED] wrote: I apologize for not being able to give the walkthrough in terms of FlexBuilder;

Re: [flexcoders] java.util.Map

2006-03-21 Thread jeremy lu
there's a newly-add flash.util.collection which should be able to handle java map. check it out in beta2. On 3/22/06, dos dedos [EMAIL PROTECTED] wrote: just guessing ... but maybe there is no support yet in AS for Java map typelorejava [EMAIL PROTECTED] wrote: Hello, I have a reading

Re: [flexcoders] Starting a Project Now! FLEX 1.5 or 2.0?

2006-03-19 Thread jeremy lu
beta1 is pretty solid now, definitly should go with flex 2, so you don't have to port it again 3 months later. my .2 centsOn 3/19/06, Jason Hawryluk [EMAIL PROTECTED] wrote: I am also in the same position. I started with Flex 1.5, and ever since theFlex 2.0 alphabeen in flex 2.0.

Re: [flexcoders] Starting a Project Now! FLEX 1.5 or 2.0?

2006-03-19 Thread jeremy lu
from their ex employer The funny part goes something like this:Michael: I must have missed a decimal point... I always forget some mundane thing!!!Peter: you call that mundane! Michael Schmalle [EMAIL PROTECTED] wrote: jeremy wouldn't it be ' my .02 cents ' ;-) On 3/19/06, jeremy lu

Re: Re: [flexcoders] Re: Is there a third-party or opensource market for Flex components?

2006-03-11 Thread jeremy lu
hi Dimitrios, could you please tell me why there's the need for a PanelManager (to close all panels at once or bring certain panel to the foreground) ?when will you use it ? On 3/12/06, Dimitrios Gianninas [EMAIL PROTECTED] wrote: This stuff I love... good work. One thing maybe to add is

Re: Re: Re: [flexcoders] Re: Is there a third-party or opensource market for Flex components?

2006-03-11 Thread jeremy lu
I see, they both sound reasonable, will try to implement it later on :-)On 3/12/06, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Close all panels: - When a user logs off the system and another is to log in, you want to make sure all panels closed (perhaps actually I am looking at this

[flexcoders] resize panel component for flex 2 (revisited) !

2006-03-10 Thread jeremy lu
demo: http://ria.richtechmedia.com/go.php?http://ria.richtechmedia.com/upload/resizePanel2/ blog entry: http://ria.richtechmedia.com/?p=334 features: feature sets: (you need flash player 8.5 to see it, which can be downloaded from adobe labs 1.drag-move the panel 2.drag-resize the panel

Re: [flexcoders] GUI testing best practices

2006-03-06 Thread jeremy lu
should be Mercury Quick Test Pro.On 3/5/06, Johannes Nel [EMAIL PROTECTED] wrote: as the guys from adobe has stated on this list before they are currently in some prerelase alpha or beta testing stage of a product for this. search the archives for mecury On 3/4/06, Michael Klishin [EMAIL

Re: [flexcoders] datagrid filter

2006-03-03 Thread jeremy lu
if you are using flex 2, ArrayCollection has a filter property which is handyOn 3/3/06, deepu_verma [EMAIL PROTECTED] wrote:How can I filter data from a datagrid?Is there a function to filter data for the data provider? (I was able to find a Dataset component for Flash which has thecapability

Re: [flexcoders] Understanding UIComponent

2006-03-03 Thread jeremy lu
that chapter is particularly well written, should read it over and over again.On 3/3/06, Stephen Gilson [EMAIL PROTECTED] wrote: There is indeed a book - It is called Creating and Extending Flex Components and you can find it at:

Re: [flexcoders] Coustom cellRenderer in AS3 for a DataGrid

2006-03-03 Thread jeremy lu
what you want to do with it ?On 3/3/06, harald_dehn [EMAIL PROTECTED] wrote: Hello,does anyone know how to write a custom cellrenderer for a datagrid inAS3. All examples i have found using MXML or were written for flash8(using setValue function). Unfortunealy this approach doesn't work in

Re: [flexcoders] Reading or Embedding SWFs?

2006-03-03 Thread jeremy lu
hi Roger, still eagerly waiting for your tutorial on dynamic class loading and instantiation (application domain and etc) :-)jeremy.On 3/3/06, Roger Gonzalez [EMAIL PROTECTED] wrote: If it doesn't import your frame labels, that's a bug. I don't know of any reason why those would

Re: [flexcoders] Coustom cellRenderer in AS3 for a DataGrid

2006-03-03 Thread jeremy lu
as Stephen said, setValue is not needed anymore, the whole structure changed, Using Cell Renderers and Cell Editors is a must read.On 3/4/06, Stephen Gilson [EMAIL PROTECTED] wrote: If you have the Flex 2.0 Beta, the architecture has changed completely from AS2. You can read about

Re: [flexcoders] Re: a GridTree component for flex 2

2006-03-03 Thread jeremy lu
(upper half written in English) http://ria.richtechmedia.com/?p=330 any suggestions or ideas would be appreciated. btw, thanks to the flex team for making AS3/datagrid/cell renderer so fast that this could be achieved. jeremy lu.--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders

Re: [flexcoders] Automated Testing of Flex Components

2006-02-27 Thread jeremy lu
there's one from Mercury (currently in beta)search the list for more detail.On 2/28/06, Caine Lai [EMAIL PROTECTED] wrote:Perhaps someone has an answer for this.We are thinking of using Flex components in our JSP pages and don't know we we will do our automatedtesting.Are there any automated

Re: [flexcoders] Developing Rich Clients book

2006-02-26 Thread jeremy lu
second that, recently re-read this book again, still very useful for application structure concepts and some neat tricks.jeremy.On 2/27/06, Matt Chotin [EMAIL PROTECTED] wrote:I think it depends on your goal for reading the book.If you want to just copy sample code and run it then the book now

Re: [flexcoders] Anybody willing to field a Flex2/CF noobs architectural questions?

2006-02-25 Thread jeremy lu
hi Ian, I use java and php (amfphp) as the backend, but can take a look at your code and see what I can do. jeremy.On 2/25/06, Ian Skinner [EMAIL PROTECTED] wrote: I am studying the phones example, the documentation, and all web resources I know of as fast as I can in order to get my 25

Re: [flexcoders] SetEventHandler Limitations?

2006-02-05 Thread jeremy lu
hi Brian, seems like this line is where the problem is : handler=connector.connect(event) connect() is expecting an Object but what get passed in is an Event. what's inside the connect() method ? On 2/6/06, Brian Lesser [EMAIL PROTECTED] wrote: FYI, I now can do what I want this way

Re: [flexcoders] Flex 2 mx.controls.Alert vs. Flex 1.5

2006-01-21 Thread jeremy lu
is it possible to change the blur background to some other color (in flex2) ? thanks.On 1/22/06, JesterXL [EMAIL PROTECTED] wrote: You could probably capture the bitmap data before you open the alert, blurthe bitmapData, and then open up a MovieClip via PopUpManager behind thealert

Re: [flexcoders] Re: best way to handle this ViewStack situation when loading

2006-01-15 Thread jeremy lu
great tips, thanks !On 1/15/06, jgraham_us [EMAIL PROTECTED] wrote: Well I came up with a solution.Basically when the viewstack in initialized I create just the viewcontainers for each view in the viewstack, setting an initializationflag to false.Then when the change event gets fired on the

Re: [flexcoders] Sending Email From Flex

2005-12-22 Thread jeremy lu
you can use flash.net.socket to send and receive mail thru pop3 and stmp protocol, as long as you know the correct packet length, it's quiet easy, I believe Danny Patterson has a flex example. jeremy.On 12/22/05, Jeff Tapper [EMAIL PROTECTED] wrote: I imagine it would work just like

Re: [flexcoders] fyi: no more zip file attachments for adobe

2005-12-13 Thread jeremy lu
wow++On 12/13/05, JesterXL [EMAIL PROTECTED] wrote: Holy crap, your email... it's changed!Wow -- 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] Themes (was TemplateMonster.com)

2005-12-09 Thread jeremy lu
thanks for great link :) -- 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] Right click on tree

2005-12-07 Thread jeremy lu
I have that book, but not what jesse want. On 12/6/05, eddy eustace [EMAIL PROTECTED] wrote: JesterXL wrote:Trying to add Add..., Edit... and Delete... options for a tree.I'vecreated my own context menu, but since there is no native right click eventin Flash, I'm going to have to use

[flexcoders] [little toy] flex panel in action :-)

2005-12-05 Thread jeremy lu
hi list, here's a sample app I made during the weekend, you can have a look at : http://ria.richtechmedia.com/upload/flex2test/ feature list: -draggable panel -collapsable panel (on double click) -draggable and fixed mode in canvas -move panel inside the canvas (when in draggable

Re: [flexcoders] Right click on tree

2005-12-05 Thread jeremy lu
hi jesse, try using instance._dropTarget if you mean flex 1.5, it might be a little easier and consume less resources.On 12/6/05, JesterXL [EMAIL PROTECTED] wrote:Trying to add Add..., Edit... and Delete... options for a tree.I've created my own context menu, but since there is no native

<    1   2   3