[flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread keishichi2001
I've trying following code to assign custom renderer into itemRenderer property on a TileList. You'll see commented part, which works well. However, I just want to try how i can do this by ActionScript. Following code reports no error, but each cell is empty(actually printed 'object Object').

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

2006-06-19 Thread Tolulope Olonade
Actually I configured mine to be sent to my company email address. Now we all use MS Outlook internally. So I just created a separate folder that all flexcoder mails get stored in and then arrange that folder by subject line 1st and then by date. Now I dont have to go to yahoo to get

[flexcoders] using date formatter for datefield

2006-06-19 Thread Bas J. Brey
Im having problems when I set the selectedDate of a datefield. When I set it dynamicly the formatter works, but when I click on the datefield the month and day are switched. This is a bug cause I verified the input date, and it works with days above 12! Anyone got a clue on how to

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Tom Chiverton
On Monday 19 June 2006 07:16, keishichi2001 wrote: myTile.setStyle(itemRenderer, mT); Renders aren't styles. Maybe something like myTile.itemRenderer = mT ? -- Tom Chiverton This email is sent for and on

[flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Jean-Luc ESSER
Michael, i saw one of your posts where you said : " Once you have established that the list has been rendered from the dataProvider " I assume you mean when the List has finished working with its dataProvider (including finished drawing its itemRenderers with their data). If so, how

[flexcoders] htmlText formating destroyed by binding execution

2006-06-19 Thread n51red
I've come across some odd behaviour with Text components that have the htmlText attribute in use. If a binding execution causes the text to change while some of that text is selected, the text styles revert to their defaults, ignoring values set either inline or in CSS. I assume this is a

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Michael Schmalle
Hi, Yeah I remeber that post tit was in relation to setting the height based on rows. I remember Manish said the rowHeight property and I said calculateHeight(). You rquestion is alittle nebulus, do you mean an event that signifies everything has been drawn? Or measurements? Peace, MikeOn

[flexcoders] remoting without value object by using ResultSets

2006-06-19 Thread hank williams
I am attempting to port work that I have done with the old remoting model into the new one. In the old model, I leveraged a feature that allowed JDBC ResultSets to be sent from the Java server to the Flash client and for that data to be received as a RecordSet and displayed properly in a

[flexcoders] Problem parsing mxml (flex2.B3)

2006-06-19 Thread silpa s
Hi all, I'm new to Flex. I may have to develop some RIA application using Flex2.0. I'm using Weblogic as my application server. When try to locate my index.mxml(http://localhost:7001/index.mxml), i'm getting following error. 22 Errors found. Error /index.mxml:2 Unknown attribute 'layout'

[flexcoders] New to Flex 2.0 Help please

2006-06-19 Thread Silpa sirivella
Hi all, I'm new to Flex. I may have to develop some RIA application using Flex2.0. I'm using Weblogic as my application server. When try to locate my index.mxml(http://localhost:7001/index.mxml), i'm getting following error. 22 Errors found. Error /index.mxml:2 Unknown attribute 'layout'

[flexcoders] Problem with parsing mxml file

2006-06-19 Thread Silpa sirivella
Hi all, I'm new to Flex. I may have to develop some RIA application using Flex2.0. I'm using Weblogic as my application server. When try to locate my index.mxml(http://localhost:7001/index.mxml), i'm getting following error. 22 Errors found. Error /index.mxml:2 Unknown attribute 'layout'

[flexcoders] Re: Flex beta 3/CF and Datagrid not being populated

2006-06-19 Thread malik_robinson
Hi, Sweet it is working now. The "lastResult" worked. Sothat is basically a reference to my query object? Once I did that, just for tests I removed the : public function initApp():void {// Force artists class to loadartSvc.getArtists.send();} I removed the "send()" and it still worked so I am

[flexcoders] Re: Flex beta 3/CF and Datagrid not being populated

2006-06-19 Thread malik_robinson
Hi, Thanks for the help. It is almost working. It now appears that the grid is being populated but I do not see anything in the grid. The reason I know its being populated is when i move my mouse over, it highlights the rows. It also adds a scroll bar to the display indicating there are

[flexcoders] Will Flex 2 support overloaded operations in WSDLs?

2006-06-19 Thread wayne_badu_johnson
Hi All Just wondering if Flex 2 will support overloading operations in WSDL calls? Thanks Wayne Yahoo! Groups Sponsor ~-- Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM

Re: [flexcoders] Problem parsing mxml (flex2.B3)

2006-06-19 Thread Sandip Patil
can u post your index.mxml file heresilpa s [EMAIL PROTECTED] wrote: Hi all, I'm new to Flex. I may have to develop some RIAapplication using Flex2.0. I'm using Weblogic as myapplication server. When try to locate myindex.mxml(http://localhost:7001/index.mxml), i'mgetting following

[flexcoders] Paging with datagrid in flex2.0 beta3

2006-06-19 Thread Ranadheer Reddy
Hello All,Can anybody help in implementing paging in datagrid control in flex2.0 Beta3.thanks in advance,Ranadheer Reddy.G How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call rates. __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Re: flex2gateway woes on UNIX

2006-06-19 Thread wlbagent
I'm not using apache, I'm using IPlanet (SunOne Web Server). However, I tried http://hostname:8500/flex2gateway and http://hostname:80/flex2gateway. Neither work. What do you mean by you may need to enable it first? CF is running and cfm pages are being processed. Thanks... --- In

[flexcoders] example of RemoteObject data service component

2006-06-19 Thread Sawant, Ramdas \(IT\)
Hi all, Can any one provide a simple example of RemoteObject data service component? I am curious about it. Thanks in advance. Regards, Ramdas Sawant NOTICE: If received in error, please destroy and notify sender. Sender does not waive confidentiality or privilege, and use

RE: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Yaniv De Ridder
Hello, Have you tried : import mx.core.ClassFactory; myTitle.itemRenderer = new ClassFactory( myThumbnail ); this should work, you have to use ClassFactory because an itemRenderer should receive an object that implement IFactory , cheers From:

[flexcoders] Using HTTPService

2006-06-19 Thread abi27ram
hello all, I am new to flex.i don't know how to use httpservice in flex. i'm using flexbuilder with jrun server now. example.mxml ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns=* layout=absolute initialize=feedRequest.send()

[flexcoders] Re: Definition _ could not be found: itemRenderer component in Flex2Beta3

2006-06-19 Thread polestar11
Thanks Brendan Yes, that solved the problem. --- In flexcoders@yahoogroups.com, Brendan Meutzner [EMAIL PROTECTED] wrote: Hi, Had this issue myself... works when you provide the full namespace in your itemRenderer (whether it's imported or not, or even sitting in the same directory)...

RE: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread Daniel Tuppeny
I'm sure that's the corect behaviour. Mine also completely wipes the bin folder. The HTML files get copied back from the html-template folder when I next build. If I delete that folder, then I get compile errors and the rebuild option. You shouldn't get compile errors with an empty bin

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Jean-Luc ESSER
Hi Mike, Yes i mean an event that signifies everything has been drawn. I mean if i have an image to show in the itemRenderers, i want to know when the data has been received, image has been loaded, itemRenderer has been renderered, and the List has finished sizing and showing all items.

[flexcoders] Connection Debugging

2006-06-19 Thread Bjorn Schultheiss
In Flash Development I was using ServiceCapture for my NetConnection Debugging. Whats the preferred NetConnection debugger for Flex2? In particular Im using a Coldfusion backend. Has anyone managed to use ServiceCapture with flex2? Regards, Bjorn Schultheiss Senior Flash

Re: [flexcoders] Re: flex2gateway woes on UNIX

2006-06-19 Thread Tom Chiverton
On Monday 19 June 2006 12:13, wlbagent wrote: What do you mean by you may need to enable it first? CF is running and cfm pages are being processed. In a standalone CF server install, it can be configured to only answer requests arriving over the jrun (Apache) plug-in. -- Tom Chiverton

RE: [flexcoders] Re: Flex beta 3/CF and Datagrid not being populated

2006-06-19 Thread João Fernandes
Manik, Try to debug your code on result event of your code, then you can watch the variable event.lastResult, it should be your array of artists, expand one of the nodes and check your columns case.   João Fernandes Dep. Informática - Área de Desenvolvimento Cofina media

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Michael Schmalle
Oh yeah, Add the listener right before you change the dataProvider, remove it when the actual handler fires for the UPDATE_COMPLETE event. Peace, MikeOn 6/19/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Well, I am to to up to speed on the deep workings of the ListBase and List *yet*

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Jean-Luc ESSER
Well i tried that, and it looks like it is fired several times during the population of the List. So i have no way of knowing when it is fired for the last time, that is when the last item has been rendered ! Or maybe i did notput the listener at the correct place. I'll keep trying.

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Michael Schmalle
JL, Have you test the event's currentTarget property for the actuall list? When the LayoutManager rolls through it's updateCompleteQueue, it goes backwards, children to parent. I would think you could check for the base components instance. If you find out that you cannot, I don't

RE: [flexcoders] FDS Samples

2006-06-19 Thread Peter Farland
Are you running on Tomcat by any chance? If so,what version? For Tomcat you need to setup JOTM first as Data Services makes use of JTA (for transactions). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williamsSent: Sunday, June 18, 2006 3:20 PMTo:

[flexcoders] How can I use the flash class MovieClip in my flex script

2006-06-19 Thread zd_khaled
Hi I need to use the flash class MovieClip in my flex application, I tried to import this class but it doesn't work. Can you help me please thanks, Yahoo! Groups Sponsor ~-- See what's inside the new Yahoo! Groups email.

[flexcoders] Re: Using HTTPService

2006-06-19 Thread s_hernandez01
abiramkumar, I am new to flex as well, but I would try keeping everything on one application component. Usually when you use an http service you want to call a series of objects instead of calling them one by one, say for example calling a list of photos you have in your folder. In addition,

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Michael Schmalle
Hi, Well I have done some testing and well, I see what you are saying. There is no way to test the target or currentTarget because they point to the List. I added that event listener to the LayoutManager's instance, it came down to two calls. There has to be a way to know this. I also

RE: [flexcoders] Re: Using HTTPService

2006-06-19 Thread Peter Farland
That's right Sal, RPC and Data services should be called after creationComplete. However, you don't seem to have result and fault handlers specified for your HTTPService... how will you know when something has gone wrong or when the result has been returned asynchronously? From:

[flexcoders] Re: Flex beta 3/CF and Datagrid not being populated

2006-06-19 Thread Tim Hoff
Hi Malik, Glad to help. Here are a couple of answers to your questions. What is "lastResult". Where does that come from and howwould one know about this? lastResult is the ActionScript object that is returned from an RPC call. The name was changed from result to lastResult to distinguish it

[flexcoders] Flex2B3 - Resize effect problem

2006-06-19 Thread bhaq1972
hi In my example i'm resizing a panel's width from 300 to 0 (and vice versa). However i've got one issue. I sometimes see a ghost of the panel's title still there. somekind of refresh issue? how do i remove it. thanks mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script

RE: [flexcoders] FDS Samples

2006-06-19 Thread Peter Farland
My apologies, this was sitting in my outbox for over a day and only went out now. I see that you've already got this to work. I agree that the docs could be better on this subject. Also, I've found for Tomcat 5.5 that modifying the Context in the /META-INF/context.xml file of the web

[flexcoders] Re: Flex2B3: Problem with a custom component nested repeaters

2006-06-19 Thread aejaz_98
I changed the second repeater to a TileList as follows,?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:ns1="components.*"mx:Script![CDATA[[Bindable] public var myArray:Array=["A","B","C","D"];[Bindable]public var

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Jean-Luc ESSER
Mike, here is what i do : public function myTest():void{bookFormatMedium.addEventListener(FlexEvent.UPDATE_COMPLETE, myTest2);bookFormatMedium.dataProvider = myDataProvider;}public function myTest2(event:FlexEvent):void{bookFormatMedium.removeEventListener(FlexEvent.UPDATE_COMPLETE,

[flexcoders] Re: using date formatter for datefield

2006-06-19 Thread Tim Hoff
Hi, The help docs recommend something like this: mx:DateFormatter id=dfconv formatString=/MM/DD/ mx:Script ![CDATA[ private function formatDate(date:Date):String { return dfconv.format(date); } ]] /mx:Script mx:DateField id=df

Re: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread Phil Marston
Yeah the html-templates folder is untouched - what I'm beginning to discover is that if there are any errors in your code when you clean, then the project wont recompile - kind of obvious really! Trouble was that I thought is was compiling despite there being errors prior to cleaning - I'm

[flexcoders] Getting rid of rectangle on axis (FB2.3 charts)

2006-06-19 Thread sp0rarb3jd3r
Is there anyway to get rid of the little rectangle* that forms around the vertical axis on the linecharts. I can't seem to find the style that turns it off. If that is possible, mind. Y! *It's the bit that is there to ensure you spot the tick-lines. Yahoo! Groups

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Jean-Luc ESSER
One hack i'm using is on each creationComplete of the itemRenderer, i call a function where i test currentIndex to dataProvider length. If same, it means the last Item has been created and processed by the List. Is that bad ? JL - Original Message - From: Michael

Re: [flexcoders] MovieClips in AS3

2006-06-19 Thread judah
to Adobe employees, To quote that link to the blaze post, We also decided to take this opportunity to do something that we've never been able to do before. We're planning to release a very early alpha build of BLAZE publicly to all Flash Professional 8 or Studio 8 customers that will allow

RE: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread Daniel Tuppeny
it's like it's got a cached version of your last error free source file that it uses to compile from Sounds like the Clean stuff is working fine, but if you're hitting Run with build errors and it's opening up an old version and pretending everything is ok, I'd be a little worried!

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Michael Schmalle
I see, I also see yahoo is messing up again, I think yo might have got my last message. I am adding this to my list of questions ;-) I don't know the answer right now. I had tested this also. Peace, MikeOn 6/19/06, Jean-Luc ESSER [EMAIL PROTECTED] wrote:

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Pan Troglodytes
itemRenderers ARE styles, the help just hasn't completely been updated yet.You were actually very close.myTile.setStyle(itemRenderer, new ClassFactory(myThumbnail));You may have to fully qualify it: myTile.setStyle(itemRenderer, new ClassFactory(itemRenderers.myThumbnail));Now, as to how to

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Michael Schmalle
JL, Is that bad ? No way man!, I was thinking along the same lines. Test the length and when it finishes, it's finished, just didn't have enough time nor brain power to try it :) I will definitaly ask about this and some other things related to initialization at the summit. On a

[flexcoders] Re: Flex2B3 - Resize effect problem

2006-06-19 Thread Tim Hoff
Hi, I've noticed some interesting behavior with Beta3 like this as well. For now, you could use a work-around like this: mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"mx:Script![CDATA[import mx.effects.*; private function dothis():void{var resize1:Resize = new

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Jean-Luc ESSER
I got you message, yahoo must feal a little dizzy ;) How long is your list of questions ? :)) JL - Original Message - From: Michael Schmalle To: flexcoders@yahoogroups.com Sent: Monday, June 19, 2006 4:28 PM Subject: Re: [flexcoders] [To Michael Schmalle]

[flexcoders] toolTip for dataGrid headers?

2006-06-19 Thread djbrown_rotonews
I'm wanting to add toolTip for dataGrid headers, where a tool tip is displayed when hovering over a header of a data grid that displays more information about that particular column. It doesn't appear than an itemRollOverEvent is generated when rolling over a header, so what's the best way to

RE: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Yaniv De Ridder
ItemRenderers are not styles, for DataGrid , TileList , its a IFactory setter / getter I dont exactly know for Charts but for a TileList you can do as simple as this : myTile.itemRenderer = new ClassFactory( myThumbnail ); Cheers, From: flexcoders@yahoogroups.com

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Michael Schmalle
Hi, Don't get them confused; itemRenderers ARE styles Theoretically it is a property not a style. You may be able to set them with setStyle() but, they are not styles of the ListBase. Anytime you see this in a class file; itemRenderer = new ClassFactory(ListItemRenderer); Which is in the

Re: [flexcoders] Re: Flex2B3 - Resize effect problem

2006-06-19 Thread Michael Schmalle
Tim, hehe nice, my idea was to set the titleBar.minWidth to 0. Consequently it didn't work :) Peace, MikeOn 6/19/06, Tim Hoff [EMAIL PROTECTED] wrote: Hi, I've noticed some interesting behavior with Beta3 like this as well. For now, you could use a work-around

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Pan Troglodytes
Okay, that's not confusing at all. ;)For the Adobe folks: why the difference in the itemRenderers from component to component? Do you plan on standardising on doing it one way? I would hope the answer is yes, as it would sure make things a lot easier for the new folks. On 6/19/06, Yaniv De

Re: [flexcoders] Connection Debugging

2006-06-19 Thread Jeremy Lu
I use Charles and ServiceCapture all the time, they work with Flex2/AMF3 now. Jeremy. On 6/19/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote: In Flash Development I was using ServiceCapture for my NetConnection Debugging. What's the preferred

Re: [flexcoders] FDS Samples

2006-06-19 Thread hank williams
Oh thanks. I was going to ask about that. I hate the idea of modifying the server.xml file for an app specific thing.But I am not familiar with the context.xml file. What is the overall format of that file. Can I see a sample somewhere. Also, I presume that this *is* the META-INF in the

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Pan Troglodytes
Okay, let me correct my statement:itemRenderers are sometimes styles and sometimes not. And when they are styles, they're not really.;)On 6/19/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Don't get them confused; itemRenderers ARE styles Theoretically it

[flexcoders] Re: Flex2B3 - Resize effect problem

2006-06-19 Thread bhaq1972
thanks for the workaround -TH. will have to do for now. same problem seems to exist when using the Fade effect. regards -BH --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Hi, I've noticed some interesting behavior with Beta3 like this as well. For now, you could

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Michael Schmalle
itemRenderers are sometimes styles and sometimes not. And when they are styles, they're not really. :) That makes sense to a programmer... hehe Peace, Mike Actually I am glad this was brought up, something to figure out.On 6/19/06, Pan Troglodytes [EMAIL PROTECTED] wrote:

[flexcoders] Getting a DataGrid item renderer instance

2006-06-19 Thread flex8it
I have simple datagrid with 2 columns and 2 rows like this: column 0 column 1 - image textfield image textfield Column 0 contains my ImageRenderer component. Column 1 contains the DataGrid's default item renderer and editor: text, textfield. First Problem: How do

RE: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Daniel Tuppeny
It doesn't make sense to me, and I'm a programmer :-) Why would ItemRenderers by styles on some objects, and not on others? It's just asking for confusion! :-/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael SchmalleSent: 19 June 2006 16:30To:

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Tom Chiverton
On Monday 19 June 2006 16:25, Pan Troglodytes wrote: itemRenderers are sometimes styles Where ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Michael Schmalle
No, its called J-O-K-E. It's just asking for confusion! :-/ Becasue there are differnet programmers and for some reason, best practices have not been set. Also, read the docs and they clearly say if it's a style or not. As far as why, I have no idea but, the docs can guide you through this

RE: [flexcoders] FDS Samples

2006-06-19 Thread Peter Farland
Make sure you mention that the Transaction tag for a Context is for Tomcat 5.5 only(I believe JOTM config is more complicated in earlier versions of Tomcat). This new tag makes it very simple to configure transactions with JOTM: Context reloadable="true" Transaction

[flexcoders] togglebuttonbar/buttonbar : embedding icons issue

2006-06-19 Thread leekuens
Hello all. Seems that the only way that I've been able to accomplish embedding icons in a togglebuttonbar/buttonbar control is by doing the following: mx:ToggleButtonBar id=tbb iconField=icon width=300 textAlign=left direction=vertical mx:Array mx:Object

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Pan Troglodytes
Charts, for one. See the thread changing out pieSeries.itemRenderer at runtime.On 6/19/06, Tom Chiverton [EMAIL PROTECTED] wrote:On Monday 19 June 2006 16:25, Pan Troglodytes wrote: itemRenderers are sometimes stylesWhere ?--Tom

Re: [flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread Pan Troglodytes
Actually, the docs just confused me more. See the topic Creating an item renderer and item editor. First, the example doesn't even work as printed. There's a typo leaving off a closing quote and flash says it doesn't know what RendererState is. Second, it doesn't mention that this method isn't

Re: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread Phil Marston
Yeah it does halt . . . and a dialog pops up saying "Errors exist in required project(s):projName. Continue launch? [Yes][No]" I didn't take from that that it would build the project from old resources - to me it's not continuing the launch emI/em initiated, but fetching up some old stuff

RE: [flexcoders] Re: changing out pieSeries.itemRenderer at runtime

2006-06-19 Thread Ely Greenfield
The ClassFactory class has a property called 'properties.' This is a hash table (object) full of key/value pairs that get applied to instances generated by the ClassFactory as necessary. So in your case, your markup is saying 'create a PieCategoryWedgeRenderer, and when it gets

Re: [flexcoders] FDS Samples

2006-06-19 Thread hank williams
On 6/19/06, Peter Farland [EMAIL PROTECTED] wrote: Make sure you mention that the Transaction tag for a Context is for Tomcat 5.5 only(I believe JOTM config is more complicated in earlier versions of Tomcat). This new tag makes it very simple to configure transactions with JOTM:

RE: [flexcoders] Getting rid of rectangle on axis (FB2.3 charts)

2006-06-19 Thread Ely Greenfield
Do you mean the axis itself? I'm not sure what rectangle you're referring to. E. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sp0rarb3jd3rSent: Monday, June 19, 2006 6:13 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Getting rid of rectangle on

[flexcoders] Re: flex2gateway woes on UNIX

2006-06-19 Thread wlbagent
Flash Remoting is enabled... --- In flexcoders@yahoogroups.com, João Fernandes [EMAIL PROTECTED] wrote: In the cf admin page, you have a new option (after installing the update) called flex integration. Check if your instance have it enabled (enable flash remoting support option).

RE: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread Daniel Tuppeny
I see. I took that dialog to mean similar to Visual Studio's, which is basically "I failed to build because your code is broken. Should I launch the last version?". I guess it's so you can get into your app as it was last built if you need to see something, but you've screwed the code up.

[flexcoders] Re: Flex2B3 - Resize effect problem

2006-06-19 Thread Tim Hoff
Oh, it's ugly. But, no need to spin your wheels on things that may already be fixed. :) -TH --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Tim, hehe nice, my idea was to set the titleBar.minWidth to 0. Consequently it didn't work :) Peace, Mike On

Re: [flexcoders] Re: Flex2B3 - Resize effect problem

2006-06-19 Thread Michael Schmalle
no need to spin your wheels on things that may already be fixed. :) Yeah, and I was thinking of containers, UITextField and the Panel doesn't even care about the minWidth property anyway! Mental gymnastics I guess. Your right, this is a blaring bug that has to be fixed by now. Peace,

[flexcoders] Re: togglebuttonbar/buttonbar : embedding icons issue

2006-06-19 Thread leekuens
Nevermind, I got it. You can do something like this: mx:Script ![CDATA[ private function dostuff() : void { var arritems : Array = new Array(); var item : Object

Re: [flexcoders] [To Michael Schmalle] Rendered from dataProvider ?

2006-06-19 Thread Jean-Luc ESSER
Mike, Well i just tested it i came accross a problem : I'm using a TileList and as you know, only a few items are rendered if you have a scroll, so we'll never get to match the length of the dataProvider... So i guess i'll have to manually set the number of items which do not scroll

[flexcoders] Internal error

2006-06-19 Thread Subba Chalamalasetty
Hi, I am getting this error An internal error occurred during Updating Problems view:, java.lang.ClassCastException Can somebody help me to resolve this errorI have no idea about it. Thanks Subba __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread John Grden
This worked for me just fine ;) Thanks for the help,JGOn 6/15/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, This is what I do, Rename your project, oldProj or something. Create a new project with the same name as your old one. If I were you with this still

Re: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread John Grden
never mind. If I make a change in an mxml file (component) and save, it's not built. It *used* to work, but now it's not working and I have to clean everytime to get it to rebuild the app. I did the workaround with creating a new project and copying the files, but same issue exists. On 6/19/06,

Re: [flexcoders] Re: changing out pieSeries.itemRenderer at runtime

2006-06-19 Thread Pan Troglodytes
Ah, I thought it had something to do with properties, but the help only says it's Object, and it was set to null at runtime. But this is a bit more clear. I also figured you could do it by breaking it out, but I wanted to see how to manipulate it if I wanted to change it later. I'm still

Re: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread Phil Marston
Perhaps that's a difference between someone coming to Flex Builder 2 from a traditional app development background and someone coming from a Flash app development background (i.e. using the Flash IDE) ;-) I know now and perhaps the archive of this thread will serve to help others like me.

[flexcoders] RPC Error I cant figure out

2006-06-19 Thread Jeremy Rottman
I am working on a search screen for my app, and I have run into this error that I can't figure out. [RPC Fault faultString=Array of input arguments did not contain a required parameter at position 3 faultCode=Client.Input faultDetail=null] I have check to make sure that I am passing a value from

[flexcoders] Re: FDS Samples

2006-06-19 Thread hank williams
After chatting here with Peter, I made a few improvement for setting up JOTM in tomcat in order to use FDS.1. un gzip the file http://debian-sf.objectweb.org/projects/jotm 2. go to the lib directory in the resulting uncompressed folder3. place all the files in this folder in the

[flexcoders] Re: Getting a DataGrid item renderer instance

2006-06-19 Thread flex8it
More specifically, here's what I'm trying to change the viewState in my itemRenderer when the DataGrid's textfield is edited. But in order to do that, I need to somehow get an instance reference to my renderer component. And nothing I've done seems to work... ?xml version=1.0? mx:Application

RE: [flexcoders] Re: F2B3: Possible bugs with ComboBox ItemRenderer and ColorPicker

2006-06-19 Thread Gordon Smith
I wonder if there is additional overhead associated with declaring untyped special type variables (*) compared to typed variables? Yes, I believe there is; if the compiler doesn't know anything about the type it can't optimize the generated code as well. But there is no reason to use *

Re: [flexcoders] How to recover from 'cleaning' project?

2006-06-19 Thread Michael Schmalle
John, I did the workaround with creating a new project and copying the files What are you copying? trust me I ramed my head against the screen may times with this and found a way to do it? Peace, Mike On 6/19/06, Phil Marston [EMAIL PROTECTED] wrote:

RE: [flexcoders] RPC Error I cant figure out

2006-06-19 Thread João Fernandes
your method is asking for 4 parameters and you are only invoking with 3 of them. if you want to skip the searchkey parameter try this: private function SearchParties_Vendor_Search_Name(firstName, lastName, searchType){ SearchParties.Vendor_Search(firstName, lastName,, searchType);

[flexcoders] bug in chart.itemDoubleClick/itemMouseUp?

2006-06-19 Thread Pan Troglodytes
Using the example given for the help topic Handling user interactions with charts works fine:?xml version=1.0?mx:Application xmlns:mx= http://www.adobe.com/2006/mxmlmx:Script![CDATA[import mx.controls.Alert;import mx.charts.events.ChartItemEvent;[Bindable]

[flexcoders] use of Number instead of int unit datatype????

2006-06-19 Thread Jignesh M. Dodiya
Few days back, Sho Kuwamoto from Adobe have written in his post that Number datatype is fast than using newly introduced int and uint datyatype for as-3 and some given the confirmation also regarding that just want to confirm this that its really like that then why int and uint introduced in

[flexcoders] Strategies for an MVC approach

2006-06-19 Thread Jesús Zazueta Montiel
Hello. Once again, I'd like to thank in advance for the time of those who can help me. I've been learning the basics of Flex 1.5 and I got past remote object invocation and debugging. My interest now shifts towards applying design patterns in order to build scalable and maintainable

[flexcoders] sortCompareFunction :: My Solution

2006-06-19 Thread Brendan Meutzner
Hi All,After coming across the difficulties surrounding the current sortCompareFunction for the DataGrid, I've come up with a solution that worked to solve my problem, and I thought might help others.My particular issue was that I had two columns in my DataGrid which were dynamically set (that

[flexcoders] Re: Flex beta 3/CF and Datagrid not being populated

2006-06-19 Thread malik_robinson
Hi, It is all working great now. I am using ColdFusion and once I used CAPS for the columnNames in the dataField="FIRSTNAME" as opposed to "firstname" it works beautifully. Thanks for all the tips as well. It really helps. I think once I get the foundation and the ability to do things that I

[flexcoders] Flex2b3 NetConnection.connect arguments

2006-06-19 Thread David Clark
Hi,Trying to connect from Flex to FMS2 using NetConnection passing an object argument. Any object type arguments seem to be ignored...I have existing Flash to FMS code that works something like this: nc = new NetConnection();nc.connect(rtmp://localhost/ComponentTest, {name:test,

[flexcoders] How to integrate Flash and Flex well done ?

2006-06-19 Thread roberto.rosenthal
Hi all, I just joined this group.. and so far I'm delited with Flex but I wonder this... I've spend so much time developing with Flash to aproach RIA that I would like to know how can I integrate something done already with Flash in Flex. Hopefully someone can help me do something like this: a)

Re: [flexcoders] How to integrate Flash and Flex well done ?

2006-06-19 Thread Pan Troglodytes
Here's what the help says:Embedding SWF files for Flash Player 8 and earlier You can embed SWF files created for Flash Player 8 and earlier. When embedded, your Flex 2.0 application cannot interact with the embedded SWF file. That is, you cannot use ActionScript in a Flex 2.0 application to

RE: [flexcoders] Flex2b3 NetConnection.connect arguments

2006-06-19 Thread Peter Farland
Add the following line (where the ObjectEncoding class is in the flash.net package along with NetConnection): nc.objectEncoding = ObjectEncoding.AMF0; In ActionScript 3.0, the default object encoding for NetConnection is AMF 3, however FMS2 uses the legacy AMF 0. From:

RE: [flexcoders] bug in chart.itemDoubleClick/itemMouseUp?

2006-06-19 Thread Ely Greenfield
try setting the 'doubleClickEnabled' flag on the chart to true. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pan TroglodytesSent: Monday, June 19, 2006 11:24 AMTo: flexcodersSubject: [flexcoders] bug in chart.itemDoubleClick/itemMouseUp? Using the

[flexcoders] adding zoom effect to datagrid row

2006-06-19 Thread Pan Troglodytes
I'm having a real time trying to get a rolloverEffect to work on a datagrid. What I want is for the text to zoom a little bit when rolled over. Here's my code: ?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml layout=absolute mx:ArrayCollection id=dataSet

  1   2   >