Re: [flexcoders] Cairngorm2 reusable commands

2006-02-21 Thread Alberto Albericio Salvador
Thats it! I like it and it works 100%. Thanks Feiy! Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática feiy escribió: u can extends the event,add a source attribute to it eg: public class SourceEvent extends CairngormEvent{ public

RE: [flexcoders] First time flex2 app Phones Example Failing

2006-02-21 Thread Benoit Hediard
You might checked two things. Have you verified the port number in flex-enterprise-services.xml? Have you added the additional argument in Flex Builder2 to take into account flex-enterprise-services.xml? Benoit Hediard -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Tree keyDownHandler problem

2006-02-21 Thread kosirm2000
I don't know if this is bug or I should write some additional code, please if somebody can check this. To reproduce this error click on first tree node to select it, then press Down key several times to get the last tree node selected, then press Left key to get to the first node selected again

[flexcoders] Binding Data to DataGrid from webservice response

2006-02-21 Thread Sathish K
How to bind data from webservice response... if the column name in the grid is different and child tag in response is different... i cannot able to loop through the databecause the response wouldcontains huge data of 2 rows.. example if webservice response is response data

[flexcoders] Binding Data to DataGrid from webservice response

2006-02-21 Thread Sathish K
How to bind data from webservice response... if the column name in the grid is different and child tag in response is different... i cannot able to loop through the databecause the response wouldcontains huge data of 2 rows.. example if webservice response is response data

[flexcoders] Binding Data to DataGrid from webservice response

2006-02-21 Thread sathish_kumar_18
How to bind data from webservice response... if the column name in the grid is different and child tag in response is different... i cannot able to loop through the data because the response would contains huge data of 2 rows.. example if webservice response is response

[flexcoders] Nested view hierarchy design pattern?

2006-02-21 Thread Sergey Kovalyov
Hi All! Are there any existing generic design pattern that allows establishing two-way communication between views, implementing the navigation strategy without using ViewLocator? Let me introduce the example of what I mean. We have core view with ViewStack inside, another one ViewStack in the

[flexcoders] different color and shape in one plot chart

2006-02-21 Thread wujunjr
Hi, all, Is it possible to implement a plot chart in flex, which have different color and shape within same PlotSeries. We are implementing this function like that: mx:PlotSeries name=Company1 xField=Debt_1 yField=Cds_1/ mx:PlotSeries name=Company2 xField=Debt_2 yField=Cds_2/

[flexcoders] DateTime in WebService

2006-02-21 Thread Pablo Apanasionek
Take a look at this: A J2EE-Axis webservice of mine is returning a DateTime in this way: dateFrom xsi:type="xsd:date"2006-06-01Z/dateFrom dateTo xsi:type="xsd:date"2006-06-02Z/dateTo And Flex turns it into: dateFrom[Local Time] : Wed May 31 21:00:00 2006 (-3:00)dateTo[Local Time]

Re: [flexcoders] Positioning Alert

2006-02-21 Thread Daniel Cascais
Yeah, sorry forgot to mention this is Flex 1.5, and no Jesse, the Alert is not centered yet. We are calling the alert from within a VBox Component (the move() method should only work with a canvas), But as Aldo said, we tried myAlert.centerPopUp( blabla ) which is positioning the Alert anywhere

[flexcoders] Problem with Repeater

2006-02-21 Thread Richard Schutten
Hi there, I'm using Flex 2.0 Beta 1 and having a problem with using a Model as dataProvider for the Repeater. I entered an example code beneath: mx:Model id=test result itemItem 1/item /result /mx:Model mx:VBox mx:Repeater id=rep

Re: [flexcoders] Positioning Alert

2006-02-21 Thread JesterXL
Who is the parent of the Alert? You can pass in the parent; are you passing in the VBox or the Application? - Original Message - From: Daniel Cascais [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 21, 2006 9:24 AM Subject: Re: [flexcoders] Positioning Alert

[flexcoders] Re: DateTime in WebService

2006-02-21 Thread Dave Wolf
What Java object type are you using? A Date or a Calendar object? -- Dave Wolf Cynergy Systems, Inc. Macromedia Flex Alliance Partner http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY --- In flexcoders@yahoogroups.com, Pablo Apanasionek [EMAIL PROTECTED] wrote:

Re: [flexcoders] Positioning Alert

2006-02-21 Thread Daniel Cascais
We tried with the VBox and an Accordion that is within the VBox. As a note, vertically the Alert is being correctly positioned, which means it is having some effect, as it isn't the same as the Applications middle. So it might have something to do width the horizontal align and that the VBox is

RE: [flexcoders] Re: Response not resolvable with Flex 2.0 and ASP.NET 2.0 Web Service

2006-02-21 Thread Matt Chotin
Hi, It looks like we had a known bug that was fixed on Wednesday. QA just verified that both of your WSDLs are now working. Turns out it was broken in 1.5 too but the failure was silent. I'm hoping that this may address a bunch of the perceived .NET WS issues, but I guess we'll see when beta 2

[flexcoders] Re: JSON support?

2006-02-21 Thread adobedeveloperguy
We will announce the availability of the AS3 libraries at FlashForward.You will be able to get to them from the Flex 2 Beta site at labs.adobe.com. I look forward to hearing how they are being used! Ben -- Flexcoders Mailing List FAQ:

[flexcoders] Your preference - Loader or createChild?

2006-02-21 Thread fowleryj
We are trying to make a decision on how the shell of our application should work. Our goal is to load the sub-applications that are a part of our large app dynamically. Basically, should we go with the createChild method or use the mx:Loader tag? We are happy with all of the inner workings of our

[flexcoders] Adobe Videos

2006-02-21 Thread Jonathan Miranda
http://labs.macromedia.com/flexproductline/videos/#/ Anyone find out if they posted the Transition code somewhere? _ Jonathan Miranda Flexible Master of the Web In the game of chess, it's important to never let your opponent see your

RE: [flexcoders] First time flex2 app Phones Example Failing

2006-02-21 Thread Ian Skinner
Thanks Benoit Have you added the additional argument in Flex Builder2 to take into account flex-enterprise-services.xml? I have added the following value in the Additional compiler arguments: --services=C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\flex\flex-enterprise-services.xml

RE: [flexcoders] Your preference - Loader or createChild?

2006-02-21 Thread Sergey Kovalyov
Sure, it depends on particular application so much, but as for me one big application with detailed preloader is much more better than lightweight core with a lot of modules that a preloaded upon each request. I want RIA to work exactly as a desktop application. Broadband is not a future, but

[flexcoders] Re: Your preference - Loader or createChild?

2006-02-21 Thread fowleryj
Hi Sergey, Have you run into any instances where your single SWF is too large? Is there a way to control its size? Perhaps via RSLs? Thanks for your quick response, YJ --- In flexcoders@yahoogroups.com, Sergey Kovalyov [EMAIL PROTECTED] wrote: Sure, it depends on particular application so

[flexcoders] calling a function based on value of text input

2006-02-21 Thread Jeremy Rottman
I have a text input called fileNum. What I would like to do is this. if fileNum.text != '' (call these functions) else (call these functions) I am just not sure about the structure of if statements. Can someone show me how to do this. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] different color and shape in one plot chart

2006-02-21 Thread Ely Greenfield
This is probably starting to sound repetetive, but... Flex 1.5 or 2? E. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wujunjr Sent: Tuesday, February 21, 2006 1:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] different color

