[flexcoders] Problems getting started with flashvars and Application.application.parameters

2006-09-08 Thread yaagcur
I'm trying to get started with passing paramaters to a flex project initially based on livedocs Using the Application.application.parameters object and Using flashVars as source the mxml for project applicationParameters is mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Re: Problems getting started with flashvars and Application.application.paramete

2006-09-08 Thread yaagcur
--- In flexcoders@yahoogroups.com, Adam Dorritie [EMAIL PROTECTED] wrote: On 9/8/06, yaagcur [EMAIL PROTECTED] wrote: I'm trying to get started with passing paramaters to a flex project initially based on livedocs Using the Application.application.parameters object and Using

[flexcoders] Re: loading whole Application

2006-09-08 Thread yaagcur
to find this information in the API guide: http://livedocs.macromedia.com/flex/2/langref/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Tuesday, August 29, 2006 7:46 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: Problems getting started with flashvars and Application.application.paramete

2006-09-08 Thread yaagcur
( which i have no experience with) might be required. Is there another way via ColdFusion? --- In flexcoders@yahoogroups.com, Adam Dorritie [EMAIL PROTECTED] wrote: On 9/8/06, yaagcur [EMAIL PROTECTED] wrote: Thanks Adam - remarkably similar:) Not sure if that thread sorted Kyle out but I'm

[flexcoders] Re: loading whole Application

2006-08-29 Thread yaagcur
As a side note, is there anywhere in the documentation that defaults can be found. Not just for things like this but for component colors etc. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: ViewStack and Tabnavigator have creationPolicy=none by default. You can set

[flexcoders] Re: Identifying line series for datatip function

2006-08-19 Thread yaagcur
Thanks v much That set me on the correct path --- In flexcoders@yahoogroups.com, pasflex [EMAIL PROTECTED] wrote: try trace (LineSeries(h.element).yField) --- In flexcoders@yahoogroups.com, yaagcur agcur@ wrote: To elaborate I want to do something like public function dtFunc

[flexcoders] Anyways to have no Accordion panel showing?

2006-08-18 Thread yaagcur
i.e. just have the buttons showing -- 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 Links * To visit your group on the web, go to:

[flexcoders] Re: Identifying line series for datatip function

2006-08-18 Thread yaagcur
and the chartItemEvent also has not proven the answer to date --- In flexcoders@yahoogroups.com, yaagcur [EMAIL PROTECTED] wrote: On a line chart with multiple series, I wish to have a datatip function that differs according to which line is hit but I'm having difficulty identifying the property

[flexcoders] Re: Changing State via VBox

2006-08-17 Thread yaagcur
.. yaagcur [EMAIL PROTECTED] wrote: I have a vbox within an accordion which when I click on I require to change the stae of the application. I have tried mx:VBox click=currentState='Details' without luck I've played around with putting it in an outside function but cannot get the right

[flexcoders] Identifying line series for datatip function

2006-08-17 Thread yaagcur
On a line chart with multiple series, I wish to have a datatip function that differs according to which line is hit but I'm having difficulty identifying the property that would tell me that Any help much appreciated -- Flexcoders Mailing List FAQ:

[flexcoders] Changing State via VBox

2006-08-16 Thread yaagcur
I have a vbox within an accordion which when I click on I require to change the stae of the application. I have tried mx:VBox click=currentState='Details' without luck I've played around with putting it in an outside function but cannot get the right answer as of yet Any help much appreciated

[flexcoders] Re: Charting Dilemma....can anyone help?

2006-08-13 Thread yaagcur
I'm no expert but what I do for roll overs is import mx.charts.HitData; and in the function do something like private function formatDataTip(h:HitData) : String { return h.item.Publication etc. } --- In flexcoders@yahoogroups.com, Joshua Lingwai [EMAIL PROTECTED] wrote: Im

[flexcoders] Re: How do I implement HTML wrapper for loading several SWF files

2006-08-10 Thread yaagcur
Sorry Tom but I'm missing something here Do you mean the view source? That just gives me one object with embed src=explorer.swf --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 10 August 2006 00:52, yaagcur wrote: This looks like it might be what I'm

