Re: [flexcoders] What is the substitute for eval() now?

2006-10-11 Thread Ralf Bokelberg
You need to roll it on your own. You could split the given path into its parts and try to evaluate one piece after the other until you come to the end. public function eval( scope : Object, path : String ) : Object { if( path == null ) return null; var result : Object = scope;

[flexcoders] Re: Actual screen X and Y co-ordinates of a container

2006-10-11 Thread pk_wasp
I guess my question was badly worded lol basically want to know the X and Y co-ordinates of a container relative to the application for example below (quick quesdo code) the x,y co-ordinates for box at the moment it'll be 0,0 coz its relative to its container and its layout is handle by the

Re: [flexcoders] ant and mxmlc

2006-10-11 Thread Paul Spitzer
you might try adding the entire lib directory... property name=flex.lib value=${flexsdk.home}/frameworks/libs/ ... arg line=-library-path+='${flex.lib}'/ I'm thinking you might need the rpc lib but I also think you'd get a compile error if that was the case. I've experienced some weird things

[flexcoders] Data binding issue

2006-10-11 Thread John Mazzocchi
Has anyone had this warning come up? What did you do about it? Data binding will not be able to detect changes when using square bracket operator. For Array, please use ArrayCollection.getItemAt() instead. I don't have an Array but an XMLList(Collection) ... in my MXML, I tried replacing

Re: [flexcoders] auto update of flash

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 01:45, Matt Chotin wrote: Do you have express install checked on your Flex Builder compiler options? It is checked by default. What does that do ? What are the corresponding options for mxmlc and/or the HTML wrapper ? -- Tom Chiverton Helping to challengingly

Re: [flexcoders] Cairngorm commands - best practise

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 02:12, Robin Burrer wrote: However I also want to send the userID when I do my server request. Should the SearchDatabaseCommand get the userID from the model or from I reasoned that passing any parameters not connected with what to do was no business of the

Re: [flexcoders] Re: ant and mxmlc

2006-10-11 Thread Tom Chiverton
On Tuesday 10 October 2006 22:26, Douglas Knudsen wrote: 'unknown destination ColdFusion'. What am I missing in my target? note that FlexUtilities.swc is just a util 'class' and is not invoked on app init at all. You don't appear to have a --services argument pointing at the ColdFusion

Re: [flexcoders] mxmlc -increment not working.

2006-10-11 Thread Ralf Bokelberg
Not sure, if this answered or not, but finally i found my old target. It looks like this: target name=compile exec executable=${java.home}/bin/java.exe failonerror=true arg value=-Dapplication.home=${flex.home}/ arg value=-Xmx384m/

Re: [flexcoders] Arrays/DataProviders/CFCs - Need a workaround.

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 05:12, lostinrecursion wrote: attempt to get the DataGrid that I am using to display an Array to update when I add an item. The DataGrid can't display Array. You will need to create a new ArrayCollection from the Array and use that as the datasource instead. Can

Re: [flexcoders] my setter is calling my getter....

2006-10-11 Thread Ralf Bokelberg
Oh no, i just tested it on my own and it seems like the new player works differently from the old one. So this is not the problem here. Ralf. On 10/11/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: I think, this is build into the player, because setters can be used in expressions like this:

Re: [flexcoders] my setter is calling my getter....

2006-10-11 Thread Ralf Bokelberg
I think, this is build into the player, because setters can be used in expressions like this: result = (mysetter += 123) Cheers, Ralf. On 10/11/06, Diego Guebel [EMAIL PROTECTED] wrote: try this: [Bindable] private var _someVar:Object; public function set someObject(value:Object):void {

[flexcoders] [Flex2, Cairngorm] Several Cairngorm instances in one app...?

2006-10-11 Thread Thomas Rühl
Hello flexcoders, I am currently building a complex Flex application that has several views which differ significantly and are to be displayed depending on the user type. This user type is being evaluated at runtime by a login component. For faster development, and the initial rather simple

Re: [flexcoders] Re: [DateChooser] Emphasize specific days

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 04:56, Andrew D. Goodfellow wrote: I'm really interested in this type of thing as well. Searching the list I see one other question about this with no response from Syed Mazhar Hasan Qadri on August 6. Maybe people got tired of pointing people at the livedocs web

Re: [flexcoders] Cairngorm commands - best practise

2006-10-11 Thread hank williams
So we have Tom saying do it in the delegate and Bjorn saying do it in the command. Any tie breakers? Hank On 10/11/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 11 October 2006 02:12, Robin Burrer wrote: However I also want to send the userID when I do my server request. Should

Re: [flexcoders] Cairngorm commands - best practise

2006-10-11 Thread Ralf Bokelberg
My delegates don't know about the model locator, but my commands do. So I vote for commands. Cheers, Ralf. On 10/11/06, hank williams [EMAIL PROTECTED] wrote: So we have Tom saying do it in the delegate and Bjorn saying do it in the command. Any tie breakers? Hank On 10/11/06, Tom

[flexcoders] set focus on another control after tabbing out of last datagrid column

2006-10-11 Thread bhaq1972
in my example, i would like to setfocus onto a button (btn1) after tabbing out of the last datagridcolumn (instead of tabbing thru every row) mx:DataGrid id=dg dataProvider={dp} editable=true mx:columns mx:DataGridColumn dataField=Company editable=false/ mx:DataGridColumn

[flexcoders] HTML Like clickable Image Map in Flex 2.0 - ???

2006-10-11 Thread dzeitman
Has any built a flex ap that mimics a html imagemap? Looking to try to leverage existing html (as xml snip) map name=FPMap0Map id=FPMap0Map area shape=poly coords=418,2,410,27,417,51,439,18,430,3 onclick=showSalesRep('ME') / area shape=poly

[flexcoders] CheckBox itemEditor in DataGrid behaves erratic

2006-10-11 Thread iko_knyphausen
This one is really odd... I have a DataGrid, which has the selectedItem of another grid (parent-grid)as a dataProvider. The "child"-grid hasa checkbox control as renderer and editor.It does perform nicely in the sense that when I change the selection of the "parent"-grid,all sub-records with

[flexcoders] Catching selectedIndex in ItemRenderer

2006-10-11 Thread Derrick Grigg
I have an itemrenderer in which I want to change the visual state based on whether or not the row the itemrenderer is in is selected. Aside from adding a 'change' event listener to the 'parent.parent' (datagrid) in the itemrenderer and then comparing the datagrid.selectedIndex against the

[flexcoders] DataGrid change events

2006-10-11 Thread Adam Royle
Hi all, I have implemented a "select-all" functionality for my datagrid when the user presses Ctrl-A. It works, however the change event is not being dispatched when I manually set the selectedIndices, therefore my listeners a not being notified the selection has changed. Is this a bug,

[flexcoders] Re: sprites in MXML

2006-10-11 Thread flexlearner
Yes, Thanks Dan. I perfectly understand that Sprite class should extend UIComponent class to get added in UIcomponent by AddChild method. But its actually vice versa. But then How should try all those samples which comes in Flex builder help and extends the class sprite. What I believe is if

[flexcoders] TabBar - selected tab text pushed down

2006-10-11 Thread Jimmy Lindh
The TabBar control seem to have a very annoying little feature hardcoded in the component, namely that the text in the selected tab is pushed down 1 pixel. Any ideas on how to disable this feature? Thanks Jimmy Lindh -- Flexcoders Mailing List FAQ:

[flexcoders] DateField as itemEditor problem

2006-10-11 Thread Max
Hello! I set a DateField ad itemEditor for a DataGridColumn. What I did into my as code is something like this: myColumn = new DataGridColumn(); myColumn.itemEditor = new ClassFactory(mx.controls.DateField); myColumn.rendererIdEditor = false; In this way I'm able to display the DateField when I

[flexcoders] Re: Horizontal alignment of inline checkbox in datagrid component

2006-10-11 Thread haravallabhan
Hi, You can use HBox component or anoother layout compnent to say, inside the itemRenderer like mx:DataGridColumn width=65 headerText=Member dataField=member textAlign=center mx:itemRenderer mx:Component HBox mx:CheckBox labelPlacement=left/ /HBox

Re: [flexcoders] var in Loop

2006-10-11 Thread Mayur Bais
yeah thanks it was helpfull :) On 10/11/06, EECOLOR [EMAIL PROTECTED] wrote: Hello, Its not that the concept of the for..in loop has changed (i think), but the way classes are defined internally has changed. Properties and methods ofclasses that are defined inside the class definition

[flexcoders] Re: sprites in MXML

2006-10-11 Thread flexlearner
Yes, Thanks Dan. I perfectly understand that Sprite class should extend UIComponent class to get added in UIcomponent by AddChild method. But its actually vice versa. But then How should try all those samples which comes in Flex builder help and extends the class sprite. What I believe is if

[flexcoders] Re: unable to resolve 'image filename' for transcoding

2006-10-11 Thread iko_knyphausen
Thanks, Tom. I saw your post only after I sent my own self- response ... must somehow be a timing issue with eGroups. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 10 October 2006 00:25, Iko Knyphausen wrote: [Embed(source=layout1.png)] The image

[flexcoders] Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-11 Thread Sajid Hussain
Hi to all . I am new to flex Development ,I am stuck with following conceptsI have one webservice method who is returning DataSet ,What will be the best way to retrive Datafrom it I m getting player parsing error Is necceasry to get Data as Custom Objects from .net to flex I saw one

[flexcoders] Using Checkbox inside a DataGrid

2006-10-11 Thread haravallabhan
Hi, I am trying to add check boxes to each row of a data grid for data management. I did add the check boxes to the Datagrid using itemRenderer. But I am not able to get the value of the datagrid row when I click the checkbox. I should get a ID or the data in a row in which the checkbox is

[flexcoders] AS3 substitute for UIObject.destroyObject() ?

2006-10-11 Thread leo4beer
Hi, I'm migrating code from Flex 1.5 to Flex 2. I've noticed the UIObject.destroyObject() no longer exists in AS3 What should I use instead? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] how to make a hyperlink in text call a function