[flexcoders] Stacked Areachart with Trendline

2006-02-21 Thread Carlos Balacuit
Is there a way to add a trend line, with a constant value, to a stacked AreaChart? I've tried just a LineSeries to areaChart.series, but because the chart is type=stacked, the values stack on top of the trend line. Can a chart have a set of series that are stacked, and another set be overlaid?

RE: [flexcoders] Re: Your preference - Loader or createChild?

2006-02-21 Thread Sergey Kovalyov
Actually RSL are very useful when you load some modules dynamically and those modules use the same classes and resources. I only tried it, but never used it for real projects. Though I heard different expert opinions, it seems to me application with size less than 500K could be loaded as one SWF.

[flexcoders] createChild and destroyChild

2006-02-21 Thread rgwilson26
I am new to FLEX and am working on an app that allows the user to dynamically create a FormItem w/ various text boxes dynamically from a click event including a delete button in each form item that will allow the user to delete that specific instance of the object. I am able to create the

RE: [flexcoders] First time flex2 app Phones Example Failing [SOLVED]

2006-02-21 Thread Ian Skinner
As well as all the other suggestions, I had to add all the MXML files to the flex project manually. Once that was done all was well. From thinman's post to Ben Forta's blog: http://www.forta.com/blog/index.cfm/2006/2/1/ColdFusion-Flex-2-Sample-Application Needed to add the all 3 mxml files