[flexcoders] Re: FlexBuilder refusing to Build newer versions of .mxml files !!!

2006-08-09 Thread yaagcur
Brian may have provided you with the solution but I had same problem and hacked it by creating a new mxml file and copy-pasting the code from the problem file. That always seems to work AndyC -- In flexcoders@yahoogroups.com, Brian Holmes [EMAIL PROTECTED] wrote: Mike, I had the same problem

[flexcoders] How do I implement HTML wrapper for loading several SWF files

2006-08-09 Thread yaagcur
I'm looking for the best way to manage several mxml applications on a web page - probably calling them via a menu One approach mentioned in the docs is Another approach to loading multiple small SWF files rather than one large one is to use the HTML wrapper to provide a framework for loading the

[flexcoders] Re: Avoiding Multiple Browser Windows/Tags -I s it possible?

2006-07-30 Thread yaagcur
Perfect. Thanks --- In flexcoders@yahoogroups.com, Xavi Beumala [EMAIL PROTECTED] wrote: Hi yaagcur, you can set it up in Firefox. Go to Tools - Options - Tabs and then check the radiobutton open links from other applications to the most recent tab/window. Hope that helps X. On 7/30

[flexcoders] Avoiding Multiple Browser Windows/Tags -I s it possible?

2006-07-29 Thread yaagcur
Each time I run a project it opens a new tab in Firefox. After a few of these are lined up, the project takes much longer to run Is there anyways to get round this in FlexBuilder so that the previous window is used and I dont have to keep closing tabs? cheers -- Flexcoders Mailing List FAQ:

[flexcoders] Problems binding results of mx:WebService

2006-07-20 Thread yaagcur
I have been using mx:RemoteObject to obtain data via a cfc with returntype query The result comes back as result = mx.collections.ArrayCollection with a list of Objects each with a set of properties which I turn into a bindable ArrayCollection via myAC = new

[flexcoders] Re: arrayCollection.addItemAt How to?

2006-07-08 Thread yaagcur
to declare. --- In flexcoders@yahoogroups.com, yaagcur agcur@ wrote: Thanks guys I think that what I actually needed is teams.setItemAt({FRANCHNAME:'All Teams',FRANCHID:'All'},0); This sets the extra row in the correct place and displays it as the default. I believe prompt would

[flexcoders] arrayCollection.addItemAt How to?

2006-07-07 Thread yaagcur
I return a recordset and create a new arraycollection just fine but wish to add an extra row at the top . The following just produces an [object, Object] result in the combo box I populate for the additional entry public function myFunction(event:ResultEvent):void { trace

[flexcoders] Re: arrayCollection.addItemAt How to?

2006-07-07 Thread yaagcur
property of ComboBox you can use to add that extra row. --- In flexcoders@yahoogroups.com, yaagcur agcur@ wrote: I return a recordset and create a new arraycollection just fine but wish to add an extra row at the top . The following just produces an [object, Object] result in the combo

[flexcoders] Re: CF Flash Remoting project results in Jrun servlet error

2006-07-05 Thread yaagcur
in wwwroot/test/bin/ Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Tuesday, 4 July 2006 11:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] CF Flash

[flexcoders] CF Flash Remoting project results in Jrun servlet error

2006-07-04 Thread yaagcur
If I attempt to set up a project using the above wizard, running the project in a browser e.g http://localhost:8500/test/bin/main.html produces the error 404 /test/bin/main.html. This applies even if I am not attempting any remoting e.g just putting a button on the page. The same project done

[flexcoders] Deploying to remote server - Blank page results F2B3

2006-05-21 Thread yaagcur
I have a project which I wish to test on the net Works OK locally but when I copy the html and swf files to my host all I get is a blank page. The files are up there for sure. I use mx:RemoteObject destination=ColdFusion... in the MXML but do not think this is problem as I get the same by

[flexcoders] Extra characters found after end of program (Flex 2 beta 1)

2006-03-19 Thread yaagcur
I've had this error a couple of times and have never been able to solve it There are no characters I can find after the mxml file referenced and the line number location listed is neither at end of the program nor contains irrelevant characters In the Problems panel the resource shows the folder