2006-10-11 Thread hank williams
I want to have a block of text that executes a function when the user clicks the hyperlink. Could someone give me an example or point me to the proper formatting. Thanks Hank -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: flex2 on a mac - compile

2006-10-11 Thread michaelrohner
Hi, I finally can compile an .mxml file into a swf file I put the flex folder into the user folder and the following code on the command line (terminal) [laptop-Rohner:~] mrohner% flex/flex_sdk_2/bin/mxmlc flex/flex_sdk_2/myFirst.mxml then I got: Loading configuration file

[flexcoders] Re: Arrays/DataProviders/CFCs - Need a workaround.

2006-10-11 Thread lostinrecursion
Tom, That sounds great and I am aware of how to do that very thing, but I am not sure where to place this new found assignment. For example, I have a School class, with an array of Student objects called students, which is populated a CFC. The CFC brings all the data back fine via my students

[flexcoders] strange behaviour of List

2006-10-11 Thread Robert Wąs
I have editor of xml content with remove button. Simple code with click handler: delete offfers.offer.(@id=itemsList.selectedItem.id)[0] where offer is XML type, itemsList is List type widget Problem is that delete removes xml node and ALL values of id attributes from my xml tree? What happen?

Re: [flexcoders] mxmlc -increment not working.

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 10:39, Ralf Bokelberg wrote: Works like a charm, though i'd prefer not to see these .cache files in my source directory. Unfortunately this doesn't seem to be configurable. That would be nice - have you stuck it through adobe.com/go/wish ? -- Tom Chiverton

