[flexcoders] error when scroll datagrid vertically?

2007-02-19 Thread arpan srivastava
Hi All, I am facing a weird problem with datagrid. I have added a custom itemrenderer in my datatgrid which draws a bullet graph in one of the columns. Now everything is fine except when I scroll it vertically it throws error( written below) . I tried to debug the application and found

RE: [flexcoders] Re: Cannot access a property or method of a null object reference

2007-02-19 Thread Steve Cox
If (dataProvider[i].hasOwnProperty(someValue) dataProvider[i].someValue != null) { } HTH Steve -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nate Pearson Sent: 17 February 2007 00:48 To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] Click, dbl-Click and Drag for the same Object.

2007-02-19 Thread raz_gilad
Hi I've encountered a situation in which I had to provide both click, dbl-click and drag for the same graphical element. I'm kinda of new to flex so I'm not sure the solution here is the best - but it works… In principal the solution handles both mouseDown and mouseDown events on the

RE: [flexcoders] Error: Only one root tag is allowed.

2007-02-19 Thread Kumar
Well I didn't got what you are actually trying to do with the XML node. But for the error part you just need to add one root tag in your XML data provider. Below is the code. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Panel

[flexcoders] Synchronizing binding execution

2007-02-19 Thread Ciarán
Hi People, I have a slight problem binding the itemRenderer and dataProvider of a TileList. The problem is, when the bindings execute, they do it asynchronously. Ideally I want the dataProvider to change first, then the itemRenderer. If they update asynchronously, sometimes they cause screen

Re: [flexcoders] ListRowInfo...

2007-02-19 Thread Ciarán
Hi Steve, mx.controls.listClasses is a package directory. You're probably looking to specify mx.controls.listClasses.ClassName, where ClassName is the name of the class you're looking to import. Wildcard (*) also works. -Ciarán On 2/17/07, Steve Kellogg [EMAIL PROTECTED] wrote: Hello,

Re: [flexcoders] DISREGARD....FW: ListRowInfo...

2007-02-19 Thread Ciarán
I didn't catch this before I clicked send on the reply. D'Oh. Sorry for the noise. Same. -Ciarán From: Steve Kellogg Sent: Saturday, February 17, 2007 11:25 AM To: 'flexcoders@yahoogroups.com' Subject: ListRowInfo... Hello, I'm needing to access the information in ListRowInfo

Re: [flexcoders] error when scroll datagrid vertically?