RE: [flexcoders] Your preference - Loader or createChild?

2006-02-21 Thread Roger Gonzalez
createChild Good: seems to execute more quickly than mx:Loader Bad: one huge SWF mx:Loader Good: multiple SWFs Bad: seems to execute more slowly than createChild Well, its certainly going to be a bit slower, since it needs to pull stuff over the network and initialize it. I'll

RE: [flexcoders] calling a function based on value of text input

2006-02-21 Thread Matt Horn
ActionScript also supports case/switch statements: switch (ta1.text) { case cow: moo(); break; case cheese: dutchRock();

Re: [flexcoders] calling a function based on value of text input

2006-02-21 Thread JesterXL
Actually, if's are faster, but I don't like all that typing, so use switch. Not sure about AS3. - Original Message - From: Matt Horn [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 21, 2006 12:55 PM Subject: RE: [flexcoders] calling a function based on value of

RE: [flexcoders] Complex data without Flash Remoting

2006-02-21 Thread Jonathan Miranda
Ive had a little luck in switching this to a WSDL but having some problems. Maybe Im trying something thats not possible, but since this isnt documented that great I might as well J heres what I have so far: mx:WebService id=myServ wsdl=cfm/test.cfc?wsdl mx:operation name=getText

RE: [flexcoders] First time flex2 app Phones Example Failing

2006-02-21 Thread Benoit Hediard
I've never tried on a multi-home config, but everything looks fine. You change the port number in your endpoint URL in flex-enterprise-services.xml: Ex. : endpoint uri=http://localhost:8500/flex2gateway/; (you must restart your service) In your case, it should be (default value, I think):

RE: [flexcoders] Re: Stacked Areachart with Trendline

2006-02-21 Thread Ely Greenfield
OK, I'll start with flex2, which is the nicer answer. In Flex2, we've extracted the stacking behavior of AreaChart, ColumnChart, and BarChart into separate series that allow you to do more complex things. So this: AreaChart type=stacked series AreaSeries ... /

[flexcoders] Passing a checkbox to a cfc

2006-02-21 Thread Jeremy Rottman
I have two check boxes that are being used to determine weither the agent that is selected is the buyer agent or the selling agent. When a user selects one and hits submit it should be passed to my cfc where my cfc takes over and handles the rest from there. But this does not seem to be working

[flexcoders] Re: multiple lines in a datagrid

2006-02-21 Thread rgwilson26
I tried using variableRowHeight in my dataGrid with no luck. I may not have been very clear in my first post. I am trying to add text from a text input box, where if the text exceeds the length of the data grid then it will expand to more than one line and create a word wrap effect so the user

[flexcoders] Memory leak when assigning new series and dataproviders to a chart.

2006-02-21 Thread thunderstumpgesatwork
Hello, I've been troubleshooting a pretty major memory leak in our application. I've narrowed it down to code which cleans up a chart's series array and re-initializes it to add a new set of series with new dataproviders, etc. Note that with only the AddSeries, and SeriesDelete functions removed

[flexcoders] Datagrid Row Heights

2006-02-21 Thread Jonathan Miranda
Alright, lets say I have a datagrid with variableRowHeight=true. Now I want, using actionscript, to switch the height of row #2 to 200. Ive got a semi-way of doing it right now using a label cellrenderer but I was wondering if there was a basic method I was missing. Ive been attempting

[flexcoders] FW: Datagrid Row Heights

2006-02-21 Thread Jonathan Miranda
Alright, lets say I have a datagrid with variableRowHeight=true. Now I want, using actionscript, to switch the height of row #2 to 200. Ive got a semi-way of doing it right now using a label cellrenderer but I was wondering if there was a basic method I was missing. Ive been attempting

RE: [flexcoders] First time flex2 app Phones Example Failing

2006-02-21 Thread Ian Skinner
I've never tried on a multi-home config, but everything looks fine. Thanks, a solution was posted to Ben Forta's and now the CF/Flex connector forum at labs.adobe.com. I had to add all the mxml files to the project. From thinman's post to Ben Forta's blog:

[flexcoders] Re: Memory leak when assigning new series *Flex2b1*

2006-02-21 Thread thunderstumpgesatwork
I keep forgetting to put it in the inital post. Using Flex2 Beta1. thanks, Thunder --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hello, I've been troubleshooting a pretty major memory leak in our application. I've narrowed it down to code which cleans up

[flexcoders] Programatically move Tree Component Scrollbar

2006-02-21 Thread sufibaba
Hi all, Just wondering if anyone knows how to use actionscript to scroll the tree control. Cheers, Tim -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups

[flexcoders] Re: Your preference - Loader or createChild?

2006-02-21 Thread mvbaffa
--- In flexcoders@yahoogroups.com, Roger Gonzalez [EMAIL PROTECTED] wrote: createChild Good: seems to execute more quickly than mx:Loader Bad: one huge SWF mx:Loader Good: multiple SWFs Bad: seems to execute more slowly than createChild Well, its certainly going to be

[flexcoders] Displaying Returned Array Results In a DG

2006-02-21 Thread Jeremy Rottman
I have a dg that I am using to display the active agents on a file. With in my db I have a field that collects the information as a list. When someone adds a new agent to the file it updates the db and should update the display in the dg. However, I cant get this work. I have posted my code below.

RE: [flexcoders] FW: Datagrid Row Heights

2006-02-21 Thread Sauro, Nick
What do you mean, move effect so its not so instant?? If its moving too fast, there is a duration field that you can increase to make the effect last longer. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda Sent: Tuesday,

RE: [flexcoders] Programatically move Tree Component Scrollbar

2006-02-21 Thread Deepa Subramaniam
You should be able to use the vPosition and hPosition properties on Tree to move its vertical or horizontal scrollbar. To get the scrollbar to scroll to the selectedItem you can set vPosition/hPosition to the selectedIndex. -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] FW: Datagrid Row Heights

2006-02-21 Thread Jonathan Miranda
Im still trying to figure out how to set a row height in actionscript J I havent even gotten to the effect of resizing the rows yet. _ Jonathan Miranda Flexible Master of the Web In the game of chess, it's important to never let your opponent

RE: [flexcoders] FW: Datagrid Row Heights

2006-02-21 Thread Sauro, Nick
Is this 1.5, 2.0? Which method are you using to access that row? I dont see any method called getItemByIndex in the flex docs. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda Sent: Tuesday, February 21, 2006 3:31 PM To:

[flexcoders] Re: Stacked Areachart with Trendline

2006-02-21 Thread Doug Lowder
You can simulate this with an overlaid chart in Flex 1.5. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; xmlns=* width=100% height=100% backgroundColor=#FF initialize=adjustData() mx:Script ![CDATA[ var data:

[flexcoders] how to use flex debugger to debug the problem

2006-02-21 Thread Jignesh M. Dodiya
hi, as i really get confused with the docs on how to use the debugger with flex -2 ... is there anybody have clear idea regarding that.such like flash has good debugging tool thanx, -- Flexcoders Mailing List FAQ:

[flexcoders] Fp8.5 a3 ignores rtmpt protocol

2006-02-21 Thread Jim Phelan
Not sure if this has been documented or not, but I thought Id post it here in addition to submitting a bug report. We are working with a client who has an FMS client application that connects explicitly to rtmpt:80. This is a Flash 8 application. With fp8 the connection works: a

[flexcoders] Scope of try... catch... finally

2006-02-21 Thread dopenhagen
Hi, I'm having some difficulty using the try...catch construction as I am used to from Java and C#. It seems to me that the code executed within a catch and a finally block is executed in a completely different context as I am incapable of accessing any of my other classes or code. Is it I

RE: [flexcoders] Re: calling a cfc from flex

2006-02-21 Thread João Fernandes
The error is the type you returned. You typed as string when its or an array (of structs) or a query. Even in CF you'll have that error it's not on the Flex side the problem, is your return type in your CFC. João Fernandes Sistemas de Informação Programador Informático Cofina media Avenida

[flexcoders] X-Y Coordinate translation between a DisplayObject and one of its ancestors?

2006-02-21 Thread thunderstumpgesatwork
Hi all, I am trying to catch a selection change event on a chart, and then position and show an HBox relative to a corner of the chart item. The HBox is a child of an outer canvas which houses several other containers including the chart, legend, etc. The X and Y position of the HBox is

RE: [flexcoders] Re: Object cleanup and memory usage Best Practices (2.0b1)

2006-02-21 Thread Gordon Smith
// now you're saying I should null my locals...? oBtn=null; There is no reason to do this. When createChildren() returns, its locals go out of scope and oBtn no longer holds a reference to the Button instance. So nulling it doesn't accomplish anything. The Button instance doesn't get

RE: [flexcoders] Handling VERY large numbers in Flex

2006-02-21 Thread Gordon Smith
You have a problem... a Number can't store more than 15 or 16 significant decimal digits. If you need more, you're going to have to write or acquire the equivalent of a BigInteger class, which would probably use arbitrarily long Strings to store arbitrarily large integers. - Gordon

[flexcoders] Disappearing Data

2006-02-21 Thread Jonathan Miranda
Alright, think Ive found a real fun bug. Have fun with this Matt J I have a datagrid that is populated by an ArrayCollection aka ICollectionView. So here I am, trying to figure out why my first row of data is disappearing and I found it. myLegendICV = new ArrayCollection(myData);

RE: [flexcoders] Disappearing Data

2006-02-21 Thread Jonathan Miranda
Wow, were even getting weirder here. If I reference the dataGrid *at all* it loses the first row. The renderer is calling expandFunc when it gets clicked (its a button). Heres my code.(comment the Alert, and it works fine. Keep it, and my first row disappears) public function

RE: [flexcoders] FW: Datagrid Row Heights

2006-02-21 Thread Jonathan Miranda
2.0 I was using getItemByIndex from the ListBase class. I still cant figure this out. Even if I resize the HBox cell-renderer, the actual row height doesnt change. I need a way to change a specific rows height with actionscript. _ Jonathan

Re: [flexcoders] Re: Flexunit for Flex 2

2006-02-21 Thread Niklas Richardson
Just jumping on this thread. I'm guessing this has been delayed for a while? Cheers Niklas On 2/7/06, Steven Webster [EMAIL PROTECTED] wrote: Chris,The iteration::two flex unit codebase is used internally withinMacromedia to test some of the Flex appmodel, and has been convertedinto

Re: [flexcoders] Re: Flexunit for Flex 2

2006-02-21 Thread Johannes Nel
asunit has a as3 testing frameworkOn 2/21/06, Niklas Richardson [EMAIL PROTECTED] wrote: Just jumping on this thread. I'm guessing this has been delayed for a while? Cheers Niklas On 2/7/06, Steven Webster [EMAIL PROTECTED] wrote: Chris,The iteration::two flex unit codebase is used

Re: [flexcoders] Handling VERY large numbers in Flex

2006-02-21 Thread Niklas Richardson
Crap!I thought as much after reading something about ColdFusion and large integers and having to use the Java BigInt class.Oh well. I wonder whether 15 significant decimal digits will be enough! ;) haha! CheersNiklasOn 2/21/06, Gordon Smith [EMAIL PROTECTED] wrote: You have a