[flexcoders] Re: Extra characters found after end of program (Flex 2 beta 1)

2006-03-19 Thread yaagcur
I think I found it. there was an extra rightbrace in program Not at given line number though --- In flexcoders@yahoogroups.com, yaagcur [EMAIL PROTECTED] wrote: I've had this error a couple of times and have never been able to solve it There are no characters I can find after the mxml file

[flexcoders] Any way to combine clustered and stacked in a column chart (Flex 2) ?

2006-03-18 Thread yaagcur
It's all in the Subject Line An example would be a soccer players goals by year stacking how he scored e.g left foot,right foot, header alongside another stack of play scored from e.g open play, corner, penalty etc. Cheers -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Datagrid row highlighting and locking (Flex2)

2006-03-13 Thread yaagcur
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: Oh, I forgot to add, your renderer needs to implement the IDropInListItemRenderer interface. VBox implements=mx.controls.listclasses.IDropInListItemRenderer ... ... This gives error Interface method 'get

[flexcoders] Re: Datagrid row highlighting and locking (Flex2)

2006-03-12 Thread yaagcur
Okay, when you said color, I think this is what you were looking for: color={dataObject.totalsRow ? 'red' : 'white'} No it is the background I want changed. However the above example with color also causes the results to go so something is awry My cell renderer(careerRowRenderer) is this

[flexcoders] Re: Datagrid row highlighting and locking (Flex2)