Re: [flexcoders] how to make a hyperlink in text call a function

2006-10-11 Thread Prakaz
You can accomplish this in Flex 2 by using the TextEvent class: http://livedocs.macromedia.com/flex/2/langref/flash/events/TextEvent.html from livedocs: import flash.text.TextField;import flash.events.TextEvent; var tf:TextField = new TextField();tf.htmlText = a href=''Click Me./a;

[flexcoders] Re: Arrays/DataProviders/CFCs - Need a workaround.

2006-10-11 Thread lostinrecursion
There is nothing sweeter than answering my own question: Here's the solution. After I assign the event.result to my model property, (i.e. school = event.result) I then manually call a method I created called convert()(i.e. school.convert) which basically just assigns the students Array as an

Re: [flexcoders] Arrays/DataProviders/CFCs - Need a workaround.

2006-10-11 Thread Paul Hastings
var originalNameOfArray:ArrayCollection=new ArrayCollection(newNameOfArray); tom, does that setup any bindings between the old new arrays? i ask because i have an ArrayCollection created that way to track changes to data (dragging dropping stuff all over the place) that seems to lose rows as

[flexcoders] Re: Effects for background of TextInput

2006-10-11 Thread joshuajnoble
Ah, I think I should have been more specific. I need this to be like a two second color transform. From green to white. I tried a few different approaches yesterday: 1. write an onTweenUpdate function that slowly returns higher and higher hex values through some wierd math 2. try to get a