[flexcoders] Re: Programatically move Tree Component Scrollbar

2006-02-21 Thread sufibaba
Thanks for the tip Deepa, The reason I needed to move the scrollbar is because I was trying to get around a bug in the Tree Control. Situation: I wanted to add a closeTopNode(tree.getNodeDisplayedAt(0)) function that closes the root node. public function closeTopNode(node:Object) {

[flexcoders] dynamic http service

2006-02-21 Thread Jeremy Rottman
I am using httpservice to read a xml file that I write for documents on my server. The issue that I have run into is how do I create a dynamic http server. Here is what I am currently trying. What I had expected it to do is to read the agentList.xml file in folder number defined by fileNum.text.

[flexcoders] Strange Error on compiling Flex-2 project

2006-02-21 Thread Jignesh M. Dodiya
Hi, when I am compiling the codes in mxml, i found the Error as below.. ActionScript Error has occured:: Error: Unknown property -1 at mx.collections::ListCollectionView/http://www.macromedia.com/2005/actio nscript/flash/proxy::getProperty()

[flexcoders] Re: dynamic http service

2006-02-21 Thread Doug Lowder
You can set the url property before you call send: agentSrv.url = http://flex.homesmartagent.com/paperless/genDocs/; + fileNum.text + /agentList.xml; agentSrv.send(); Doug --- In flexcoders@yahoogroups.com, Jeremy Rottman [EMAIL PROTECTED] wrote: I am using httpservice to read a xml

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-21 Thread george_lui
I don't see how this was terribly different from the original code. But I tried it anyways and it doesn't work. thanx anyways, geo --- In flexcoders@yahoogroups.com, bhaq1972 [EMAIL PROTECTED] wrote: why dont you simplify things a bit. put your FullNameRenderer into the same folder

Re: [flexcoders] Re: Object cleanup and memory usage Best Practices (2.0b1)

2006-02-21 Thread JesterXL
That's not what the documentation says for optimizing memory for Flash Lite 2, and that is the only thing I'm going off of. Does that apply only to the Flash Lite 2 player specifically? It acknowledges that locals go out of scope but that you should still null them: Although you cannot

[flexcoders] Flex2 :: Internal Build Error :: Adobe Engineers?

2006-02-21 Thread Teoti Graphix
Hello, Ironically I commented on this subject the last couple days, and it has bit me in the ass. I have a component project that is using a lot of classes, not to mention mxml components. Now I get this internal build error. Ok, fine like Jesse said, CLean and forget about it! HAHA Now to

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-21 Thread george_lui
Hi Matt, You have an example of a labelFunction? Say I have the blurb below... mx:Script funtion foo() { ?? } /mx:Script mx:ComboBox id=employeeComboBox labelFunction=foo rowCount=10 mx:dataProvider { ModelLocator.employees }

Re: [flexcoders] Flex2 :: Internal Build Error :: Adobe Engineers?

2006-02-21 Thread JesterXL
I usually copy files and rebuild them from various parts. Like, I'll create a bin directory by hand, copy other SWF's in, and rename them to yourproject.swf, and yourproject-debug.swf. The HTML files are copied from other projects too, but the html-template folder can be rebuilt by right

RE: RE: [flexcoders] Your preference - Loader or createChild?

2006-02-21 Thread Dimitrios Gianninas
I'd be very interested in this as well. -Original Message- From: flexcoders@yahoogroups.com on behalf of Roger Gonzalez Sent: Tue 2/21/2006 12:46 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Your preference - Loader or createChild? createChild Good: seems to

[flexcoders] Compress String

2006-02-21 Thread qwerty_jf
Hi.. I need to do something like this: var byteArr1:ByteArray = new ByteArray(); var byteArr2:ByteArray = new ByteArray(); byteArr.writeUTFBytes(Hello Word); byteArr.compress(); byteArr2.writeUTFBytes(byteArr.toString()); byteArr2.uncompress();

Re: [flexcoders] Flex2 :: Internal Build Error :: Adobe Engineers?

2006-02-21 Thread Teoti Graphix
Thanks ;-) but... no dice, I did exactly whaty you said, still I can't get passed the An internal error has occured. Please check the Error log. Now, the error log, I suppose this si something I have had to set up, and right now there really is no error log? Anyway, I have this error