2006-03-12 Thread yaagcur
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 3/12/06, yaagcur [EMAIL PROTECTED] wrote: So where exactly does your VBox display the data? You need to have something like a Label in there. mx:Label text={dataObject[DataGridListData(listData).dataField

[flexcoders] Datagrid row highlighting and locking (Flex2)

2006-03-11 Thread yaagcur
I have a datagrid where the final row is a sum of the others Is there anyway of setting its color to be different in order to highlight it. The dataprovider is an arraycollection Also is it feasible to lock the row a la columns? Cheers -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Datagrid row highlighting and locking (Flex2)

2006-03-11 Thread yaagcur
--- In flexcoders@yahoogroups.com, Manish Jethani thams for swift response manish Assuming the special row in the data provider is marked with a flag, you can use conditional formatting, like so: !-- cell renderer -- VBox backgroundColor={dataObject.totalsRow ? 'red' : 'white'} This

[flexcoders] Re: Flex and URL variables

2006-03-05 Thread yaagcur
http://livedocs.macromedia.com/flex/20beta1/docs/1300.html covers this topic However, although it works if you pass the URL as a .swf, if you try .html (which is presumably what you want) then it fails Hope someone can explain how to do this in Flex 2.0 as it would be a great feature Andy

[flexcoders] How do I send checkbox results via cfc (flex 2)

2006-02-05 Thread yaagcur
I have many checkboxes whose selections I want to send to an MS SQL database with datatype fields , bit (0 or 1) but am having a couple of problems A ticked checkbox provides a cb1.selected = true An unchecked gives cb2.selected = null (although I - presumably mistakenly - thought from the docs

[flexcoders] Re: Problem creating Listener (Flex 2)

2006-01-31 Thread yaagcur
--- In flexcoders@yahoogroups.com, Matt Horn [EMAIL PROTECTED] wrote: On 1/27/06, yaagcur [EMAIL PROTECTED] wrote: I currently have a tile list which, when clicked on, correctly calls a function mx:TileList id=myTiles dataProvider={myData} listItemRenderer=ThumbNail itemClick

[flexcoders] Problem creating Listener (Flex 2)

2006-01-27 Thread yaagcur
I currently have a tile list which, when clicked on, correctly calls a function mx:TileList id=myTiles dataProvider={myData} listItemRenderer=ThumbNail itemClick=imageClicked() / I wish to alternatively set up a listener mx:TileList id=myOtherTiles dataProvider={myData}

[flexcoders] Comment colors flex 2

2006-01-20 Thread yaagcur
Is there any way to set up unique colors for different types of comments which I would like to add e.g Original designers Added Clarification To Do list -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Errors in lines that do not exist (Flex 2)

2006-01-20 Thread yaagcur
I have just returned to a project which I thought was working to date but am getting the followin errors Unexpected token Line 496 Expecting rightbrace before end of program Line 1787 The file is 171 lines in toto Not sure what unexpected token is and all leftbraces appear to have corresponding

[flexcoders] Re: Sourcing an image using a variable in URL (Flex 2)

2006-01-20 Thread yaagcur
(photoID)}.jpg / -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Friday, January 20, 2006 10:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Sourcing an image using a variable in URL (Flex 2) I have a line

[flexcoders] Translating Checkbox true/false results (Flex 2.0)

2006-01-15 Thread yaagcur
I am using the results of a form to update a database via a coldfusion cfc using a webservice and mx:model How do I best go about translating the result of checkboxes e.g red.selected = true, large.selected=false into the 0's an 1's needed for the corresponding database columns? --

[flexcoders] Re: How to reference fields in

2006-01-14 Thread yaagcur
Thanks Matt Touch wood its working now --- In flexcoders@yahoogroups.com, yaagcur [EMAIL PROTECTED] wrote: I have a parent mxml which includes a child MXML included in it 'inputForm' In the main mxml is it possible to refer to fields in the child I want to refer to the textfield

[flexcoders] Missing posts

2006-01-12 Thread yaagcur
Unless I'm blind, a couple of posts I made on the 11th haven't yet appeared on the archive, although there are some there posted a day later and they do appear on the yahoo groups site? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Re: Flex webservice to CFC

2006-01-07 Thread yaagcur
Try plain text (no quotes) - worked for me --- In flexcoders@yahoogroups.com, kjlinboomer [EMAIL PROTECTED] wrote: Hello, I am trying to call a CF component from flex using mx:WebService. I am having trouble sending arguments to the component. I get an Array of input arguments

[flexcoders] Re: Data Grid headers

2005-12-21 Thread yaagcur
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Friday, December 16, 2005 2:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Data Grid headers Couple of points a) It seems to me that if I

[flexcoders] Re: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread yaagcur
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Sunday, December 18, 2005 2:47 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Why is editable=true necessary to allow cellPress events (2.0) Or am I mistaken? No big deal

[flexcoders] Re: Why is editable=true necessary to allow cellPress events (2.0)

2005-12-20 Thread yaagcur
.. http://livedocs.macromedia.com/flex/15/asdocs_en/ Click on DataGrid Scroll Down to the end of the page Look at the second sample ... I bet you didnt bother to check the docs first! yaagcur wrote: Really? I just checked my application editable=false clicking gets no action

[flexcoders] Passing request data into Flex applications

2005-12-19 Thread yaagcur
I raised this in the livedocspage but have not received an answerCan parameters be passed via an html rather than swf URL?e.g I would like to have something likehttp://www.mysite.com?player=Jeter as a link to lead to a pagerelating to that player's data -- Flexcoders Mailing List FAQ:

[flexcoders] Re: DataGrid rowcount (2.0)

2005-12-19 Thread yaagcur
having to add an extra row to take account of the header seems counter-intuitive It still leaves a blank row unless I turn the scrollbar off --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 12/19/05, yaagcur [EMAIL PROTECTED] wrote: I have a datagrid which I

[flexcoders] Re: Data Grid headers

2005-12-18 Thread yaagcur
ModelLocator { public static var rootObj; public static var data:Array; } On 12/16/05, yaagcur [EMAIL PROTECTED] wrote: Couple of points a) It seems to me that if I textAlign=right a DataGridColumn then the column header automatically follows that designation even

[flexcoders] Why is editable=true necessary to allow cellPress events (2.0)

2005-12-18 Thread yaagcur
Or am I mistaken? No big deal but what is the common functionality Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/KIlPFB/vlQLAA/TtwFAA/nhFolB/TM

[flexcoders] dateChooser (2.0) start date

2005-12-18 Thread yaagcur
How would I go about extending back the earliest date the calendar can access? The default just goes back to 1900 Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.

[flexcoders] DataGrid rowcount (2.0)