[flexcoders] Re: Effects for background of TextInput

2006-10-11 Thread joshuajnoble
Sorry, my post got cut off (firefox on mac bug) here's the rest of the code: private function getRGBArray(hex:Number):Array { // get red by shifting hex effectively rounding it down var r = (hex16); var remains = hex - (r16);

[flexcoders] Re: Format a datatip.

2006-10-11 Thread jnewport
Here is the final code. It may not be the most efficient code, but it works. I can't show the entire application code, but you should get teh general idea from reading through the code. Thank you Ely and everyone else for all of your help, you saved me some late nights. Its funny how you get so

[flexcoders] setting an external f9 swf's library symbols width

2006-10-11 Thread Bart Wttewaall
Hi folks,This might be a basic question that might already have passed this list, but for the life of me I couldn't find any good keywords to search on. Help me out please!I'm using an external Flash9 swf as an assets-library. In the code below I created a class for one of the assets so I can

Re: [flexcoders] Arrays/DataProviders/CFCs - Need a workaround.

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 14:20, Paul Hastings wrote: does that setup any bindings between the old new arrays? i ask because i have an ArrayCollection created that way to track changes to data (dragging dropping stuff all over the place) that seems to lose rows as the original data is

Re: [flexcoders] Re: ant and mxmlc

2006-10-11 Thread Douglas Knudsen
shazam!! that did it! Was wondering about that.Now to figure out how to get all the files that go with a Flex app that only appear in the bin dir in Flex builder. history.js, history.swf, AC_OETags.js, etc. DKOn 10/11/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 10 October 2006 22:26,

Re: [flexcoders] Arrays/DataProviders/CFCs - Need a workaround.

2006-10-11 Thread Douglas Knudsen
On 10/11/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 11 October 2006 05:12, lostinrecursion wrote: attempt to get the DataGrid that I am using to display an Array to update when I add an item.The DataGrid can't display Array.You will need to create a new ArrayCollection from the

[flexcoders] Re: FileUpload on HTTPService (Flex 2.0)

2006-10-11 Thread ben.clinkinbeard
As Carson mentioned, FileReference is the only way to upload a file. However, you can send additional params (your form field values) along with the file. var params:URLVariables = new URLVariables(); params.firstName = firstNameField.text; var request:URLRequest = new

Re: [flexcoders] Re: ant and mxmlc

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 15:27, Douglas Knudsen wrote: Now to figure out how to get all the files that go with a Flex app that only appear in the bin dir in Flex builder. history.js, history.swf, AC_OETags.js, etc. The idea is to just copy the contents of the bin dir up to the web server,

RE: [flexcoders] 2 FDS Samples break when production-mode is set to true

2006-10-11 Thread Kumaran Nallore
Hi Douglas, I am able to reproduce this issue locally. This is definitely a bug and I will log it. Thanks for finding and reporting this issue. -kumaran From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas McCarroll Sent: Tuesday, October

Re: [flexcoders] Arrays/DataProviders/CFCs - Need a workaround.

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 15:32, Douglas Knudsen wrote: ugh, I beg to differ on this one. A datagrid can take a Array object in the dataProvider. shrug Fair enough. Never seen it work when using a plain Array though. -- Tom Chiverton Helping to heterogeneously optimize eligible

Re: [flexcoders] how to make a hyperlink in text call a function

2006-10-11 Thread hank williams
Thanks a lot! Just what I needed.Regards,HankOn 10/11/06, Prakaz [EMAIL PROTECTED] wrote: You can accomplish this in Flex 2 by using the TextEvent class: http://livedocs.macromedia.com/flex/2/langref/flash/events/TextEvent.html from livedocs: import flash.text.TextField;import