Re: [flexcoders] Positioning Alert

2006-02-21 Thread Aldo Bucchi
jesse, how many hours do your days have? On 2/21/06, JesterXL [EMAIL PROTECTED] wrote: Know, I mean the Alert's show function. The 4th parameter is what it uses to center. Excplicitly set it to MovieClip(mx.core.Application.application), or use Application's alert function. - Original

Re: [flexcoders] Flex2 :: Internal Build Error :: Adobe Engineers?

2006-02-21 Thread JesterXL
...damn... sorry bro, I could give you crazy ideas forever, but I'll wait for the A-Team. - Original Message - From: Teoti Graphix To: flexcoders@yahoogroups.com Sent: Tuesday, February 21, 2006 8:52 PM Subject: Re: [flexcoders] Flex2 :: Internal Build Error :: Adobe Engineers?

Re: [flexcoders] Positioning Alert

2006-02-21 Thread JesterXL
Frikin' 24, and it blows. But, this is what I got, so this is what I'm gonna use. - Original Message - From: Aldo Bucchi [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 21, 2006 8:53 PM Subject: Re: [flexcoders] Positioning Alert jesse, how many hours do your

[flexcoders] Re: different color and shape in one plot chart

2006-02-21 Thread wujunjr
Is there any solution in Flex 2? I'm using Flex 1.5 now. Thanks. John --- In flexcoders@yahoogroups.com, Ely Greenfield [EMAIL PROTECTED] wrote: This is probably starting to sound repetetive, but... Flex 1.5 or 2? E. -Original Message- From:

Re: [flexcoders] Flex2 :: Internal Build Error :: Adobe Engineers?

2006-02-21 Thread Johannes Nel
to see the error log that thing is reffering to goto window- open perspective-other-plug in developmentOn 2/21/06, JesterXL [EMAIL PROTECTED] wrote: ...damn... sorry bro, I could give you crazy ideas forever, but I'll wait for the A-Team. - Original Message - From: Teoti

RE: [flexcoders] Flex2 :: Internal Build Error :: Adobe Engineers?

2006-02-21 Thread Matt Chotin
Obviously an internal build error should never occur, instead we should give you a real error message. So youve determined its in your custom component right? Just build that back up I guess. Perhaps create another Application and just put the custom component in there, see if it gives

RE: [flexcoders] Flex2: How to access real object in ObjectProxy?

2006-02-21 Thread Matt Chotin
So this is a namespaced property to avoid interference with any property of the real thing. So you can do something like this:P import mx.utils.object_proxy; var o3:Object = ObjectProxy(o2).object_proxy::object; Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: problem with cell renderer in ComboBox

2006-02-21 Thread Matt Chotin
We havent released it yet, it will be available with the shipping product if not before. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Anatole Tartakovsky Sent: Tuesday, February 21, 2006 9:01 PM To: flexcoders@yahoogroups.com Subject: Re:

RE: [flexcoders] Use component within the repeater

2006-02-21 Thread Matt Chotin
#3 looked like it should work to me. So none of the input parameters are correct? Are there any values? What component does your InputField extend? Maybe it's not playing with databinding correctly? Maybe you overrode a method without calling the superclass version? Matt -Original

RE: [flexcoders] SOAP message thru http proxy server

2006-02-21 Thread Carson Hager
Another one I meant to mention is tcptunnelgui from Apache SOAP. I have a bundled version of this with a simplified batch file if you're interested in using it. Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email:

RE: [flexcoders] Delegation and Callbacks

2006-02-21 Thread Matt Chotin
Sorry, I'm not sure I get what you're trying to do. When you say delegate do you mean the 1.5 mx.utils.Delegate? We don't need that in 2.0 because we have closures which means that the function will maintain the correct this pointer. Or are you looking for a different delegate class?

RE: [flexcoders] Validatior's binding problem?

2006-02-21 Thread Matt Chotin
Sorry, Validators in 1.5 can't accept binding, they're special components. We changed that in 2.0. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KAZUYA KOMON Sent: Monday, February 20, 2006 12:05 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] datagrid selection from keyboard