2005-12-18 Thread yaagcur
I have a datagrid which I want populated by data which I know has 20 records If I set rowcount=20 , I get 19 showing with a scroll bar. Scrolling down gives me the final row of data plus another empty row Setting vScrollPolicy=off just gives 19 rows Am I doing something wrong or is this a bug?

[flexcoders] Data Grid headers

2005-12-16 Thread yaagcur
Couple of points a) It seems to me that if I textAlign=right a DataGridColumn then the column header automatically follows that designation even if I want it to be textAlign=center and have entered it so in DataGrid b) How can I have two rows of headers so that the lower row can be a subdivision

[flexcoders] Re: Adding Item to a ComboBox

2005-11-19 Thread yaagcur
++) { cities.push({CITY:myObj.getItemAt(i)}) } and got runtime error Error #1006: Call attempted on an object that is not a function. --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 11/18/05, yaagcur [EMAIL PROTECTED] wrote: My attempts to date have

[flexcoders] Re: Adding Item to a ComboBox

2005-11-18 Thread yaagcur
(ContactService.getCities.result)}); // The function to change the collection, and therefore the Array. myIList.addItemAt(All Cities, 0); } Any chance you could point out the errors in the above function --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 11/18/05, yaagcur [EMAIL PROTECTED] wrote

[flexcoders] Re: Adding Item to a ComboBox

2005-11-17 Thread yaagcur
and if so how 4) Would I be better off going back to using a function and ,if so, how does the post in my original code need to be amended Thansk for any help --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 11/17/05, yaagcur [EMAIL PROTECTED] wrote: Though I note

[flexcoders] Re: Flex Charting Components 2 distribution

2005-11-16 Thread yaagcur
Could I put in a plea for an all-in-one price or at least making the combined cost $1000 It seems to me that charts are fundamental to Flex - many of your house examples incorporate them - and to treat something so core as an add-on is a bit like buying a car for $10,000 and then being told the

[flexcoders] Adding Item to a ComboBox

2005-11-16 Thread yaagcur
I currently successfully webservice in a list of schools which I place in a Combobox The key code being a)mx:operation name=getCities b)mx:ArrayCollection id=cities source={mx.utils.ArrayUtil.toArray(ContactService.getCities.result)} / c)mx:ComboBox id=cities_cb dataProvider={cities}

[flexcoders] Internal Build problem (FLEX 2)

2005-11-11 Thread yaagcur
I am getting a problem An internal build error has occured Checking the error log it states Warning: valueOf is not a function What should I be looking for I have no valueOf string in the code Yahoo! Groups Sponsor ~-- Fair play? Video games

[flexcoders] Re: Reverse yaxis (FLEX 2)