Re: [flexcoders] Re: ant and mxmlc

2006-10-11 Thread Douglas Knudsen
the bin directory only exists in Flex builder. We use CVS to store code, the bin dir is not stored in CVS either. My objective is to fetch the code from CVS, compile, then copy it to the respective server, all in one Ant build file. Got this working fine now thanks to a few thread around here.

[flexcoders] Re: set focus on another control after tabbing out of last datagrid column

2006-10-11 Thread bhaq1972
any ideas? anyone thought i'd create a small testbed. to demo my issue mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Text text=I want to set focus into the hello button after i tab out of the last column of every row/ mx:DataGrid id=dg editable=true mx:columns mx:Array

[flexcoders] datagrid editeditemposition bug ?

2006-10-11 Thread bhaq1972
if you set the editedItemPosition first... tabbing doesnt work straight away. i have to hit the tab key THREE time before tabbing starts to work. is there a workaround? example mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Button label=set edited item position 1,1

[flexcoders] Render data in Text Area

2006-10-11 Thread KP
Below is the code for HTTP service which is given in example docs. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml layout=absolute creationComplete=feedRequest.send() mx:HTTPService id=feedRequest url="" useProxy=false /

[flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-11 Thread bill_sahlas
I'm wondering what sort of parsing/runtime errors your seeing? --- In flexcoders@yahoogroups.com, Sajid Hussain [EMAIL PROTECTED] wrote: Hi to all . I am new to flex Development ,I am stuck with following concepts I have one webservice method who is returning DataSet ,What will be

Re: [flexcoders] Re: ant and mxmlc

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 16:22, Douglas Knudsen wrote: Being a CF shop, we are having to adapt to the 'build' world that is really not neccessary in CF land as cfms are compiled on the fly. Of course we could purchase FDS and use the compile on the fly featurelot of $$ for that

Re: [flexcoders] how to make a hyperlink in text call a function

2006-10-11 Thread hank williams
I tried this but I am not sure how to use a TextField in flex. I cant add a TextField to a UIComponent because UIComponent.addChild expects a UIComponent as a parameter. How can I integrate these.Hank On 10/11/06, hank williams [EMAIL PROTECTED] wrote: Thanks a lot! Just what I

Re: [flexcoders] how to make a hyperlink in text call a function

2006-10-11 Thread hank williams
Nevermind. Just listening for a link event on a mx:Text component works fine even though there is no listed link event for an mx.control.Text object. I would imagine the reason for this is that the event bubbles from the internal textField. HankOn 10/11/06, hank williams [EMAIL PROTECTED]

[flexcoders] Flex collaborative portal designed for Max 2006

2006-10-11 Thread focusedcoker
We have just launched our Flex Collaboorative tool branded Premeet and will like developers to explore and have a feel of what Flex can do! Check it out at: http://www.premeet.flexcubed.com Click on the View Portal Button and once loaded, Click on the Need to Register Button to open a new

Re: [flexcoders] Render data in Text Area

2006-10-11 Thread Clint Tredway
are you asking to list 1 title or all the titles returned?On 10/11/06, KP [EMAIL PROTECTED] wrote: Below is the code for HTTP service which is given in example docs. ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] HTTPService and DataGrid Not Populating.