2006-02-21 Thread Matt Chotin
I think you'll want to override the keyDown handler for the DG and do the jumping logic yourself. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of geisergd Sent: Monday, February 20, 2006 12:09 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Problem with Repeater

2006-02-21 Thread Matt Chotin
You need to use mx.utils.ArrayUtil.toArray(). Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Schutten Sent: Tuesday, February 21, 2006 6:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problem with Repeater Hi there,

RE: [flexcoders] Function call AFTER a transition

2006-02-21 Thread Matt Chotin
Can you try putting an effectEnd handler on the Sequence and calling your method from there? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shuell2000 Sent: Tuesday, February 21, 2006 10:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] createChild and destroyChild

2006-02-21 Thread Matt Chotin
I think that if statement should be if (counter 0) { this.destroyChild(rowArray[counter-1]); counter--; } Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rgwilson26 Sent: Tuesday, February 21, 2006 8:56 AM To:

RE: [flexcoders] Passing a checkbox to a cfc

2006-02-21 Thread Matt Chotin
Checkbox.selected should be passed as true/false -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman Sent: Tuesday, February 21, 2006 11:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Passing a checkbox to a cfc I have two

RE: [flexcoders] Re: multiple lines in a datagrid

2006-02-21 Thread Matt Chotin
Add wordWrap=true to the column as well. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rgwilson26 Sent: Tuesday, February 21, 2006 10:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: multiple lines in a datagrid I tried using