2007-02-19 Thread Ciarán
Hi, I am facing a weird problem with datagrid. I have added a custom itemrenderer in my datatgrid which draws a bullet graph in one of the columns. It sounds like a problem with your itemRenderer. for (i = lockedRowCount; i rowCount; i++) { numCols =

Re: [flexcoders] Error loading CSS swf

2007-02-19 Thread Tom Chiverton
On Sunday 18 Feb 2007, richmcgillicuddy wrote: When I try to load an swf at runtime, I get the following error Unable to load style(SWF is not a loadable module): ... You have run the CSS through the compiler haven't you ? -- Tom Chiverton Helping to greatly reintermediate 24/7 web-readiness

Re: [flexcoders] cairngorm event that will affect all models, where to put the logic.

2007-02-19 Thread Tom Chiverton
On Monday 19 Feb 2007, Paul Andrews wrote: Why should the part of the app with the date control know that a get data event is required? It doesn't. All it knows it to broadcast a NewDateEvent. What the controller does with that is it's own buisness. -- Tom Chiverton Helping to

[flexcoders] Charting Tooltips do not show ColumnSeries name

2007-02-19 Thread Private Romeo
I have the following simple charting app: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute styleName=plain mx:Script ![CDATA[ [Bindable]

[flexcoders] Re: no rtmp connection on win xp ?

2007-02-19 Thread chrisnoeflex
Jeff, telnet does not work when container is running. So does this mean that the endpoint for the rtmp connection is not set up correctly ? It does say in the log that 07/02/19 13:19:42 [Flex] [INFO] [Configuration] Endpoint my-rtmp created with security: None at URI: rtmp://10.10.0.119:2038

Re: [flexcoders] Generate Flex Forms on the fly

2007-02-19 Thread Tom Chiverton
On Wednesday 14 Feb 2007, Valy Sivec wrote: I need to be able build some data entry screen(s) on the fly based on form definition stored in the db. Any suggestions?. You can either have per-client screens pre-built, in a view stack, and just set selectedIndex or create the whole thing on the

RE: [flexcoders] Re: no rtmp connection on win xp ?

2007-02-19 Thread jason.proulx
Make sure the Windows Fire Wall is turned off too ;) Jay Proulx [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Vroom Sent: February 15, 2007 8:41 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re:

[flexcoders] Security sandbox violation and socket question

2007-02-19 Thread elad_nyc
Josh Tynjala created the amazing application to connect to AIM (see here: http://www.zeuslabs.us/archives/6/connecting-to-aim-with-actionscript-3- sockets/), however when I try to run it on a remote server it pause for few minutes and than it gives an error messages: Error #2044: Unhandled

RE: [flexcoders] cairngorm event that will affect all models, where to put the logic.

2007-02-19 Thread Dimitrios Gianninas
Exactly :) Dimitrios Gianninas RIA Developer Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Monday, February 19, 2007 6:04 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] cairngorm event

Re: [flexcoders] How to clear video image from VideoDisplay?

2007-02-19 Thread Young Kim
Thanks!! Works great!! On 2/18/07, cisnky [EMAIL PROTECTED] wrote: Use the close method. .close(); On 2/18/07, ad9798 [EMAIL PROTECTED] wrote: Video class has method called 'clear()' to clear out the image from displaying it, but I can't find similar function to clear out image from

[flexcoders] CheckBox in DataGridColumn Header in Flex1.5

2007-02-19 Thread Yasovardhan Babu
Hi, I have a datagrid with one column as checkbox. My requirement is that on clicking the checkbox in datagrid colmn header, it should check/uncheck all the items in the grid and should update the checked/uncked value of each item to the datbase. Can you please help me with a sample code? It

[flexcoders] Image cell render inside datagrid - image click event not firing in Flex1.5

2007-02-19 Thread Yasovardhan Babu
Hi, I have a datagrid column with image cell renderer. I tried to dispatch mouseDown event and catch the event with the listowner(datagrid). But I am not able to get the event dispatched. Can you please help me with some sample code in Flex1.5? Thanks and Regards, Yasovardhan.

[flexcoders] Help with webservice array and datagrid

2007-02-19 Thread dano_7
Hello Everyone, I have a basic stock quote webservice that I am trying to use to populate a datagrid. There is a service for retrieving one quote at a time which I got to work fine but when I try to use the one that returns an array of different quotes I am having issues. The output of the

[flexcoders] Flash 9 swf as RSL

2007-02-19 Thread Matt Freer
Hey Guys, I am trying to embed a Flash 9 compiled AS3 swf into a Flex 2 app. Once the flash swf is loaded into the Flex app I want access to all the exported library items and there associated classes. I have successfully achieved loading an AS3 swf into a Flex 2 app at runtime via the loader

[flexcoders] HDividedBox - on-release-outside + updateAfterEvent problems

2007-02-19 Thread polestar11
Hi there I have an HDividedBox control that divides 2 children that resize with dragging. There are 2 issues that I am having with this control: 1) the updates to the child container sizes dont occur simultaneously, resulting in visual errors of size position (which are fixed when dragging

[flexcoders] Re: no rtmp connection on win xp ?

2007-02-19 Thread chrisnoeflex
Jay, it makes no difference. I also deployed it on our linux server, on an full Oracle Application Server, but i get the same problem. Chris.

Re: [flexcoders] Charting Tooltips do not show ColumnSeries name

2007-02-19 Thread xmrcivicboix
If I'm reading this correctly, looks like you need a custom function that will display the datatip. Look at this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute styleName=plain mx:Script ![CDATA[ import

[flexcoders] Re: error when scroll datagrid vertically?

2007-02-19 Thread michael_ramirez44
Hey Guys, I have had a similar problem. Check out message post 60726 Michael Ramirez --- In flexcoders@yahoogroups.com, Ciarán [EMAIL PROTECTED] wrote: Hi, I am facing a weird problem with datagrid. I have added a custom itemrenderer in my datatgrid which draws a bullet graph in one of

[flexcoders] Accessing a Flex Model via JavaScript (FABridge)

2007-02-19 Thread Private Romeo
I've got the following model in my MXML app (bound to a column chart control): mx:Model id=sampleData items item MonthJanuary/Month Sales1000/Sales People3/People /item item

RE: [flexcoders] cairngorm event that will affect all models, where to put the logic.

2007-02-19 Thread Grant Davies
Ok... The controller should listen for the data change event and then dispatch the get other related data ? This should be in the controller which right now just maps an event to a command and does not other processing... ? Grant ... b l u e t u b

Re: [flexcoders] Re: Space between rows in the Datagrid

2007-02-19 Thread Tom Chiverton
On Friday 16 Feb 2007, lemasur wrote: Please, give me a hint. livedocs ? -- Tom Chiverton Helping to carefully strategize network e-tailers This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability

Re: [flexcoders] text area height

2007-02-19 Thread jeff noyes
Anyone know how to make a text area automatically change height based on the content that's pushed to the text area?

Re: [flexcoders] Call for Beta Participation

2007-02-19 Thread Tom Chiverton
On Friday 16 Feb 2007, Eric D Anderson wrote: * RTMP tunneling (RTMPT) What does this allow ? -- Tom Chiverton Helping to revolutionarily compete synergistic applications This email is sent for and on behalf of Halliwells LLP. Halliwells

[flexcoders] Datagrid question

2007-02-19 Thread VVV
Is it possible to suppress some of the data in certain rows in a datagrid. For Example: In a datagrid with 5 columns and 3 rows If Row1 has data, A, B, C, D, E Row2 has data, A, B, C, F, G Row3 has data X, y, Z, F, K Is it possible to suppress A,B,C from row 2 since, the data is the

Re: [flexcoders] How have you structured your Cairngorm data model?

2007-02-19 Thread Tom Chiverton
On Thursday 15 Feb 2007, [EMAIL PROTECTED] wrote: Lastly, how have you structured your Model? Do you have a best practice that you're working with that you prefer? We only structure it loosely - our normal project turn around time is under a month so anything more is overkill. We have a set

[flexcoders] Can we determine if a sort has been performed on a datagrid column?

2007-02-19 Thread newtoflexworld
Hi all, Is there any method in Flex 1.5 where we can find if a sort has been done on any column in a datagrid i.e. can we handle the sort event of a datagrid. Thanks Sweta

Re: [flexcoders] cairngorm event that will affect all models, where to put the logic.

2007-02-19 Thread Tom Chiverton
On Monday 19 Feb 2007, Grant Davies wrote: Ok... The controller should listen for the data change event and then dispatch the get other related data ? This should be in the controller which right now just maps an event to a command and does not other processing... No, the controller does

RE: [flexcoders] cairngorm event that will affect all models, where to put the logic.

2007-02-19 Thread Grant Davies
That's how I did it :) glad I put it in the correct place :) Grant ... b l u e t u b e i n t e r a c t i v e. .: grant davies .: 404.428.6839 (c) .: 708-983-1577 (F) [EMAIL PROTECTED] http://www.bluetube.com/bti -Original Message- From:

RE: [flexcoders] Re: Space between rows in the Datagrid

2007-02-19 Thread Dimitrios Gianninas
No expert, but you may have to extend the DataGrid and code it yourself. One way to to do it is to set the rowHeight value to 35 and then that will give u space... Not sure however if this is the effect you want. Dimitrios Gianninas RIA Developer Optimal Payments Inc. -Original

Re: [flexcoders] Datagrid question

2007-02-19 Thread xmrcivicboix
From the looks of it. Row1 and Row2 are entirely different rows with different data because of your 4th and 5th column. They have the same data but it doesn't mean the same. It's like saying Row1 is an Apple and Row2 is an Orange. Even though they're both sweet, we simply cannot suppress them to

[flexcoders] Question regarding Array creation from XML

2007-02-19 Thread Private Romeo
Assume I've got the following String variable: var dummyXml:String = itemsitemMonthJanuary/MonthSales1200/SalesPeople5/People/i temitemMonthFebruary/MonthSales1000/SalesPeople3/People/item /items; What is the easiest way to turn it into an Array/ArrayCollection? attachment:

[flexcoders] overriding DataGridAutomationImpl

2007-02-19 Thread Dimitrios Gianninas
Anyone extend the DataGridAutomationImpl class already? Trying to override some of its methods in order to see if I can change the way it indentifies rows, but I cant see my trace statements, so h... Dimitrios Gianninas RIA Developer Optimal Payments Inc. -- WARNING --- This

[flexcoders] Passing data between JavaScript and Flex apps via FABridge (Question!)

2007-02-19 Thread Private Romeo
I am trying to build a simple sample which shows how (xml) data gets passed via JavaScript to a Flex application where it is bound to a Flex Charting control. However, I am stuck at the data passing part. Here is the simple Flex Charting MXML Application: ?xml version=1.0 encoding=utf-8?

[flexcoders] Re: text area height

2007-02-19 Thread beecee1977
You'd be better starting a new thread, but it's pretty straight forward... Either on myText change event: myText.height = myText.TextArea.textHeight + BORDERS_HEIGHT or bind the height.. Haven't tested this, but it should work. Hope that helps. --- In flexcoders@yahoogroups.com, jeff noyes

RE: [flexcoders] Charting Tooltips do not show ColumnSeries name

2007-02-19 Thread Ely Greenfield
use displayName, not name. confusing, I know, but a fact of life. (name is a property defined and used by the core player displayList). Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Private Romeo Sent: Monday, February

[flexcoders] Re: text area height

2007-02-19 Thread beecee1977
By the way, for a TextArea control you won't need the .TextArea bit :- ) That was for a RichTextEditor. --- In flexcoders@yahoogroups.com, beecee1977 [EMAIL PROTECTED] wrote: You'd be better starting a new thread, but it's pretty straight forward... Either on myText change event:

RE: [flexcoders] Accessing a Flex Model via JavaScript (FABridge)

2007-02-19 Thread Ely Greenfield
The FABridge relies on the ability to introspect actionscript types and create proxies in javascript for classes, methods. and properties on the fly. Since Model is dynamic it can't be introspected by the current bridge behavior, so you can't manipulate it directly through the Bridge. You

[flexcoders] zip/unzip xml webservice result

2007-02-19 Thread amigo_fd
Hello, Any suggestions/ideas on how to zip a (xml-)string result of a webservice with ASP.NET2 C# and most importantly how to unzip in Flex ? I know Flex Dataservice has a built in system for this, but it's just too expensive ... For zipping in the webservice, I was thinking of using

[flexcoders] Re: zip/unzip xml webservice result

2007-02-19 Thread Paul DeCoursey
Have you tried enabling gzip compression on the server? The browser should handle the compression automatically in that case. --- In flexcoders@yahoogroups.com, amigo_fd [EMAIL PROTECTED] wrote: Hello, Any suggestions/ideas on how to zip a (xml-)string result of a webservice with

[flexcoders] Automated Email Reports with Flex

2007-02-19 Thread tyriker
We've built a Flex app to read XML data from an HTTPService, and display the data as a report (a table or some sort of chart) to the user. From within the app, the user can email the report to someone, (we use the method of converting the Flex components to an image, and then building an HTML file

RE: [flexcoders] Accessing a Flex Model via JavaScript (FABridge)

2007-02-19 Thread Private Romeo
Ely, Thanks for clarification. Maybe we are contemplating the wrong approach here and you can be of some more general help. We want to manipulate data bound to a Flex Charting Column Control from outside the Flash movie. Therefore we consider calling a method in the Flash movie via the

Re: [flexcoders] Question regarding Array creation from XML

2007-02-19 Thread Muzak
Depending on what you're trying to achieve, you may not need an Array/ArrayCollection and can use the XML/XMLList as is. Lets say you want to populate a DataGrid with your xml string, then the following will work just fine: ?xml version=1.0 encoding=utf-8? mx:Application

Re: [flexcoders] Re: zip/unzip xml webservice result

2007-02-19 Thread Troy Gilbert
Using server-base gzip compression is probably the best route, but I don't know if Flex's user agent that pulls the data (WebService, I guess) if it supports gzip'd streams. If it doesn't, you can do it manually with the ByteArray class. It has a compress and uncompress pair of methods that

[flexcoders] How do you document your Flex code?

2007-02-19 Thread app.developer
How do you document your Flex code? In CF some use FuseDocs or other solutions. What's yours? Precia

RE: [flexcoders] Call for Beta Participation

2007-02-19 Thread Matt Chotin
It allows RTMP connections to work through firewalls without having to resort to HTTP polling. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Monday, February 19, 2007 7:59 AM To: flexcoders@yahoogroups.com Subject: Re:

Re: [flexcoders] How do you document your Flex code?

2007-02-19 Thread Muzak
Flex 2.01 comes with ASDoc http://livedocs.adobe.com/flex/201/html/asdoc_127_1.html http://labs.adobe.com/wiki/index.php/ASDoc:Using_ASDoc regards, Muzak - Original Message - From: app.developer [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 19, 2007 7:13 PM

RE: [flexcoders] Flash 9 swf as RSL

2007-02-19 Thread Roger Gonzalez
What you're doing is a little odd, but you can build your own version of the MovieClipLoaderAsset class (which is what is used to do embedding of visual SWFs). Basically, embed the RSL SWF using [Embed(source='as3rsl.swf', mimeType='application/octet-stream')] public class MyBinaryBlob extends

Re: [flexcoders] How to get the current build options FB uses?

2007-02-19 Thread Derek Vadneau
Wow, I'm a moron. I mentioned I was executing the following from the command line: mxmlc -dump-config test-config.xml test.mxml I was actually running it from the commandline, i.e. from the command prompt (then a batch file). When I simply add the following to the Additional compiler arguments

[flexcoders] Re: text area height

2007-02-19 Thread Cato Paus
Hi I did have the same issue :) I solved it by using the mx:Text/ worked for me. Cato --- In flexcoders@yahoogroups.com, beecee1977 [EMAIL PROTECTED] wrote: By the way, for a TextArea control you won't need the .TextArea bit :- ) That was for a RichTextEditor. --- In

RE: [flexcoders] Automated Email Reports with Flex

2007-02-19 Thread Karl Johnson
This definitely sounds like something that should be done on the server side and not done using a client side application. How are you sending the emails now from the flex app? Calling a php app that creates the mail and sends it via SMTP? If so, then why not just put the automated job logic in

[flexcoders] How to fill datagrid with SOAP output?

2007-02-19 Thread suyash jape
Hi everyone. I have implemented a Flex web service client to access Python webservice( resultFormat is e4x): mx:Text text={wsXenmonService.getMetrics.lastResult} width=80% height=200/ .This is the incoming SOAP response to Flex in the lastresult object getMetricsResponse

[flexcoders] State changes w/ unloaded viewstack content

2007-02-19 Thread alanmorehead79
I am having trouble with trying to change the state of a panel that is inside of one of my viewstack pages. I have a details page that changes when the user logs in. If the user does not visit that details page before logging in, then I get errors. I know it is because the components that I am

[flexcoders] Choosing between viewstack and State any best practices?

2007-02-19 Thread Manuel Saint-Victor
When deciding between using the viewstack and using states if I plan to load in some modules is there a better way to go or some things to consider when making the decision? Mani

[flexcoders] Re: Automated Email Reports with Flex

2007-02-19 Thread Paul DeCoursey
Here's an idea Here are some assumptions: 1) a user sets this up to happen, so the setting is in a db or some other persistent storage. 2) you are relying on some part of Flex to generate the image you are trying to send Ok, so you have a cron job or windows task that requests a url on the

Re: [flexcoders] How to fill datagrid with SOAP output?

2007-02-19 Thread Paul J DeCoursey
{wsXenmonService.getMetrics.lastResult.result} that is the reference to the array in the response body. suyash jape wrote: Hi everyone. I have implemented a Flex web service client to access Python webservice( resultFormat is e4x): mx:Text text={wsXenmonService.getMetrics.lastResult}

[flexcoders] Re: Datagrid question

2007-02-19 Thread VVV
They are indeed two rows returned in a dataset. I just want to be able to present such that if column1, column2 and column3 information is same in two rows, I donot want to display the same information in the second row. So, Display will be like this for the above mentioned scenario; Col1

[flexcoders] Re: Choosing between viewstack and State any best practices?

2007-02-19 Thread Manuel Saint-Victor
You know what- I apologize for the post. I'm doing another word combo in google and having better yield. M On 2/19/07, Manuel Saint-Victor [EMAIL PROTECTED] wrote: When deciding between using the viewstack and using states if I plan to load in some modules is there a better way to go or

[flexcoders] Re: problem in parsing xml return by HTTPservice, could it be namespace issue

2007-02-19 Thread paulwelling
Hello, Has anyone found out why the parsing of a XML document fails when using a node's name (but succeeds when using an index [n]) when there is a namespace definition in the node..? var xml:XML = foo bargood/bar bar xmlns=http://model.gts.com;bad/bar /foo trace(xml..bar); //good good

[flexcoders] Exporting into CSV ?

2007-02-19 Thread Mrinmoyee Sanyal
How to export a Flex Chart and a Flex grid into CSV format? Thank you -MS

Re: [flexcoders] State changes w/ unloaded viewstack content

2007-02-19 Thread Ralf Bokelberg
Take a look at the creatioPolicy property of your viewStack Cheers Ralf. On 2/19/07, alanmorehead79 [EMAIL PROTECTED] wrote: I am having trouble with trying to change the state of a panel that is inside of one of my viewstack pages. I have a details page that changes when the user logs in.

Re: [flexcoders] State changes w/ unloaded viewstack content

2007-02-19 Thread Ralf Bokelberg
creationPolicy, sorry for the typo On 2/19/07, Ralf Bokelberg [EMAIL PROTECTED] wrote: Take a look at the creatioPolicy property of your viewStack Cheers Ralf. On 2/19/07, alanmorehead79 [EMAIL PROTECTED] wrote: I am having trouble with trying to change the state of a panel that is

[flexcoders] How can google index a Flex / SWF site ?

2007-02-19 Thread helihobby
Hello all, How can google and other search engines index a fully Flexed page ? It seems like Adobe must have a solution for SEO ( Search Engine Optimzation ) solutions for Flex as this can be a problem for this technology if no such Flex to HTML real time translation exists !!! Regards, Sean

[flexcoders] Cold Fusion/Cairngorm VO advice

2007-02-19 Thread ajudah987
I am new to Cairngorm and Flex. Looking over the store example and several others and they all seem to use Value Objects to pass and define the data on the client. I have a lot of data and structures to return to flex in my application. 1.Should i avoid returning data to Cairngorm via cfc

[flexcoders] SingleForm seperated by TabNavigator

2007-02-19 Thread Jeremy Crane
I have a form that is broken down into specific chunks using a TabNavigator. The problem I am having is selecting an item from a datagrid populates the form field, but if I Update without first selecting each Tab I get an error when my Validators are being processed. What can I do to correct

[flexcoders] How to programmatically change fill color (Flex Charting)

2007-02-19 Thread Private Romeo
I have a SolidColor fill for a ColumnSeries object: mx:ColumnSeries displayName=Staff yField=People id=peopleCol mx:fill mx:SolidColor id=peopleColColor color={_peopleColColor} / /mx:fill /mx:ColumnSeries In an ActionScript function I'd

[flexcoders] This would make me very happy, a datagrid on STERIODS!

2007-02-19 Thread boy_trike
Am I the only poor slob out here who does NOT want to sub-class a datagrid to be able to control for each cell the: • Background color • Font Color • Font Size • Font Weight Is it possible that Adobe (or someone who I would be happy to pay $$$ to) will come out with

[flexcoders] Re: State changes w/ unloaded viewstack content

2007-02-19 Thread alanmorehead79
That's exactly what I was looking for. Thank you --- In flexcoders@yahoogroups.com, Ralf Bokelberg [EMAIL PROTECTED] wrote: creationPolicy, sorry for the typo On 2/19/07, Ralf Bokelberg [EMAIL PROTECTED] wrote: Take a look at the creatioPolicy property of your viewStack Cheers Ralf.

[flexcoders] Re: Automated Email Reports with Flex

2007-02-19 Thread tyriker
Thanks for the responses guys. To further clarify the situation: The running of the reports all happens server-side with PHP scripts. The result is an XML file consisting of the data to display to the user. The method in which the data is displayed to the user is via a Flex app (it basically

Re: [flexcoders] Security sandbox violation and socket question

2007-02-19 Thread Ralf Bokelberg
It is possible, if aimexpress.oscar.aol.com http://aol.com:5190/ provides a crossdomain.xml Cheers Ralf. On 2/19/07, elad_nyc [EMAIL PROTECTED] wrote: Josh Tynjala created the amazing application to connect to AIM (see here:

RE: [flexcoders] This would make me very happy, a datagrid on STERIODS!

2007-02-19 Thread Matt Chotin
We are looking at this kind of enhancement for the next Flex release :-) But if folks want to create a subclass to share in the meantime that might be a good little project. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Calling LabelFunction on PrintDataGrid

2007-02-19 Thread bsdensmore
I am using the FlexPrintJob() class to print a datagrid. I'm using a custom component to create the Print view and inside I have a PrintDataGrid component. The dataProvider of this PrintDataGrid is filled with the dataProvider from my main application. I have a labelfunction that the main

Re: [flexcoders] This would make me very happy, a datagrid on STERIODS!

2007-02-19 Thread Ralf Bokelberg
How would you set these properties? Cheers Ralf. On 2/19/07, boy_trike [EMAIL PROTECTED] wrote: Am I the only poor slob out here who does NOT want to sub-class a datagrid to be able to control for each cell the: • Background color • Font Color • Font Size • Font Weight Is it possible that

Re: [flexcoders] How can google index a Flex / SWF site ?

2007-02-19 Thread Brendan Meutzner
A bit of light reading for you... http://tech.groups.yahoo.com/group/flexcoders/message/58926 Brendan On 2/19/07, helihobby [EMAIL PROTECTED] wrote: Hello all, How can google and other search engines index a fully Flexed page ? It seems like Adobe must have a solution for SEO ( Search

RE: [flexcoders] How can google index a Flex / SWF site ?

2007-02-19 Thread Jonathan Deven \(JD\) Alexander
Received. Shall review and reply tonight. Jon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan Meutzner Sent: Monday, February 19, 2007 2:49 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How can google index a Flex / SWF site ? A bit of

Re: [flexcoders] This would make me very happy, a datagrid on STERIODS!

2007-02-19 Thread Michael Schmalle
I have been experimenting with styleNames in itemRenderers. Which like he said would be; styleNameField would access the correct formating in the model. It does work. There are a couple of options, still in the labs. ;-) Peace, Mike On 2/19/07, Ralf Bokelberg [EMAIL PROTECTED] wrote: How

