Re: [flexcoders] pageable records with amfphp

2006-06-16 Thread Jeremy Lu
I'm looking into this too, thought it might be available from ListCollectionView or ArrayCollection. But if not, I will try to port it from RecordSet to AS3. Jeremy.On 6/16/06, Andrea Varga [EMAIL PROTECTED] wrote: Hi, I know AMFHPH knows paging, and I know

Re: [flexcoders] Can we move Flexcoders to a new forum??

2006-06-16 Thread Jeremy Lu
Michael, NNTP is the news group, kind of like a mailing list but you have to use certail client to read it (ie: outlook express or forte agaent) Google group is actually transformed from NNTP and become what it is today. On 6/16/06, Michael Schmalle [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Image Icon Button in Panel Header

2006-06-15 Thread Jeremy Lu
add the button to the titlebar would be a good choice (better than rawChildren, since you don't have to worry about positioning it). On 6/16/06, Daniel Cascais [EMAIL PROTECTED] wrote: I sen't my reply to early...It would be something like this:private function resizeHandler( event :

Re: [flexcoders] Does anyone know where to find flex icons

2006-06-15 Thread Jeremy Lu
try assets.swf in the framework folder, also there's an Aeon theme fla, all the graphical icons are in that file. On 6/16/06, Kelly @ Dekayd Media Inc. [EMAIL PROTECTED] wrote: Does anyone know where to find the icons used in Flex components? More specifically

Re: [flexcoders] Password field in datagrid

2006-06-15 Thread Jeremy Lu
you must use some kind of item renderer for that password cell, just set the textfield's displayAsPassword property should do it. check in the manual for item renderer.On 6/16/06, jfournet [EMAIL PROTECTED] wrote: I have a password field in a data grid and need

Re: [flexcoders] How to capture/handle runtime errors?

2006-06-15 Thread Jeremy Lu
hi Pat, as that line suggesting:The supplied DisplayObject must be a child of the calleryou probably are using some DisplayList related functions like getChildByName(), removeChild(), setChildIndex() and providing an Object(a sprite/movieClip/displayList) which *is not the direct child of

Re: [flexcoders] Re: Image Icon Button in Panel Header

2006-06-15 Thread Jeremy Lu
hey Michael,Please don't take it personally, don't mean to shoot anyone :-)Btw, what's the adobe component developer summit all about ? never heard it anywhere.Is it for designers or for developer ? focuing on Flex 2 or Flash 8 ? thanks.Jeremy.On 6/16/06, Daniel Cascais [EMAIL PROTECTED] wrote:

Re: [flexcoders] checkCellRenderer class

2006-06-14 Thread Jeremy Lu
creating cell renderer (it's called item renderer now) in Flex 2 is a snap, search the manual for item renderer.most of the time you would just need something like this:mx:List itemRenderer= mx.controls.CheckBox dataProvider=[1,2,3]/see if it works.Jeremy.On 6/15/06, Chaitu Vadlapatla [EMAIL

Re: [flexcoders] Duplicating controls dynamically

2006-06-13 Thread Jeremy Lu
no duplicateMovie() anymore, try this whenever you need a new radio button.var r:RadioButton = new RadioButton();this.addChild( r );On 6/13/06, Aasim [EMAIL PROTECTED] wrote: Hi, I am new to Flex. I would like develop an application which has a number of radio

Re: [flexcoders] Remoting in Flex 2.0 B3

2006-06-13 Thread Jeremy Lu
add this :NetConnection.prototype.AppendToGatewayUrl = function(){ //dummy function would be enough}see if this works. Jeremy.On 6/13/06, murtuza_ab [EMAIL PROTECTED] wrote: Hi, I have problem in remoting using NetConnection object and java as a backend with

Re: [flexcoders] calling custom component methods inside the parent application

2006-06-13 Thread Jeremy Lu
try this: public function dummy () { cbSelected = parent.raga.selected; //or cbSelected = Application.application.raga.selected; } ]] __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] Migrating to Flex 2.0 - need a good place to start

2006-06-13 Thread Jeremy Lu
this is a rather huge question, do's and don'ts, best practices ain't everybody learning it these days 8-)OT: I faced up with the same situation back in Feb., our approach was to take the chance to rewrite the whole thing, part of the reason for doing that is because so many things have

Re: [flexcoders] Re: Triggering update refresh for dataGrid

2006-06-13 Thread Jeremy Lu
hi, if you trace the codepath for DataGrid, you will find that in parent class Listbase class, when you assign an Array as the dataprovider, it will be wrapped in an ArrayCollection, and then DataGrid will listen to collectionChange event from it. When collection changes, it will trigger

Re: [flexcoders] Re: Mx.controls.Alert confusion

2006-06-13 Thread Jeremy Lu
hey ! I found this too, I thought a *modal* window should eat up all Keyboard event too, the work around here is when the Alert box is shown, set the focus to this window as soon as possible.bug or ECR ? On 6/14/06, Tim Hoff [EMAIL PROTECTED] wrote: Another

Re: [flexcoders] Duplicating controls dynamically

2006-06-13 Thread Jeremy Lu
. Regards, Aasim From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Jeremy Lu Sent: Tuesday, June 13, 2006 5:47 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Duplicating controls dynamically no duplicateMovie() anymore, try

Re: [flexcoders] How to drag a file into Flash?

2006-06-11 Thread Jeremy Lu
I downloaded Rebus the other day and read the manual, it's a .NET 2.0 rebuild of Zinc and best of all, it's a plugin to Eclipse so the workflow is seamless.I assume it support flash player 8.5( 9 maybe ?) and can wrap flex2 swf. On 6/12/06, John Grden [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Flex vs. .Net for RIA database apps; new to both

2006-06-11 Thread Jeremy Lu
than Flash remoting from Adobe? --- In flexcoders@yahoogroups.com, Jeremy Lu [EMAIL PROTECTED] wrote: one more note (to Tim's post) : aside from Web Service, you can also use flash remoting with .NET as the means of data transmission. we use both products from Macromedia (flash remoting

Re: [flexcoders] Re: Flex vs. .Net for RIA database apps; new to both

2006-06-10 Thread Jeremy Lu
. --- In flexcoders@yahoogroups.com, Jeremy Lu wade.lu@ wrote: well, Flex 2 is surely suitable for database oriented or data- centric application, you can check out the Flex Derby pages here: http://labs.adobe.com/wiki/index.php/Showcase:Flex_Developer_Derby lot of applications are data

Re: [flexcoders] beta3- Datagrid gurus?

2006-06-09 Thread Jeremy Lu
is this FB2 ? (there sould be no setValue() method in FB2). as to the question, you don't necessaryly have to put a radio group in each row to achive what you want. simply place a RadioButton in the item renderer then toggle it's selected property should do the trick, oh, of course there

Re: [flexcoders] Re: need strategy for filtering ArrayCollections in a Cairngorm app

2006-06-09 Thread Jeremy Lu
very interesting... why not trigger a global ArrayChangedEvent so each fitlered ArrayCollection can update itself according to it ? (with some binding settings this should be feasible) the trigger point is: when new data are pushed into MasterArray, dispatch it. Tom: if you have some sample

Re: [flexcoders] Flex vs. .Net for RIA database apps; new to both

2006-06-09 Thread Jeremy Lu
well, Flex 2 is surely suitable for database oriented or data-centric application, you can check out the Flex Derby pages here: http://labs.adobe.com/wiki/index.php/Showcase:Flex_Developer_Derby lot of applications are data-heavy and co-op with backend technology closely, this is never an

Re: [flexcoders] Re: ItemRenderer and Events

2006-06-09 Thread Jeremy Lu
don't forget event in Flex2 *bubbles*.you can listen to click event on image inside the item renderer and manually dispatch a ImageClick event then it will eventually bubble up to the container DataGrid. this way your outer application just have to handle this event from DataGrid then display

Re: [flexcoders] Why suddenly these ugly transparent popups

2006-06-08 Thread Jeremy Lu
try this: mx:TitleWindow xmlns:mx=http://www.adobe.com/2006/mxml width=800 height=600 showCloseButton=true close=PopUpManager.removePopUp(this); creationComplete=onCreationComplete(); alpha=1.0 styleName=opaquePanel it will set three styles for you and make the panel opaque. you can

Re: [flexcoders] Limiting number of items a control displays

2006-06-07 Thread Jeremy Lu
from Doc: If the height of the component has been explicitly set, this property might not have any effect. so if it's a listbox with explicitly set height, rowCount might not be honored.guess custom function is the way to go in the end.On 6/8/06, Tracy Spratt [EMAIL PROTECTED]

Re: [flexcoders] Dumb Newbie Question - Underlined Hyperlinks

2006-06-07 Thread Jeremy Lu
well I ran into this recently, what I did was:b link text /b -- this workedfont color=#0080ff link text /font -- this won't work.I remember someone on this list saying chaning text color in htmltext is not supported ? yes ? On 6/8/06, Tracy Spratt [EMAIL PROTECTED] wrote:

Re: [flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-06 Thread Jeremy Lu
Ely post in Ben's comment saying Adobe is working on this thing (although it might not make it to the v2 release). Maybe engineers from Adobe can confirm this ? On 6/6/06, Michael Schmalle [EMAIL PROTECTED] wrote: But to be able to do it with out going

Re: [flexcoders] how can I load text from a file

2006-06-06 Thread Jeremy Lu
if you don't mind embedding it in the mxml, try this:mx:TextAreamx:htmlText![CDATA[your text here...]]/mx:htmlTextmx:TextArea On 6/7/06, Antoine Malpel [EMAIL PROTECTED] wrote: Hi I have a text containing a big big big html text that I need to put inside a

Re: [flexcoders] Re: quick filter for datagrid

2006-06-06 Thread Jeremy Lu
example it's only for comboboxes and i have a text input an a datagrid --- In flexcoders@yahoogroups.com, Jeremy Lu [EMAIL PROTECTED] wrote: well, I'm not sure about that, why not ask Sho about it ? btw, as Flex2 is very close to release, why not port your application to Beta3 ? On 6/6/06

Re: [flexcoders] Runtime CSS Styles Flex 2.0 B3

2006-06-05 Thread Jeremy Lu
has anyone really started working on this real-time-change-CSS thing ?any project I can participate or take a look at ?thanks.On 6/5/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hmm, I don't follow, you mean load a style sheet that changes fill color styles? Peace, MikeOn 6/5/06, Jason

Re: [flexcoders] quick filter for datagrid

2006-06-05 Thread Jeremy Lu
there's an excellent article on Sho Kuwamoto's blog @http://kuwamoto.org/2006/04/03/flex-auto-complete-text-input-control-v06/ it's not exactly what you want, but the way Sho filters the items in the Listbox may shed a light on your need.On 6/5/06, tonyx_788 [EMAIL PROTECTED] wrote:I everyone

Re: [flexcoders] DateChooser DND?

2006-06-05 Thread Jeremy Lu
what's the problem you are running into ? got a sample ? On 6/6/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Anyone had any luck working a dnd behaviour into the datechooser? This is one component since it was introduced in flash , that seems to always work

Re: [flexcoders] Re: quick filter for datagrid

2006-06-05 Thread Jeremy Lu
well, I'm not sure about that, why not ask Sho about it ? btw, as Flex2 is very close to release, why not port your application to Beta3 ? On 6/6/06, tonyx_788 [EMAIL PROTECTED] wrote: Thanks for the fast reply Jeremybut do you know if this works in Flex 2 Beta1i only see it for beta 3

Re: [flexcoders] DateChooser DND?

2006-06-05 Thread Jeremy Lu
well, as an old trick, I will try getObjectUnderPoint() to see what's under the mouse, I bet it should be an itemRenderer used to draw the date cell, and from there, you might get the chance to find whihc date it is. will try this later tonight and report back. On 6/6/06, [EMAIL PROTECTED]

Re: [flexcoders] Datagrid itemEditor different per row

2006-06-04 Thread jeremy lu
there can be multiple view states inside the itemEditro/Renderer, so why not use a if else clause inside data() then switch to difference states ? psudo code: override public function data( o ){ if(o.editor == richText){ currentState = richTextEditor; else{ currentState = defaultButton;

Re: [flexcoders] ActionScript setting width to 100%

2006-06-03 Thread jeremy lu
are you sure percentWidth is depricated ?just used it in F2B3 and works well.On 6/2/06, Tim Scollick [EMAIL PROTECTED] wrote: Assuming percentWidth is depricated,Is that documented somewhere? Where can I find out which other deprecated code pieces I am using regularily? On 6/2/06, Tom

Re: [flexcoders] Re: Apparent bug with static variable access in bindings (f2b3)

2006-06-02 Thread jeremy lu
but including static variables in a bindingshouldn't cause compilation errors.sense in that context, lead me to the conclusion this must be a compiler bug. agreed, actually one of our engineers spent two days to spot this and remove all static variable bindings then all the weird compliation

Re: [flexcoders] Flex Knowledge Aggregation PREVIOUS: Seperate Mailing List :: Component developers - Framework Devlopment

2006-05-30 Thread jeremy lu
try search thru http://www.mail-archive.com/flexcoders%40yahoogroups.com/much better than yahoo's. On 5/30/06, Carlos Rovira [EMAIL PROTECTED] wrote: Agree with the search experience...it's a real pain! -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Apparent bug with static variable access in bindings (f2b3)

2006-05-30 Thread jeremy lu
ran into this problem last month, turned out f2b3 doesn't support bindings to static variables or methods.I have double checked this with adobe engineer and the answer is : this feature won't be supported. the work around here is using getter/setter.On 5/30/06, n51red [EMAIL PROTECTED] wrote: I

Re: [flexcoders] Windowless floating Flex apps - ?

2006-05-30 Thread jeremy lu
I used to write c/c++ wrapper for the swf to do this, sometimes I also use Zinc or other 3rd party projector to wrap swf inside.On 5/30/06, Michael Schmalle [EMAIL PROTECTED] wrote: What exactly do you mean? A flex app that has windows or on the dexktop? Peace, MikeOn 5/30/06, John Grden

Re: [flexcoders] Including External Files

2006-05-22 Thread jeremy lu
how about this ? (adding a slash) mx:Script source=/Assets/Models/touchPlans.as/ On 5/23/06, Ethan Miller [EMAIL PROTECTED] wrote: Greetings -Per the Flex documentation, I'm trying to include an external ASfile, as follows:mx:Script source=Assets/Models/touchPlans.as/The file touchPlans.as

Re: [flexcoders] Flex 2 - Cairngorm 2 Tutorial

2006-05-20 Thread jeremy lu
: You should better look at:http://weblogs.macromedia.com/swebster/archives/2006/05/cairngorm_2_for.cfm for last published changes 2006/5/20, jeremy lu [EMAIL PROTECTED]: you can download cairngorm 2.0 alpha here http://www.richinternetapps.com/archives/cairngorm2.zip there's a simple

Re: [flexcoders] Release Dates?

2006-05-19 Thread jeremy lu
last time I heard it's like 6 months ? I think Emmy Huang got this on her blog.On 5/19/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 18 May 2006 21:41, Gordon Smith wrote: No. Win and Mac only. Boo, hiss :-)Can you give us *any* indication of when an updated Linux player will land ?

Re: [flexcoders] Flex 2 - Cairngorm 2 Tutorial

2006-05-19 Thread jeremy lu
you can download cairngorm 2.0 alpha here http://www.richinternetapps.com/archives/cairngorm2.zip there's a simple login example in the zip. On 5/20/06, Robert Thompson [EMAIL PROTECTED] wrote: I know there is a great FLEX 1.0 example that I love called Shopping Cart but I can't find it

Re: [flexcoders] How can I use the Stream Class in a flex application

2006-05-19 Thread jeremy lu
Stream is a Server-Side Actionscript Class (used in FCS/FMS) NetStream is the client side counter part.On 5/19/06, khaled zaghdoud [EMAIL PROTECTED] wrote: hello,it's my first week with Flex, I'm developing a such client that must be able to send to a server a sound recorded by the user

Re: [flexcoders] Re: How to cancel Keyboard events?

2006-05-18 Thread jeremy lu
write this off top my head, but there are two phases for event, one is capturing phase, the other bubbling phase. I guess what you need to do is like this: Application.application.addEventListener(keyDown, onKeyDown, true); setting third param to true will switch to capture phase, then you

Re: [flexcoders] DrangEvent: copy by value instead of reference

2006-05-18 Thread jeremy lu
yes, you can. import mx.utils.ObjectUtil; var myCopy:* = ObjectUtil.copy( originalObject ); then you got a copy of original object. btw, if you check the source you will find it's done by ByteArray so internal structure are kept after copying. Jeremy.On 5/19/06, yomahz [EMAIL PROTECTED]

Re: [flexcoders] Re: How to cancel Keyboard events?

2006-05-18 Thread jeremy lu
well, if DELETE is the only key you want to rule out, why not just do a if...else to detect it ? On 5/19/06, Steven Toth [EMAIL PROTECTED] wrote: No dice.I do see the eventPhase equal to 1 (capture), but thestopPropagation() and stopImmediatePropagation() still do notprevent the DELETE from

Re: [flexcoders] Visual Samples of F2B3 Themes?

2006-05-17 Thread jeremy lu
there's a AeonGraphical.swf inside the framework theme folder. btw, source FLA is included. On 5/17/06, Ethan Miller [EMAIL PROTECTED] wrote: Pointer please?thanks, ethan Yahoo! Groups Sponsor ~--Home is just a click away. Make Yahoo! your home page

Re: [flexcoders] Re: OLAP grid with Flex

2006-05-17 Thread jeremy lu
I love jaco pastorius too, btw...On 5/17/06, Tim Hoff [EMAIL PROTECTED] wrote: Hi Alessandro,Very cool idea!You could probably achieve drill-down withexpansion in place.There is an example in the Flex ComponentExplorer under states.For pivoting the axis, you could have twoview states, each

Re: [flexcoders] FB2B3 programmatically select an item in a ComboBox

2006-05-16 Thread jeremy lu
PROTECTED] wrote: I'd expect that introducing an unnecessary local var would make it slightly less efficient, but I haven't looked at the bytecode for the two cases. - Gordon From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of jeremy lu Sent

Re: [flexcoders] MenuBar Border Re:Re:

2006-05-16 Thread jeremy lu
have you tried to set borderStyle: none on MenuBar ? On 5/17/06, Tim Hoff [EMAIL PROTECTED] wrote: This problem pertains to a MenuBar inside of an ApplicationControlBar. I've tried everything that I know, but I can't remove a three sided border around the MenuBar:

Re: [flexcoders] Beta3 Tree With Lines... Possible?

2006-05-16 Thread jeremy lu
well, it's that time to talk about tree and renderers again :P yes, you can use item renderer to draw those line inside to achieve that. On 5/17/06, sufibaba [EMAIL PROTECTED] wrote: Hi All,Since Beta3 Tree has undergone a big change, does anyone know how toModify the Beta3 Tree component to

Re: [flexcoders] FB2B3 programmatically select an item in a ComboBox

2006-05-15 Thread jeremy lu
well, I believe all the getItemAt() methods are removed from List-base components like Combobox, List, DataGrid in F2B3. to do the loop correctly, try this: for(var i:Number = 0; i cboCountry.dataProvider.length; i++) { var itm:* = cboCountry.dataProvider.getItemAt(i); if( itm.data ==

Re: [flexcoders] FB2B3 programmatically select an item in a ComboBox

2006-05-15 Thread jeremy lu
to:for(var i:Number = 0; i cboCountry.dataProvider.length ; i++){ if (cboCountry.dataProvider.getItemAt(i).data == event.result.COUNTRY) { cboCountry.selectedIndex = i; break; }}Thanks for the help!Steve On 5/15/06, jeremy lu [EMAIL PROTECTED] wrote: well, I believe all the getItemAt

Re: [flexcoders] Re: extending components

2006-05-14 Thread jeremy lu
http://livedocs.macromedia.com/labs/1/flex20beta3/0461.html very detailed information about Event (flow and listeners) On 5/14/06, Doug Arthur [EMAIL PROTECTED] wrote: Is there a good resource on understanding dispatching and listening for events?On 5/12/06, jeremy lu [EMAIL PROTECTED

Re: [flexcoders] Lazy Initialization Exceptions

2006-05-14 Thread jeremy lu
I have this problem a long time ago, it ends up I'm manually handling lazy-initialization on the flex2 side, retrieve properties needed just in time. this is very much like a Hibernate-in-Flex (lol) but did work for me (in the name of performance and efficiency.) Jeremy.On 5/14/06, Richard

Re: [flexcoders] Re: extending components

2006-05-14 Thread jeremy lu
at Cairngorm 0.99 and see how it handles events. On 5/15/06, Doug Arthur [EMAIL PROTECTED] wrote: I'm working with Flex 1.5, do these livedocs still apply? On 5/14/06, jeremy lu [EMAIL PROTECTED] wrote: http://livedocs.macromedia.com/labs/1/flex20beta3/0461.html very detailed information about

Re: [flexcoders] A new Kid

2006-05-12 Thread jeremy lu
there are several sample projects in flex sdk, take a look in the install folder. On 5/13/06, readversetwo [EMAIL PROTECTED] wrote: Can anybody provide some hints on what to do to get acquanted withFlex?A small project that I can start with will begreat idea!Does anybody have the source of a

Re: [flexcoders] extending components

2006-05-12 Thread jeremy lu
login panel, and show the main panel. Or, is there better ways of accomplishing what I seek? yes, I would use events to trigger next screen(view), say after login view finished all it's job, dispatch a loginSuccess event and let the underlying Application catch it then switch Main view,

Re: [flexcoders] Flex2 and FMS2 : recording a stream?

2006-05-11 Thread jeremy lu
glad to know that, I'm about to start a project using FMS2 too.On 5/11/06, Benoit Hediard [EMAIL PROTECTED] wrote: Indeed, the problem is corrected in beta 3 / flash player 9. That's cool! Benoit Hediard De: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] De la part

Re: [flexcoders] Data Grid Probles

2006-05-11 Thread jeremy lu
try re-assigning the xml data source to Datagrid.dataProvideror call DataGrid.modelChangedHandler().On 5/11/06, jymy788 [EMAIL PROTECTED] wrote:Hi, only a question that it's very important to me: How can i refresh data in DataGrid?I have an xml data file in a xmModel. When i assign it to my

Re: [flexcoders] Flex2B3 :: Framework Source :: Thanks

2006-05-10 Thread jeremy lu
very nice++ very enjoying reading those code.On 5/10/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi Gordon, The ones in the middle of the methods. I know OOP says your method should 'document itself' but, well written inline comments for framewroks like this seem to be ideal for a

Re: [flexcoders] Adobe Flex2 - Title window transparency

2006-05-10 Thread jeremy lu
styleName = opaquePanel worked in B2, not sure for B3On 5/10/06, Robs [EMAIL PROTECTED] wrote: Hi all, How can I remove the transparency of the title window? I tried allproperties like backgroundALpha alpha, but it didn't help. PleasehelpThanks,Robi. Yahoo! Groups

[flexcoders] [Beta3] Enhanced Pop-Up Button for flex 2

2006-05-09 Thread jeremy lu
Hi flexcoders, after several hours playing with the newly-released beta 3 this afternoon, I made this PopUp Button (like those found in OS X). blog entry: http://tinyurl.com/eeyuv Jeremy. -- Flexcoders Mailing List FAQ:

Re: [flexcoders] How to bind to something programatically (not in MXML)?

2006-05-09 Thread jeremy lu
it's possible, but you might not want to go that way.try use --keep-generate-actionscript to see the generated .as file you will understand how the codegen deal with those binding things behind the scene. Jeremy.On 5/10/06, rigidcode [EMAIL PROTECTED] wrote: How do you bind TO something via

Re: [flexcoders] Calendar pop-up window out of the bound

2006-05-08 Thread jeremy lu
I ran into this problem (along with PopUpMenuButton and several other comonents), digging into it now, guess I will have to override showSubMenu() or similar method to get the pop-up back in bound.will report back if I found the solution. On 5/8/06, dodenoros [EMAIL PROTECTED] wrote:

Re: [flexcoders] Individual Tab Header Colors

2006-05-08 Thread jeremy lu
you can getChildAt() to get the individual button instance then setStyle() on it. see if this work.On 5/9/06, Tim Hoff [EMAIL PROTECTED] wrote: I read a great post recently that showed how to apply styles toindividual tab headers in a tabNavigator with AS3.And like an idiot,I failed to

Re: [flexcoders] Individual Tab Header Colors

2006-05-08 Thread jeremy lu
. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jeremy lu Sent: Monday, May 08, 2006 7:03 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Individual Tab Header Colors you can getChildAt() to get the individual button instance

Re: [flexcoders] Drag and drop DataGrid to Tree

2006-05-07 Thread jeremy lu
search this list for keywords like datagrid and treehad been discussed in detail before.On 5/6/06, Franca Daniel [EMAIL PROTECTED] wrote:Hey you all,i am trying build a application where i need drag a item from DataGrid to drop in a Tree. Anyone have aidea how to do that ? Please help me

Re: [flexcoders] Re: Re: Flex Builder 2.0 beta 2 with SVN?

2006-05-02 Thread jeremy lu
hey ! glad that helped :-) btw, you might have to re-install it pretty soon...On 5/2/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Jeremy, Hey, I installed Subclipse plug in and configured Flex Builder 2.0 with SVN repository. It works great! Thanks again for the right pointer

Re: [flexcoders] Tab control with an icon on the active Tab

2006-05-02 Thread jeremy lu
yes, I have. closable and draggable tab component for Flex 2 it's basically overlaying icons over tab but I did have a hard time getting it done, read the blog post. Jeremy. On 5/2/06, Karl Johnson [EMAIL PROTECTED] wrote: Has anyone implemented a tab control that shows a clickable

Re: [flexcoders] Server-Side Architecture for Flex App

2006-05-02 Thread jeremy lu
For any others such as .Net and PHP you will need touse HTTPService or WebService. Consider that your choice mightrun slower than others. just one correction, you can always use NetConnection to connect to any AMF gateway (ie: amfphp, fluorine for .NET) instead of RemoteObject. --

Re: [flexcoders] how to implement the copypaste of chart in flex

2006-04-29 Thread jeremy lu
genearting jpg or png is possible, then let user download the file and import into word or paint.On 4/29/06, Tariq Ahmed [EMAIL PROTECTED] wrote:Not possible as far as I know. Snag-It is your next best bet. anjicn wrote: I want to add the copypaste support for charts in order to let user

Re: [flexcoders] Flex 2: How do I make a List that has different heights?

2006-04-29 Thread jeremy lu
I believe there's a property called variableRowHeight, set it to true and try again.On 4/30/06, rigidcode [EMAIL PROTECTED] wrote:If you make a List control, and you put some options in it, and one of your options is long and happens to wrap, it doesn't wrap the text!It just cuts off the end

Re: [flexcoders] Re: Flex 2.0 Beta 2

2006-04-28 Thread jeremy lu
but, I do think part of the advantage of Flex 2 is the *framework* behind the secne, without it, you should just use Flash 9 :-)On 4/29/06, ben.clinkinbeard [EMAIL PROTECTED] wrote: Here are a couple of good articles concerning ActionScript projects

Re: [flexcoders] Flex2 and FMS2 : recording a stream?

2006-04-28 Thread jeremy lu
wait for beta 3 in the very very near future and try again.On 4/28/06, Benoit Hediard [EMAIL PROTECTED] wrote: Hi, I'm currently working on Flex2/FMS2 app. I've successfully managed to publish a videostream, but I cannot record it. It looks like the flash.net.NetStream API

Re: [flexcoders] Help needed

2006-04-27 Thread jeremy lu
1) Is it sufficient to use Flex Builder without Flex Data Services forweb applications like E-commerce? Will there be a low cost version of FDS ?(If yes,is JMS possible with Flex builder.)yes, FDS is just one of the means that you can use to communicate with the server, others include http

Re: [flexcoders] Flex Builder 2.0 beta 2 with SVN?

2006-04-27 Thread jeremy lu
have you tried subclipse ?http://subclipse.tigris.org/On 4/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Flexers, In Flex Builder 2.0 , for team synchronization, I can add an CVS repository i.e. I can configure my project resources within Flex IDE to CVS and thus team can further

Re: [flexcoders] How would I do something like this....

2006-04-23 Thread jeremy lu
. - Original Message - From: jeremy lu To: flexcoders@yahoogroups.com Sent: Saturday, April 22, 2006 11:14 PM Subject: Re: [flexcoders] How would I do something like this well, just flip thru my gridtree component (http://tinyurl.com/grcfs) developed two months ago

Re: [flexcoders] FlexEvent.DATA_CHANGE

2006-04-22 Thread jeremy lu
this event should bubbles up to the top node, have you tried to add listener to it from Application.application ?my bet is, if this event do bubbles, you can listen to it from anywhere (including datagrid itselft ) jeremyOn 4/23/06, Webdevotion [EMAIL PROTECTED] wrote: Hello,Shortquestion:I

Re: [flexcoders] How would I do something like this....

2006-04-22 Thread jeremy lu
well, just flip thru my gridtree component (http://tinyurl.com/grcfs) developed two months ago (which is still in a mess), it's around 2000 lines of code (after refactoring it three times) and lot of algorithm behind to handle following function: addNode removeNode cutNode copyNode pasteNode

Re: [flexcoders] Flex2B2 - How to show a button label over 2 lines

2006-04-21 Thread jeremy lu
don't have FB at hand to check the code, but I think button's using a mx.controls.Label component to show the text as label, and label component only allow single line content.you might have to extends Button and override createChildren() and updateDisplayList() to swap out the label component

Re: [flexcoders] cannot convert to mx.core.IUIComponent

2006-04-21 Thread jeremy lu
try this: var u:UIComponent = new UIComponent() u.addChild( s ); this.addChild( u ); you must wrap graphics inside UIComponent to add it to mxml application. jeremy. // embed the solid star [Embed (source='assets/star.png')]private var Star:Class; . override protected function

Re: [flexcoders] File Upload In Flex 2.0 Using PHP??

2006-04-17 Thread jeremy lu
same as that in flash 8. FileReference and FileList are always there.On 4/18/06, Faisal Abid [EMAIL PROTECTED] wrote: Does anyone know how toFile Upload In Flex 2.0 Using PHP?? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] Re: How Users can Move Popup Windows

2006-04-15 Thread jeremy lu
notwork. I cannot drag the window.What is the difference between addPopup and createPopup --- In flexcoders@yahoogroups.com, jeremy lu [EMAIL PROTECTED] wrote: write off my head, try this: w = PopUpManager.createPopUp(Application.application,EventsSettings, false); another way to do

Re: [flexcoders] Re: Topology view?

2006-04-14 Thread jeremy lu
can you guys provide links to those available java/c++/flash components ? will take a look and see what I can do :-) On 4/15/06, mark_g_wales [EMAIL PROTECTED] wrote: Bob,I asked a similar question a while back - using the term directedgraph instead of topology. The short answer was that I

Re: [flexcoders] How Users can Move Popup Windows

2006-04-14 Thread jeremy lu
write off my head, try this: w = PopUpManager.createPopUp(Application.application, EventsSettings, false); another way to do this would be extending Panel/TitleWindow then listens to titleBar events to implement drag and drop. jeremy. On 4/15/06, mvbaffa [EMAIL PROTECTED] wrote: I have

Re: [flexcoders] Re: Flex2 Beta2 - Looping through dataGrid to bold cells

2006-04-14 Thread jeremy lu
hi Ryan, the best way I can come with now is : 1. in your item renderer's constructor, listens to dataChange event, whenever list-based comonents redraws itself, the data property inside each item renderer will be called, hence trigger the dataChange event. 2. by listening to dataChange

Re: [flexcoders] Fisheye Component v0.1 (beta 2)

2006-04-14 Thread jeremy lu
well done !On 4/15/06, Ely Greenfield [EMAIL PROTECTED] wrote: I just posted a new custom component I've been toying with that might be instructive to anyone learning Flex 2. Check it out if you like. http://www.quietlyscheming.com/blog/2006/04/14/fisheye-component-v01/

Re: [flexcoders] Re: Resizing a Panel

2006-04-13 Thread jeremy lu
: I have tried event.updateAfterEvent() but it made no difference.I looked at the links below and the resizing is exactly what I want toachieve - how did you deal with the sluggish cursor movement?Thanks Peter.--- In flexcoders@yahoogroups.com, jeremy lu [EMAIL PROTECTED] wrote: handling resizing

Re: [flexcoders] Re: Resizing a Panel

2006-04-13 Thread jeremy lu
by adding setCapture(); to my mouseDown handler and releaseCapture(); to my MouseUp handler. I also put event.updateAfterEvent(); in my mouseMove event handler to be on the safe side. From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of jeremy lu Sent: 13

Re: [flexcoders] drag and drop components between cells in a datagrid

2006-04-13 Thread jeremy lu
sounds feasible, have you tried (using DragManager ) ? if you can't figure it out I would love to give it a go. On 4/14/06, pk_wasp [EMAIL PROTECTED] wrote: Is it possible to have a DataGrid with custom item renderer componentsand drag/drop them between the indvidual cells using

Re: [flexcoders] List dataProvider bug?

2006-04-12 Thread jeremy lu
1. you should assign ArrayCollection instead of Array as a dataProvider to controls, cuase Array won't broadcast any event hence modelChangedHandler() inside controls will never get triggered. (btw, use this: var arc:ArrayCollection = new ArrayCollecion(array) to turn an Array into

Re: [flexcoders] Resizing a Panel

2006-04-12 Thread jeremy lu
handling resizing using mouse event is tricky, sluggish cursor movement is usally the main problem. I made something similar several weeks ago, check it here: http://ria.richtechmedia.com/go.php?http://ria.richtechmedia.com/upload/resizePanel2/ jeremy.On 4/13/06, Michael Schmalle [EMAIL

Re: [flexcoders] gant chart

2006-04-11 Thread jeremy lu
nice idea, I'm just about to get my hands on the gantt chart, but with real GridTree control so each row can display more than drawings.On 4/12/06, Karl Johnson [EMAIL PROTECTED] wrote: Yep I created one.It combines a tree control with a grid. The grid is a not actually agrid control because

Re: [flexcoders] How far are we from the Flex 2 books?

2006-04-08 Thread jeremy lu
well, regarding update to EAS2 book, I'm pretty sure Mr.Moock is working hard on it, but as the title suggest, that might be an Actionscript 3 book, don't know how deepit will touch on flex 2 (and the framework)On 4/9/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote: I was just wondering

Re: [flexcoders] how is this TabNavigator is done?

2006-04-06 Thread jeremy lu
this is really not that hard.TabNavigator = TabBar + ViewStackso all you need to do is extending TabNavigator then :1. move TabBar to bottom2. assign new skin to TabBar buttons so it draws borders and skin upward. but I don't really see the needs for this kind of component.On 4/6/06,

Re: [flexcoders] DG not triggering doubleClick event

2006-04-06 Thread jeremy lu
known bug, DataGrid didn't propagate doubleClickEanbeld to it's children. should be fixed in beta3.On 4/7/06, Jeremy Rottman [EMAIL PROTECTED] wrote: I have a dg that I am using to display semi-detailed search results.In FB2B1 I used doubleclick to change the state of the search to edit.Now

Re: [flexcoders] Re: how is this TabNavigator is done?

2006-04-06 Thread jeremy lu
could I ask why you need a right-aligned tab ? any use case ?On 4/6/06, ben.clinkinbeard [EMAIL PROTECTED] wrote: I can't even get the tabs to right align. horizontalAlign has noeffect. Anyone else experienced this? -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Sliding Windows in Different Layers

2006-04-05 Thread jeremy lu
you might need PopUpManager.createPopUp() On 4/5/06, mvbaffa [EMAIL PROTECTED] wrote: Hi everybody,I would like to show a sliding panel, or title window, in a differentlayer. I am not an expert in flash but i know that we can put imagesor animations in different layers so that they can be

<    1   2   3   >