2006-10-11 Thread toddad538
I have the following code: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script ![CDATA[ import mx.controls.Alert; public function submitForm():void

RE: [flexcoders] Re: Horizontal alignment of inline checkbox in datagrid component

2006-10-11 Thread Iko Knyphausen
I tried that, and indeed it will help align the checkbox, unfortunately the data binding stops working. In other words, the moment you have an hbox around the checkbox, the checkbox does not show as checked in those rows that have true as data value. Hi, You can use HBox

Re: [flexcoders] Re: Flex Marketing

2006-10-11 Thread DUANE NICKULL
Agree - as I stated when I posted, its' not scientific for all three given Java also refers to coffee and at least one book was on a flex swing for golfing which probably had little to do with e4x operators in AS3 ;-)  For the books however, I suspect that Macromedia Flex would have turned up a

RE: [flexcoders] Using Checkbox inside a DataGrid

2006-10-11 Thread Iko Knyphausen
Have you tried DataGrid.selectedItem and then the selected property on the column that holds the checkbox? -Iko Hi, I am trying to add check boxes to each row of a data grid for data management. I did add the check boxes to the Datagrid using itemRenderer. But I am not able

[flexcoders] System Fonts

2006-10-11 Thread KP
Hi All, I have one combo Box in which I have to populate all the system fonts. Currently I have harcoded in the combo box. I want to know some method through which I can get all the fonts installed in my machine to populate in the combo Box Thanks Kumar __._,_.___

[flexcoders] mx_internal_uid and Tree issues

2006-10-11 Thread elleones63
This is driving me insane. I have a XMLListCollection variable that provides data to a Tree. Variable is dynamically allocated and [Bindable] at start-up; it is updated at random times. We have noticed that a node named mx_internal_uid gets added to a parent node every time that we add data to

RE: [flexcoders] AS3 substitute for UIObject.destroyObject() ?

2006-10-11 Thread Gordon Smith
removeChild() or removeChildAt(), which UIComponent inherits from DisplayObjectContainer. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of leo4beer Sent: Wednesday, October 11, 2006 5:49 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Re: sprites in MXML

2006-10-11 Thread Daniel Freiman
I think one of us is confused, but I think it's me. In any event, I can't find a way to add a sprite using pure mxml, but until someone shows us what we're missing, the actionscript is pretty easy:?xml version= 1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.adobe.com/2006/mxml

Re: [flexcoders] mxmlc -increment not working.

2006-10-11 Thread Paul Spitzer
I never did get it to work but I haven't gone back and tried to simplify what I was doing. I probably need to do that -- start from scratch, get it working and then try to set up my compile as I need it. I might try using the exec task as well, as opposed to the java task. Ralf Bokelberg

Re: [flexcoders] TabBar - selected tab text pushed down

2006-10-11 Thread dorkie dork from dorktown
I have noticed this too. I think that it is not that the text is pushed down one pixel. It is that the text on a non selected tab is pushed up one pixel until it is selected. At least on my tabbar as all the text seems to be too high. I and another developer have been testing this but we

[flexcoders] Re: Horizontal alignment of inline checkbox in datagrid component

2006-10-11 Thread haravallabhan
Iam just wondering How a Layout component has some affect on data?. It works for me.. selected = {data.ColumnDataField} shoue populate the value. --- In flexcoders@yahoogroups.com, Iko Knyphausen [EMAIL PROTECTED] wrote: I tried that, and indeed it will help align the checkbox,

RE: [flexcoders] Flex collaborative portal designed for Max 2006

2006-10-11 Thread Steve Kellogg @ Project SOC
Very nice! Clean, well thought out. Congrats on a job well done! Do you know that there are a few places where Flex errors are coming up over the portal? I'll try to narrow down WHEN these things happen, but I thought you'd want a heads up. BTW... The SOUND EFFECTS that you're using (the

Re: [flexcoders] Arrays/DataProviders/CFCs - Need a workaround.

2006-10-11 Thread Paul Hastings
On 10/11/06, Tom Chiverton [EMAIL PROTECTED] wrote: No. All your binding in the view should be to the ArrayCollection anyway. Normally if you update the AC, the DG will not update by itself though, you'll have to nudge it (reassigning the 'dataProvider' property, for instance). well, seems we

Re: [flexcoders] JPEGEncoder.as

2006-10-11 Thread Darron J. Schall
They're in the Adoeb Labs SVN: http://labs.adobe.com/svn/flashplatform/?/projects/corelib/trunk/src/actionscript3/com/adobe/images/ -d Rich Tretola wrote: Anyone have a new copy of JPEGEncoder.as? Rich __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-11 Thread Clint Modien
http://www.themidnightcoders.com/weborb/On 10/11/06, Sajid Hussain [EMAIL PROTECTED] wrote: Hi to all . I am new to flex Development ,I am stuck with following conceptsI have one webservice method who is returning DataSet ,What will be the best way to

Re: [flexcoders] mxmlc -increment not working.

2006-10-11 Thread Ralf Bokelberg
no i haven't, you can do, if you like. Cheers, Ralf. On 10/11/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 11 October 2006 10:39, Ralf Bokelberg wrote: Works like a charm, though i'd prefer not to see these .cache files in my source directory. Unfortunately this doesn't seem to be

[flexcoders] Re: Using Checkbox inside a DataGrid

2006-10-11 Thread haravallabhan
Hi, ha ha ha, It happens that I over look such a simple solution when I think too much ... its as simple as you say.. anyways thanks it works. --- In flexcoders@yahoogroups.com, Iko Knyphausen [EMAIL PROTECTED] wrote: Have you tried DataGrid.selectedItem and then the selected property on the

Re: [flexcoders] mxmlc -increment not working.

2006-10-11 Thread Douglas Knudsen
curious, why use the exex task to call up Java instead of just using the java task? java jar=${mxmlcjar}fork=truefailonerror=true maxmemory=128m dir=${flexsdk}\frameworksDKOn 10/11/06, Ralf Bokelberg [EMAIL PROTECTED] wrote:Not sure, if this answered or not, but finally i found

Re: [flexcoders] mxmlc -increment not working.

2006-10-11 Thread Ralf Bokelberg
Yeah, probably makes sense. It's just that i use exec for other things too, this is why i know it best. Cheers,Ralf. On 10/11/06, Douglas Knudsen [EMAIL PROTECTED] wrote: curious, why use the exex task to call up Java instead of just using the java task? java jar=${mxmlcjar}fork=true

[flexcoders] Re: Cairngorm commands - best practise

2006-10-11 Thread Tim Hoff
WTF, since when do Delagates know about the ModelLocator? Tom, I'm sorry to disagree with you here, but a Delagate is nothing more than a proxy for a service call; a layer of abstraction to help encapsulate the Commands. Basically, what you're talking about here is an event, containing the

[flexcoders] alert icons

2006-10-11 Thread Pan Troglodytes
Are there any icons for Alerts hanging around in some random classes as static vars somewhere? I know I can import my own but it seems like they should already be there.-- Jason __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] Unable to pull up API in FlexBuilder with Ctrl + Spacebar

2006-10-11 Thread e_baggg
This has to be the most frustrating thing I've come across in a long time (more frustrating then when my computer got hosed trying to debug Flex 1.5 apps accidentally with the Flash 8.5 beta plugin). Anyway, I am no longer able to pull up the dynamic menu of class names and variable attributes

Re: [flexcoders] System Fonts

2006-10-11 Thread Daniel Freiman
Font.enumerateFonts(true) will give you all embeded and device fonts. If you don't have any embeded fonts that should work or you can take the difference of that result and the list of emebeded fonts. I thought there was a better way than this for device fonts but I can't find it. I'll let you

[flexcoders] where should I place crossdomain.xml for tomcat server

2006-10-11 Thread sreedhar reddy
Hi,Can anybody tell me where to place crossdomain.xml for tomcat server.I have installed my Flex application onaServer and I am trying to access that using domain address. Thanks, SreedharThanks Regards,Sreedhar Find out what India is talking about on - Yahoo! Answers

RE: [flexcoders] where should I place crossdomain.xml for tomcat server

2006-10-11 Thread Tracy Spratt
Probably in webapps. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of sreedhar reddy Sent: Wednesday, October 11, 2006 2:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] where should I place crossdomain.xml for tomcat