Re: [flexcoders] How to programmatically change fill color (Flex Charting)

2007-02-19 Thread Brendan Meutzner
Hey, peopleCol.setStyle(fill, new SolidColor(_peopleColColor, 1)); Brendan On 2/19/07, Private Romeo [EMAIL PROTECTED] wrote: I have a SolidColor fill for a ColumnSeries object: mx:ColumnSeries displayName=Staff yField=People id=peopleCol mx:fill

RE: [flexcoders] How to programmatically change fill color (Flex Charting)

2007-02-19 Thread Private Romeo
Thanks Brendan, Just found out that peopleCol.setStyle(fill, _peopleColColor); works, too, even if _peopleColColor is a simple String… Flex is… flexible! Rgds -Ralf From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan Meutzner Sent: Dienstag,

Re: [flexcoders] How to programmatically change fill color (Flex Charting)

2007-02-19 Thread Brendan Meutzner
Ralf, That's handy to know... just wouldn't be able to set the alpha value with the string implementation. Brendan On 2/19/07, Private Romeo [EMAIL PROTECTED] wrote: Thanks Brendan, Just found out that peopleCol.setStyle(fill, _peopleColColor); works, too, even if

RE: [flexcoders] How to programmatically change fill color (Flex Charting)

2007-02-19 Thread Private Romeo
True. I wonder why FB does not show the overloaded methods… Using a trial and error approach is not really satisfying… Visual Studio offers all overloaded methods… any idea why Builder does not? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan Meutzner