RE: [flexcoders] Displaying Returned Array Results In a DG

2006-02-21 Thread Matt Chotin
Is it possible only one record is coming back? Maybe you need mx.utils.ArrayUtil.toArray? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman Sent: Tuesday, February 21, 2006 12:02 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] NetConnection with AMF0

2006-02-21 Thread Yokota Satoshi
Hi all, I'm trying to connect openamf without AMF3. I could this by using NetConnection. But, I can't get mapped class from server. following example code, --- [DefaultTriggerEvent(result)] [Event(fault)] [Event(result)] private var

RE: [flexcoders] Strange Error on compiling Flex-2 project

2006-02-21 Thread Matt Chotin
What is your onResult function trying to do? This is considered a runtime error by the way, not compilation. This error looks like you have an ArrayCollection or XMLListCollection and tried to read a property off of it like myCollection[someBadValue]. Matt -Original Message- From:

RE: [flexcoders] Re: problem with cell renderer in ComboBox

2006-02-21 Thread Matt Chotin
function foo(item:Object):Void { return item.attribute; } -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of george_lui Sent: Tuesday, February 21, 2006 5:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: problem with cell renderer in

RE: [flexcoders] Re: different color and shape in one plot chart

2006-02-21 Thread Ely Greenfield
There's a solution in both Flex 1.5 and Flex 2, but it's easier in Flex 2. In Flex 1.5, you'll want to looking into building a custom renderer (I just posted an example a few days ago of doing this for a column chart...doing it for a PlotChart is esentially the same). In Flex 2, you'd build