Re: [flexcoders] my setter is calling my getter....

2006-10-11 Thread David Harris
Thanks Diego, that was it...I had to look twice at you snippet to see what was different, but when I saw it, it was the issue!Cheers!On 10/11/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: Oh no, i just tested it on my own and it seems like the new player works

[flexcoders] Flex Documentation Team - Showing Related Technology

2006-10-11 Thread dorkie dork from dorktown
I've been reading through, again, the documentation on DataProviders in Chapter 7 of the Flex Developers guide and I thought it might be useful to know where all this form and structure and framework comes from or is inspired by. I would like to be able to teach other developers and tell this,

RE: [flexcoders] Flex Documentation Team - Showing Related Technology

2006-10-11 Thread Steve Kellogg @ Project SOC
Are you really from Dorktown? I hear that place is kind of a [EMAIL PROTECTED] Best Regards, Steve -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Wednesday, October 11, 2006 12:37 PM To:

[flexcoders] Clearing or resetting a datagrid bound to a web service

2006-10-11 Thread dsfhsdfjsdfj
I have a simple form in flex, and I am coding a reset button. To populate my datagrid, I use a CFC based webservice that returns a query. I need to be able to clear that datagrid when the user presses the reset button. Any suggestions? -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-11 Thread Matias Nicolas Sommi
Tim, it's a joke, please don't hungry! I know that its only a simple code, and the best practices don't match with the article purpuoses.2006/10/11, Matias Nicolas Sommi [EMAIL PROTECTED]:In this page say flex and NET don't play well together... after I readed the ASP NET code, I think that