RE: [flexcoders] Datagrid question

2007-02-19 Thread Dimitrios Gianninas
You will have to code an ActionScript funtion/class to do this filtering for you and then pass the data to the grid for display. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] How to get the current build options FB uses?

2007-02-19 Thread Gordon Smith
Actually there's an issue here if you have Build Automatically enabled. If you use the -dump-config in the Flex Compiler options FB will rebuild in a loop forever. I think that you can work around this bug by dumping the config file to a directory outside the FlexBuilder project directory. -

RE: [flexcoders] This would make me very happy, a datagrid on STERIODS!

2007-02-19 Thread Gordon Smith
Bruce, is the problem that you haven't been able to figure out how to do this, that you don't think you should have to figure it out, that you're not clear on how to subclass, or something else? In general, the Flex framework team has been surprised at the resistance many developers have to

[flexcoders] Re: Automated Email Reports with Flex

2007-02-19 Thread Paul DeCoursey
I haven't really looked into this, but have you considered generating the reports as PDFs and then using Flash Paper to view them in Flex? There are a lot of good resources out there for generating PDFs, it's a very simple doc format. The part I'm not sure about it FlashPaper with Flex. Also

[flexcoders] Re: Help with webservice array and datagrid

2007-02-19 Thread dano_7
I forgot to mention that the error I am getting is just that the datagrid is showing up blank - I am not sure what is the root of the problem though. I would really appreciate any help with this. Thanks. --- In flexcoders@yahoogroups.com, dano_7 [EMAIL PROTECTED] wrote: Hello Everyone, I