2005-11-11 Thread yaagcur
[mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Friday, November 04, 2005 9:24 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Reverse yaxis (FLEX 2) Importance: High I want to do a chart which is a ranking of team's position (y axis) in a league over time (x-axis). I would like

[flexcoders] Chart types (Flex 2)

2005-11-11 Thread yaagcur
I am looking to present graphically data on a list of baseball players longevity at a club e.g all New York Yankees players who were at the club at a particular date say 1960 would show those who had careers from 1955-1961 and 1960-1970 etc. I want to have the y axis listing the player names and

[flexcoders] Re: Yahoo Maps, Flex 2 option

2005-11-08 Thread yaagcur
Type annotation is not a compile-time constant:YahooMap looks like Flex error 1046 --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Can you paste the error exactly? - Original Message - From: yaagcur [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent

[flexcoders] Yahoo Maps, Flex 2 option

2005-11-05 Thread yaagcur
I have the API working fine on 1.5 but although Yahoo quote you'll need Macromedia Flex 1.5 or higher I get a type annotation error when attempting in the 2 alpha I'm guessing the classes need to be AS3 compliant and we need to wait for Yahoo to provide an update Or is there anything that can be

[flexcoders] Reverse yaxis (FLEX 2)

2005-11-04 Thread yaagcur
I want to do a chart which is a ranking of team's position (y axis) in a league over time (x-axis). I would like to reverse the y axis so that if a team is improving over time (say from rank 4 to rank 2) the graph shows an upward movement rather than the downward movement that results from a

[flexcoders] Re: problem adapting to FLEX 2 on defining variables

2005-11-03 Thread yaagcur
collection that worked and assign to the DataGrid? That's what DataGrid expects now. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Wednesday, November 02, 2005 8:06 AM To: flexcoders

[flexcoders] Re: FLEX 2. What happens on Alpha expiry

2005-11-03 Thread yaagcur
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: 02 November 2005 15:50 To: flexcoders@yahoogroups.com Subject: [flexcoders] FLEX 2. What happens on Alpha expiry My copy expires in less than four months well before projected product

[flexcoders] FLEX 2. What happens on Alpha expiry

2005-11-02 Thread yaagcur
My copy expires in less than four months well before projected product release For those not selected for the beta program will the alpha be extended? Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back!

[flexcoders] Re: Referencing a combobox label (FLEX 2)

2005-10-31 Thread yaagcur
. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Friday, October 28, 2005 3:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Referencing a combobox label (FLEX 2) I'm still struggling

[flexcoders] Re: Referencing a combobox label (FLEX 2)

2005-10-26 Thread yaagcur
Of yaagcur Sent: Wednesday, October 26, 2005 11:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Referencing a combobox label (FLEX 2) I am trying to get the value selected from an extended combobox into a model which I subsequently use as a parameter in a webservice The relevant

[flexcoders] Re: Flex 2. Chart Installation problems

2005-10-25 Thread yaagcur
- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Sunday, October 23, 2005 5:39 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 2. Chart Installation problems Sorry if this a repost but cannot see it on the list from yesterday

[flexcoders] Flex 2. Chart Installation problems

2005-10-23 Thread yaagcur
Sorry if this a repost but cannot see it on the list from yesterday I've extracted the charts.swc and categories.xml to the appropriate directories and copied the BarBasic.mxml and regiondata.xml files from the chartexplorer to a new project However when I run the mxml with no changes I just

[flexcoders] Re: Hiding a datgrid column

2005-10-12 Thread yaagcur
] On Behalf Of yaagcur Sent: Tuesday, October 11, 2005 2:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Hiding a datgrid column Is there any wasy that a user can determine which columns are shown in a datagrid via, say, a check box control -- Flexcoders Mailing List

[flexcoders] Hiding a datgrid column

2005-10-11 Thread yaagcur
Is there any wasy that a user can determine which columns are shown in a datagrid via, say, a check box control Yahoo! Groups Sponsor ~-- Most low income households are not online. Help bridge the digital divide today!

[flexcoders] Re: Sorting a datagrid by column in a numeric way...?

2005-10-07 Thread yaagcur
I use this function. I think it was from this list function sortGrid(a, b, index) { var result; var field; var field = yourDataGrid.columns[index].columnName; var i1 = a[field]; var i2 = b[field];

[flexcoders] Re: Charting

2005-10-07 Thread yaagcur
If anyone is interested.. I sorted it Forgotten to add a line in the function chartArray=new Array(); --- In flexcoders@yahoogroups.com, yaagcur [EMAIL PROTECTED] wrote: Bit Johnny-come-lately, but I'm trying to do the same thing Not from a computing background, but did something similar

[flexcoders] Cannot get Remote objects connection

2005-10-03 Thread yaagcur
Did a quick search of archives without luck but bear with me if this has already been answered I am trying to get data returned from a CFC on a remote machine (the same problem applies on a local machine) I have done this successfully with Flash thus

[flexcoders] Re: Cannot get Remote objects connection

2005-10-03 Thread yaagcur
-config, see what that shows, in the flex server command window, or in the logs. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcur Sent: Monday, October 03, 2005 9:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders

[flexcoders] Re: Cannot get Remote objects connection

2005-10-03 Thread yaagcur
] wrote: On 10/3/05, yaagcur [EMAIL PROTECTED] wrote: Did a quick search of archives without luck but bear with me if this has already been answered I am trying to get data returned from a CFC on a remote machine (the same problem applies on a local machine) I have done this successfully