Re: [flexcoders] JPEGEncoder.as

2006-10-11 Thread Rich Tretola
Thanks Darron,I had downloaded them from http://labs.adobe.com/wiki/index.php/Source:get earlier but they were very old files.Rich On 10/11/06, Darron J. Schall [EMAIL PROTECTED] wrote: They're in the Adoeb Labs SVN:

Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-11 Thread Matias Nicolas Sommi
In this page say flex and NET don't play well together... after I readed the ASP NET code, I think that this flex programmer (who write the doc) don't play well with .NET... :PPD: I don't play very well with the english, sorry. -- Matías Nicolás Sommi2006/10/11, Tim Hoff [EMAIL PROTECTED]:

[flexcoders] Datagrid header rollover

2006-10-11 Thread niyati_bedekar
I have been trying to do this for quite some time now. I want to be able to take some action when the user rolls over the header in a datagrid. I tried using the itemRollOver event, however, the event.rowIndex property shows from row 1 onwards, not 0. It works fine for itemClick but not

Re: [flexcoders] where should I place crossdomain.xml for tomcat server

2006-10-11 Thread hank williams
I probably dont quite understand your question, but if your application is in the tomcat server installed as a webapp then you dont need a crossdomain file.If you have two servers, and your flex app is in one server and your tomcat installation is on another server then the answer isnt quite as

[flexcoders] OFF-TOPIC: How to configure the enviroment (ASP WebService)

2006-10-11 Thread Matias Nicolas Sommi
Hello to all, I'm trying to develop a website with C# and Flex, and I've several problems to test the web services with IIS, anybody can give me a link to configure IIS or another server (NET enabled) to test my webservice... The mainly problems with IIS is the file system permisions, metabase

RE: [flexcoders] How to create Pageable RecordSets in DataGrid?

2006-10-11 Thread Mike Anderson
Well, okay - But the whole point of paging RecordSets, is to only retrieve small chunks of data at a time - thus speeding up the turnaround time between Database Server and Client. I will continue to look for solutions, but thanks for your input nevertheless... Mike From:

Re: [flexcoders] Conditional Login inside curly braces for binding

2006-10-11 Thread Daniel Wabyick
Hi Peter (and all) ... I finally got around to checking out your proposed method, and unfortunately it does not work. It seems to interpret anything within a CDATA block as a string. Here is what I tried, and it does not work. mx:Label mx:doubleClickEnabled![CDATA[{ true true

[flexcoders] Sending an array from Flex to PHP

2006-10-11 Thread christophevond
How do I send an ArrayCollection to PHP? I would prefer not to use AMFPHP if it is at all possible. This is probably more of a PHP question on how do I receive it, so whatever you have I would appreciate it. Thanks -- Flexcoders Mailing List FAQ:

RE: [flexcoders] where should I place crossdomain.xml for tomcat server

2006-10-11 Thread Bjorn Schultheiss
Hey Hank, I havent sent this to the list. At one time there was a thread about the price of FDS and you mentioned that the 20k per cpu was an unreasonable price for remoting. Well we require the use of AMF3 here on a flex project but not the rest of the FDS features and it was brought to

[flexcoders] Re: Sending an array from Flex to PHP

2006-10-11 Thread Mark Piller
Have you looked into WebORB for PHP? http://www.themidnightcoders.com/weborb/php/index.htm With WebORB you can use RemoteObject, invoke a method in your PHP class and pass ArrayCollection as an argument. WebORB will then invoke the function in the server-side class and the parameter will be a

  1   2   >