RE: [flexcoders] NetConnection with AMF0

2006-02-21 Thread Matt Chotin
Does your PhoneVO on the Java side have the getName/setName pair? There will be an FES available that I think you'll be able to use without charge as long as your usage isn't too high. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Yokota

Re: [flexcoders] NetConnection with AMF0

2006-02-21 Thread Yokota Satoshi
Hi Matt, PhoneVO have the getter/setter method. I could get primitive type, but I could'nt get the PhoneVO class. What do you mean about 'too high' ? I wish to use AMF easily like a Flash Pro. Can I use FES on business without charge or with small charge? Thank you. Satoshi Yokota Matt Chotin

RE: [flexcoders] NetConnection with AMF0

2006-02-21 Thread Matt Chotin
I'm not sure why the class isn't working, I haven't played with NetConnection directly for this purpose. Yes you can use FES for business purposes without charge, but we're still figuring out how exactly the tiered pricing structure will work. To use it in a clustered environment for example,

RE: [flexcoders] Handling VERY large numbers in Flex

2006-02-21 Thread Gordon Smith
If someone wants to tackle this, I'm pretty sure we'd distribute it on Labs if you wanted to make it available to the AS3 community. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Spike Sent: Tuesday, February 21, 2006 2:56 PM To:

  1   2   >