[flexcoders] local configuration file options

2007-02-19 Thread Jaime Bermudez
So once again I trusted the livedocs, which told me: You can set the same options in multiple places and the Flex compilers use the value from the source that has the highest precedence. Apparently this doesn't work for the command-line application compiler b/c I have a local configuration file

Re: [flexcoders] Re: error when scroll datagrid vertically?

2007-02-19 Thread arpan srivastava
Hi Michael, Can you tell me how to check for post 60726? - Original Message From: michael_ramirez44 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 19, 2007 9:00:57 PM Subject: [flexcoders] Re: error when scroll datagrid vertically?

[flexcoders] Re: Generate Flex Forms on the fly

2007-02-19 Thread Anthony DeBonis
I just coded something like this - a adhoc custom form builder. I store the form definition in XML like xforms and at runtime I use the xml to create a Flex from on the fly. Create a empty mx:form tag with a ID For each element in your xml create a form item ( control) and do a addChild() to

[flexcoders] Quick Question

2007-02-19 Thread Kumar
Hi All, Just a quick one guys just had a little confusion in two statements below First: mx:Button x=23 y=242 label=Button click=myFunction() / Second: mx:Button x=23 y=242 label=Button click={myFunction()} / Both Buttons give the same result. Just a bit confused.

Re: [flexcoders] Re: zip/unzip xml webservice result

2007-02-19 Thread Claus Wahlers
Troy Gilbert wrote: Using server-base gzip compression is probably the best route, but I don't know if Flex's user agent that pulls the data (WebService, I guess) if it supports gzip'd streams. The Flash Player should handle compression over HTTP transparently. If it doesn't, you can do