[flexcoders] Autocomplete from the browser in a login username field

2008-01-02 Thread simonjpalmer
I have a form I use for login into which my users type their username and password. Does anyone know of a way of using the browser autofill to populate form text fields?

[flexcoders] FileReference - A petition for Astro ! [ by Thibault Imbert ]

2008-01-02 Thread Cato Paus
Hi all I'm just relaying this message from http://www.bytearray.org This issue realy needs to bee pointed out for adobe so we can create the best RIA. Here is the article with minor modification. FileReference - A petition for Astro ! [ by Thibault Imbert ] André Michelle posted a few days

[flexcoders] Re: Loading mask or overlay for datagrids while loading

2008-01-02 Thread brey_magenta
Ok, so just using a popupmanager, size it to cover the component and remove it when the loading is done should do the trick? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: A mask in Flash is a specific thing that clips the object it masks. I think you really want an

[flexcoders] Actionscript - Canvas.addChild() - objects overwritting eachother???

2008-01-02 Thread anthony_morsey
In Actionscript - I'm trying to us a Canvas object to paste multiple objects such as textarea, ColumnChart, Legend, and Labels using Canvas.addChild(objectname). I started by adding 2 textarea objects and when I send the Canvas to the printer, the 2 textareas are overlaying/overwriting each other.

[flexcoders] Re: tileList displaying items order other than that represented by dataProvider

2008-01-02 Thread Alex
Posted a response to another responder in the thread... I have vastly simplified the application source to focus on the problem and what I find is that my itemRenderer for the tileList view if coded as follows works showing the expected sort in both views: mx:Label text={data.name}/ If coded as

RE: [flexcoders] Actionscript - Canvas.addChild() - objects overwritting eachother???

2008-01-02 Thread Mark Ingram
You're missing the coordinates of your text boxes. A canvas arranges children by exact coordinates (default 0, 0). Look at the HBox / VBox controls if you want to auto-arrange child controls. Mark -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] Re: basic open source video player

2008-01-02 Thread Cato Paus
http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails\ productId=2postId=1921loc=en_US http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetail\ sproductId=2postId=1921loc=en_US Cato Paus --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] [EMAIL PROTECTED]

[flexcoders] Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread j_lentzz
Hi, I've got a datagrid with a custom renderer. I'm not editing in the datagrid, but when a row is selected, I populate some TextInputs and ComboBoxes to let them edit the data. When they are done, I use itemUpdated on the datagrid ArrayCollection. This seems to work just fine. However, after

Re: [flexcoders] Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Johannes Nel
have you tried dispatching the collection_change event from the array collection? On Jan 2, 2008 10:20 AM, j_lentzz [EMAIL PROTECTED] wrote: Hi, I've got a datagrid with a custom renderer. I'm not editing in the datagrid, but when a row is selected, I populate some TextInputs and

[flexcoders] Re: Actionscript - Canvas.addChild() - objects overwritting eachother???

2008-01-02 Thread anthony_morsey
Mark, I've tried VBox with the same results. How do I auto-arrange the children so I don't have to worry about the Y coordinate? I'de like to just call addChild() for all of my components. I tried the following var myVBox:VBox = new VBox(); myVBox.setStyle('backgroundColor', '#FF');

[flexcoders] Strange compiler error

2008-01-02 Thread Mark Ingram
I'm getting this error: 1046: Type was not found or was not a compile-time constant: . Note: It doesn't give me a type at all. Sometimes when I jig around the import statements it gives me the error in the generated actionscript. But I've checked that and the error is usually on the last

RE: [flexcoders] Re: Actionscript - Canvas.addChild() - objects overwritting eachother???

2008-01-02 Thread Mark Ingram
You would normally only need to do something like this: var myVBox:VBox = new VBox(); this.addChild(myVBox); var textBox1:TextArea = new TextArea(); myVBox.addChild(textBox1); var textBox2:TextArea = new TextArea(); myVBox.addChild(textArea2); Mark -Original Message- From:

[flexcoders] Unwanted arguement?

2008-01-02 Thread candysmate
Focus can be a real pain, as we all know. I have a function which re-focuses a datagrid so: private function staffGridFocus():void { salesStaffGrid.setFocus(); salesStaffGrid.selectedIndex = gridSelectLine; editStaffCell = {columnIndex:0, rowIndex: gridSelectLine};

[flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread j_lentzz
Just tried it, but no change. I could change the values and see it in my editing locations, but they weren't reflected in the datagrid, but are really there if I select that row again. --- In flexcoders@yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: have you tried dispatching the

RE: [flexcoders] Strange compiler error

2008-01-02 Thread Mark Ingram
I've managed to fix this (after much deleting and undoing and redoing). The problem was a missing ; on one line. Strangely, the contents of the code had been copied from another file where it worked just fine. I have a feeling the line below this one was [Bindable]. But I'm not sure why that would

Re: [flexcoders] Strange compiler error

2008-01-02 Thread Johannes Nel
i have noticed the reverse in B3, if you do not put a semi colon in then the bindable throws a compiler error. i logged it on the bug system On Jan 2, 2008 12:00 PM, Mark Ingram [EMAIL PROTECTED] wrote: I've managed to fix this (after much deleting and undoing and redoing). The problem was

Re: [flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Johannes Nel
try dispatching a custom change event [Bindable (event='myEvent')] instead of just [Bindable] On Jan 2, 2008 11:59 AM, j_lentzz [EMAIL PROTECTED] wrote: Just tried it, but no change. I could change the values and see it in my editing locations, but they weren't reflected in the datagrid, but

Re: [flexcoders] Alert window position?

2008-01-02 Thread Mark Shen
What is the 'your alert popup'? Please give me a demo for this.Thanks Mark - Original Message From: Savan Patel [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, December 29, 2007 1:21:30 AM Subject: Re: [flexcoders] Alert window position? Hi Mark, You can use

[flexcoders] Save data from datagrid to database?

2008-01-02 Thread markflex2007
Hi, I have a datagrid that is changed by events. I want to save all the data in datagrid to database with coldfusion,I am not sure how to get all the data from datagrid and save them to db. Please give me a hit. Thanks Mark

Re: [flexcoders] Unwanted arguement?

2008-01-02 Thread Frederico Garcia
this, or have you guys any other ideas please? -- 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 __ NOD32 2760 (20080102) Information

RE: [flexcoders] Two way binding

2008-01-02 Thread mark goldin
But if I use XML based model how do I assign data to it that I am pulling from the server? Tracy Spratt [EMAIL PROTECTED] wrote: Simplicity. Less code. Maintainability. Standardization, well known API. Note that in the scenario I describe, the simplicity produces a

Re: [flexcoders] Alert window position?

2008-01-02 Thread Frederico Garcia
Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://us.rd.yahoo.com/evt=51733/*http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ%20 __ NOD32 2760 (20080102) Information __ This message

[flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread j_lentzz
Previously, I tried: LPA_TimeRecord.dataProvider.dispatchEvent(new CollectionEvent(mx.events.CollectionEvent.COLLECTION_CHANGE)); , which didn't work. But who is supposed to listen and respond to it? Will the datagrid automatically listen and redraw? John --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Tab Navigator : how to set corner Radius to only the left-right bottom?

2008-01-02 Thread scalenine
You may need to fake it by using the child container to overlap the top rounded corners by adjusting paddingTop of the TabNavigator, like this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:TabNavigator x=401 y=361 width=200

RE: [flexcoders] Two way binding

2008-01-02 Thread Tracy Spratt
But don't use mx:Model, that creates the nested dynamic object structure I mentioned. Use mx:XML, or use an instance variable typed as XML, and assign it in a result handler. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: Two way binding

2008-01-02 Thread markgoldin_2000
Are you talking about something like this: ?xml version=1.0? !-- Models\XMLBinding.mxml -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:XML id=myEmployee format=e4x employee name first{firstName.text}/first

[flexcoders] Re: Autocomplete from the browser in a login username field

2008-01-02 Thread iilsley
I dont believe its possible to use the 'browsers' autofill .. However you could potentially implement your own 'application' specific 'autofill' like behavior with 'Shared Objects' .. http://learn.adobe.com/wiki/display/Flex/Shared+Objects http://learn.adobe.com/wiki/display/Flex/Shared+Objects

Re: [flexcoders] Save data from datagrid to database?

2008-01-02 Thread Mike Chabot
There are many ways to do this, and no single best way. I would suggest looking at the mx:RemoteObject tag for starters. You could send ColdFusion a typed RemoteClass object that directly corresponds to a CFC, a generic object, an array, a string of data, etc. One thing to experiment with is the

RE: [flexcoders] Re: Two way binding

2008-01-02 Thread Tracy Spratt
The simplest is to declare an instance variable typed as XML: var _xmlEmployee:XML; Then assign the event.result as XML in a result handler: _xmlEmployee = event.result as XML; If you want to use the declarative style, do: mx:XML id=xmlEmployee / And in the result handler, do:

[flexcoders] Re: Unwanted arguement?

2008-01-02 Thread candysmate
Try this private function staffGridFocus(value:Object=null):void Regards, Frederico Garcia Thanks Frederico, that nailed it!

RE: [flexcoders] Session Defining

2008-01-02 Thread Tracy Spratt
What do you need the session for? Remember that a Flex client is stateful. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of NileAge, Mail Sent: Tuesday, January 01, 2008 9:17 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: Unwanted arguement?

2008-01-02 Thread Tracy Spratt
You might want to examine that value:Object in the function to make sure your theory is correct. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Wednesday, January 02, 2008 1:11 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Loading mask or overlay for datagrids while loading

2008-01-02 Thread Alex Harui
Yes. Good luck. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of brey_magenta Sent: Wednesday, January 02, 2008 5:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Loading mask or overlay for datagrids while loading Ok,

RE: [flexcoders] Re: tileList displaying items order other than that represented by dataProvider

2008-01-02 Thread Alex Harui
I don't see any [Bindable] metadata, so I would expect you to get warnings in the console about binding to thumbLabel and the renderer won't know that data.name changed. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Sent:

RE: [flexcoders] Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Alex Harui
What does the renderer look like? How will it detect changes to the underlying data? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of j_lentzz Sent: Wednesday, January 02, 2008 7:21 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Re: Unwanted arguement?

2008-01-02 Thread Frederico Garcia
it! __ NOD32 2760 (20080102) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com Alex, the value:Object is not intended to be used. It will be an event if called by Alert window, null if no argument passed. It's just a workaround to maintain current usage

[flexcoders] displaying the results of a UNION query in Flex DataGrid

2008-01-02 Thread Mr Greg Murnock
Can this be done in a Flex 2 DataGrid? anything I need to be aware of? Currently returning results via Remote Object as an Array from CF. Thanks, Greg Never miss a thing. Make Yahoo your home page.

RE: [flexcoders] Re: Two way binding

2008-01-02 Thread mark goldin
Alright. Is the following correct: Inside of a model I have it nodes bound to form items. In the form I have it items bound to model's nodes, and xmlmodelvar = event.result as XML will pull data into the model as well as show int in the form's controls? Tracy Spratt [EMAIL PROTECTED] wrote:

Re: [flexcoders] Save data from datagrid to database?

2008-01-02 Thread Mark Shen
Thanks. Mike. I know how to use mx:RemoteObject . My question is how to get all the data from datagrid and pass it to mx:RemoteObject .Thanks Mark - Original Message From: Mike Chabot [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, January 2, 2008 1:02:39 PM

[flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread j_lentzz
Here is the code for the renderer. I extend Label and add a dataProvider to make it act like a combobox, so that I can specify an index to show. That way it doesn't look like a combobox when it renders. I'm not doing anything special to look for a change, just implementing what I thought was

RE: [flexcoders] Re: Two way binding

2008-01-02 Thread Tracy Spratt
I can't understand what you have from your description. Post the relevant code snippets. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mark goldin Sent: Wednesday, January 02, 2008 1:34 PM To: flexcoders@yahoogroups.com

[flexcoders] Re: Save data from datagrid to database?

2008-01-02 Thread candysmate
--- In flexcoders@yahoogroups.com, Mark Shen [EMAIL PROTECTED] wrote: Thanks. Mike. I know how to use mx:RemoteObject . My question is how to get all the data from datagrid and pass it to mx:RemoteObject .Thanks Mark Mark, the dataGrid is merely a visual means of viewing / editing

[flexcoders] Re: Two way binding

2008-01-02 Thread markgoldin_2000
Just conceptually: Model: ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:XML id=accidentsGeneral format=e4x general dateofaccident{dateofaccident.text} /dateofaccident otherrailroadinvolved

[flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread j_lentzz
Thank You! That fixed it. Are there 'rules' to follow about when/if things need to be bindable? I've been using the [Bindable] tag pretty often. Should I not use it until it seems like something is not working? Thanks again, John --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL

RE: [flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Alex Harui
Try removing [Bindable] from the data setter. I don't see where you are using it, and it autogenerates change detection logic that may prevent your setter from running since the comparision is done by reference From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: Two way binding

2008-01-02 Thread Tracy Spratt
A few problems: When you assign the result from the server to the xml model, it will overwrite the entire xml. So you can't bind the form elements to the dynamic model using binding braces. I don't think. You might test that though. Then, selecting an item in a ComboBox does not

RE: [flexcoders] Re: Two way binding

2008-01-02 Thread mark goldin
But where is the Binding mechanism taking place? What exactly do we bind? What is the most bindable solution? Tracy Spratt [EMAIL PROTECTED] wrote: A few problems: When you assign the result from the server to the xml model, it will overwrite the entire xml. So you can’t bind

Re: [flexcoders] Re: Unwanted arguement?

2008-01-02 Thread Ralf Bokelberg
Sometimes i use the following code to make clear that i'm not using the arguments private function staffGridFocus( ... ignore ):void Cheers Ralf.

[flexcoders] Re: displaying the results of a UNION query in Flex DataGrid

2008-01-02 Thread Abyss Knight
Data is data, I would presume it'd just work. It all depends on how you want to display it in the grid and how you set up the AS/MXML. -- William --- In flexcoders@yahoogroups.com, Mr Greg Murnock [EMAIL PROTECTED] wrote: Can this be done in a Flex 2 DataGrid? anything I need to be aware of?

Re: [flexcoders] Re: Autocomplete from the browser in a login username field

2008-01-02 Thread Ralf Bokelberg
Would be nice though. Maybe you can add a enhancement request to the bugbase. Cheers Ralf. On Jan 2, 2008 7:00 PM, iilsley [EMAIL PROTECTED] wrote: I dont believe its possible to use the 'browsers' autofill .. However you could potentially implement your own 'application' specific

Re: [flexcoders] Re: Tab Navigator : how to set corner Radius to only the left-right bottom?

2008-01-02 Thread Yochikoh Haruomi
Thank you so much Juan. This is exactly what I'm looking for. At first, I faked it by creating a rectangular background underneath the unwanted top rounded corner and painted it the same color as the container. But your solution is much more effective. Thank again! -Kt scalenine [EMAIL

Re: [flexcoders] Re: Tab Navigator : how to set corner Radius to only the left-right bottom?

2008-01-02 Thread Yochikoh Haruomi
Thank you so much Juan. This is exactly what I'm looking for. At first, I faked it by creating a rectangular background underneath the unwanted top rounded corner and painted it the same color as the container. But your solution is much more effective. Thank again! -Kt scalenine [EMAIL

RE: [flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread Alex Harui
My rule is: don't use Bindable unless you absolutely need it. It adds overhead to your application. You'll get warning if you try to bind to something that isn't bindable and then you can decide how to deal with it. I use [Bindable] in prototypes, but I would use it more sparingly in real

[flexcoders] Re: Creating tooltip for datagrid column header(s)?

2008-01-02 Thread chuyler1
Try defining the component in-line instead. You also don't want to use the ToolTip component because you still need to display the header text. Instead, just use a Label component and set the toolTip string for the label like so... mx:DataGridColumn width=26 textAlign=center editable=false

[flexcoders] Re: tileList displaying items order other than that represented by dataProvider

2008-01-02 Thread Alex
If I alter the code as follows: public function get thumbLabel(): String { return data.name; to [Bindable] public function get thumbLabel(): String { return data.name; I get the following compiler warning: [Bindable] on read-only getter is unnecessary and will be ignored.

[flexcoders] Re: Creating tooltip for datagrid column header(s)?

2008-01-02 Thread candysmate
--- In flexcoders@yahoogroups.com, chuyler1 [EMAIL PROTECTED] wrote: Try defining the component in-line instead. You also don't want to use the ToolTip component because you still need to display the header text. Instead, just use a Label component and set the toolTip string for the label

[flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-02 Thread j_lentzz
Will do from now on. Thanks again Alex. John --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: My rule is: don't use Bindable unless you absolutely need it. It adds overhead to your application. You'll get warning if you try to bind to something that isn't bindable and

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

2008-01-02 Thread Gordon Smith
That's because when you simply declare var test:testClass; the variable 'test' is automatically assigned a default value of null. The default value of a var depends on its type, as follows: Boolean -- false int/uint -- 0 Number -- NaN Object -- undefined All other

RE: [flexcoders] Strange compiler error

2008-01-02 Thread Gordon Smith
If you can repro this in a simple case, please file a bug at http://bugs.adobe.com/flex. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Ingram Sent: Wednesday, January 02, 2008 9:00 AM To:

Re: [flexcoders] Strange compiler error

2008-01-02 Thread Sheriff
are u trying to use namespaces or it usually means ur import statments are not at a package level or u have some variables at the pacakge - Original Message From: Gordon Smith [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, January 2, 2008 2:44:55 PM Subject: RE:

RE: [flexcoders] setting mxml attributes in actionscript when those properties don't exist

2008-01-02 Thread Gordon Smith
what would happen if you had an attribute the same name as a style and the same name as an event and you tried to set this in the mxml? I'm not sure what the compiler does in this case, but even if it allows it we'd consider it bad practice because of the ambiguity. events and styles should

[flexcoders] Help with an error message

2008-01-02 Thread markgoldin_2000
warning: unable to bind to property 'otherfilenumber' on class 'accidents.ModuleCode::accidentsGeneralModel How should I understand that? my form: ... moduleCode:accidentsGeneralModel id=modelGeneral/ ... mx:FormItem label=File Number mx:TextInput

RE: [flexcoders] Help with an error message

2008-01-02 Thread Gordon Smith
You haven't made otherfilenumber bindable, so {modelGeneral.otherfilenumber} is causing this warning. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday, January 02, 2008 1:20

[flexcoders] Re: Help with an error message

2008-01-02 Thread markgoldin_2000
O yes, that's right. But I am using this http://www.adobe.com/devnet/flex/quickstart/defining_data_models/ and it does not have bindable for each getter. I think. --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: You haven't made otherfilenumber bindable, so

Re: [flexcoders] Re: BlazeDS and Java 5 Enum Support - works only one way?

2008-01-02 Thread James Ward
Hi Vijay, Only mapping Strings to Enums is supported. Can you file an enhancement request? http://bugs.adobe.com/flex Let the list know the bug number so those interested can go vote for it. -James On Wed, 2007-12-19 at 19:05 -0800, moonusamy wrote: Unfortunately that doesn't work for me.

[flexcoders] Custom Tooltips in UIComponent

2008-01-02 Thread Nate Pearson
I'm extending UIComponent to make some custom components. I want to add a custom tooltip to it when someone mouse overs it. I can't figure out how to do it...I might need to implement ToolTipManager and use controls.ToolTip but that seems like too much work. I wouldn't want to listen for every

RE: [flexcoders] Custom Tooltips in UIComponent

2008-01-02 Thread Gordon Smith
I don't understand. UIComponents already have a toolTip property. When it is set, a tool tip automatically appears when the mouse moves over that component and stays there for a little while. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com

[flexcoders] Re: Custom Tooltips in UIComponent

2008-01-02 Thread Nate Pearson
I'm hooking up dynamic data to it. I also like to customize the appearance of it(multiple rows, bold, maybe a background color change). Is that enough info? --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: I don't understand. UIComponents already have a toolTip

RE: [flexcoders] Re: Custom Tooltips in UIComponent

2008-01-02 Thread Gordon Smith
Handle the toolTipCreate event and create whatever kind of tool tip you want. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nate Pearson Sent: Wednesday, January 02, 2008 1:47 PM To:

[flexcoders] Late formitem bining

2008-01-02 Thread markgoldin_2000
I am trying to bind a formitem using late binding in AS file: import accidents.*; accidentsModule = mainApp.moduleLoader.child; accidentsModule.otherfilenumber.text = {accidentsModule.modelGeneral.otherfilenumber}; I am getting a compiler error: 1084: Syntax error: expecting colon

Re: [flexcoders] International date formatting

2008-01-02 Thread Vadim Melnik
Flex 3 has runtime localization. Out of curiosity question about localization in Flex 3: Will Flex 3 runtime provide native built-in access to system defined locale settings like number, currency, date, time formats etc. (For example in Windows these settings specified in Control Panel |

Re: [flexcoders] Re: interface inheretence

2008-01-02 Thread Aaron Miller
Hi Simon, I definitely understand your position. In fact this was how the code used to work. The problem we were running into is that there are a lot of different child users types which frequently change during the execution of the program. What's worse is more child user types keep getting

[flexcoders] Offline Work Support in Flex 2

2008-01-02 Thread nirav_eng_comp
Hi, Offline Work Support is possible in flex or not? I want to provide offline mode facility in my web application. User can work offline and when server connection/internet connection is available the changes which has been done by user, should uploaded on to the server. Currently i am trying

[flexcoders] Trobule with https web service

2008-01-02 Thread pchris1977
I setup an sql server 2005 endpoint over SSL channel (needed for basic or digest authentication). I try to connect to this webservice from a flex application: mx:WebService id=wWs wsdl=https://mycomp/sql/myap?wsdlsimple; fault=handleFault(event) mx:operation name=myop resultFormat=e4x

[flexcoders] Manual Drag Drop - copying of original component that is bein dragged?

2008-01-02 Thread Fah Queue
Hi there I am using this code as the basis of my project: http://blogs.adobe.com/flexdoc/2007/03/creating_resizable_and_draggab.html I modified the code and came up with my own drag/drop functions: private function tbMouseMoveHandler(event:MouseEvent):void { // create the filterEditObj

[flexcoders] Manual Drag Drop - copying of original component that is bein dragged?

2008-01-02 Thread Fah Queue
Hi there I am using this code as the basis of my project: http://blogs.adobe.com/flexdoc/2007/03/creating_resizable_and_draggab.html I modified the code and came up with my own drag/drop functions: private function tbMouseMoveHandler(event:MouseEvent):void { // create the filterEditObj

[flexcoders] How can I connect to webservices (sql server2005 http endpoint)?

2008-01-02 Thread pchris1977
Is there a way to connect secure to a webservice? Consider wService is the service. -Basic is not working. wService.SetCredential - error no proxy. If I put proxy - error no channel or destination. -Digest: I try with this soapheader but no succes. mx:XML id=hSQL wsse:Security

Re: [flexcoders] Re: Mock objects in AS3

2008-01-02 Thread Drew Bourne
As the author of that mock framework Adam linked to I thought I should chip in with my thoughts on the issues that have been raised. Regarding having to hand code the implementation of the class you want to mock I have found that with a couple of snippet templates for TextMate I can write

[flexcoders] How to use Beta 2 SDK in Flex Builder 3 beta 3?

2008-01-02 Thread Scot
I have a new installation of Flex Builder 3 b 3. I would like to use this version (beta 3) to continue developing projects with the beta 2 SDK. I have set the location to the beta 2 SDK in the Installed Flex SDK's tab of the FlexPreferences panel. The beta 2 SDK is recognized as Flex 3 M3

[flexcoders] Keyboard Listeners with IE 7

2008-01-02 Thread dfalling
Are there any known issues with keyboard listeners and IE 7? I've added a listener to handle Ctrl+1, 2, ...0 for switching tabs inside my interface, and it works great in everything except IE 7. In IE 6 and Firefox the commands are accepted immediately, causing the interface to switch to the

Re: [flexcoders] International date formatting

2008-01-02 Thread Robert Vollmar
No, Flex 3's runtime localization will not pick up this information from the OS. These things have to be defined in .properties files for the desired locales. - Rob On 1/2/08 2:43 PM, Vadim Melnik [EMAIL PROTECTED] wrote: Flex 3 has runtime localization. Out of curiosity question about

[flexcoders] Connecting To Flex from CF

2008-01-02 Thread Dale Fraser
I have done this before but can't get it to work this time (first time with CF8). I am using Flex to connect to CFC's via mapping. I have enabled mapping use in the XML and restarted the server but I get this error. [RPC Fault faultString=[MessagingError message='Destination 'ColdFusion'

[flexcoders] Developing Flex against CF Server

2008-01-02 Thread Dale Fraser
I have a CF development server aleady, But what I don't understand, is when I create a new flex project is that it asks me for the web root and url of CF. What am I supposed to put in here, the server one I assume. It fails of course as the locally C:\ColdFusion8 is not available. So

[flexcoders] Webservice issue

2008-01-02 Thread rahul_mainkar
Hello people, Recently I got a very tricky problem to deal with. I have a web service which accepts few parameters and an array of objects. Web service is working perfectly fine as we have tested it with some tools. Now when I execute my flex application, I get a strange error which I am not able

[flexcoders] Dose the Flex 2 Tween, mx.effects.Tween; work?

2008-01-02 Thread jcrobinson08
Why dose the following not work? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Script ![CDATA[ import mx.effects.Tween;

[flexcoders] TabNavigator and States problem

2008-01-02 Thread tpokrajcic
I have a TitleWindow and a TabNavigator inside with several tabs based on Canvas. There are two states - Base State and Edit. TitleWindow goes to Edit state upon click on Edit button. Now a problem: After clicking on a button, state of current tab changes to Edit, but when I click other tabs,

Re: [flexcoders] Connecting To Flex from CF

2008-01-02 Thread Igor Costa
You have to pass an argument to the compiler -services c:\path_for_your_\services-config.xml to enable that one. Take a look in the mail list arquiche and you will see past threads on that. Regrds -Igor On Jan 1, 2008 11:57 PM, Dale Fraser [EMAIL PROTECTED] wrote: I have done this before

Re: [flexcoders] International date formatting

2008-01-02 Thread Vadim Melnik
Hello Rob, Thanks for quick answer. Vadim. - Original Message - From: Robert Vollmar To: flexcoders@yahoogroups.com Sent: Thursday, January 03, 2008 12:49 AM Subject: Re: [flexcoders] International date formatting No, Flex 3's runtime localization will not pick up this

Re: [flexcoders] Developing Flex against CF Server

2008-01-02 Thread Mike Chabot
If your development server has CF installed on the C:\ drive, map that C drive share onto your local dev box. Let's call it Z drive. Do in your Flex settings you write Z:\ColdFusion8\ for the path. I bet you could also use UNC paths, such as \\server\c$\ColdFusion8\. Enjoy, Mike Chabot On Jan 1,

Re: [flexcoders] Re: basic open source video player

2008-01-02 Thread [EMAIL PROTECTED]
thanks, Cato. I'm surprised there aren't more. . Cato Paus wrote: http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailsproductId=2postId=1921loc=en_US http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailsproductId=2postId=1921loc=en_US Cato Paus

[flexcoders] Degrafa Beta Released

2008-01-02 Thread scalenine
In case anyone is interested, the beta of Degrafa was released yesterday. If you're not familiar wit Degrafa, it's a declarative graphics framework for Flex that allows you to use MXML markup to draw shapes, make complex graphics, create skins and also includes advanced CSS support. Learn more

[flexcoders] embedding html in xml

2008-01-02 Thread jamalwally
Hi there, I am using an external XML file to define the content for a Text component in Flex. The xml file has HTML tags (e.g. b for bold). When I assign the XML to the Text component's htmlText property, I get unwanted extra line breaks around the HTML tags. For example, here is the external

[flexcoders] Flex SSL over AMF with ColdFusion services-config.xml

2008-01-02 Thread nasawebguy
When I use smartsniff/Charles, my remoteObject content is not encrypted/https/port 443. IE/Firefox shows SSL to the user, eventhough the data is NOT actually encrypted over AMF! Below is my services-config.xml file and remoteObject code snips. I've been researching this all day with no clear

[flexcoders] Re: Offline Work Support in Flex 2

2008-01-02 Thread nasawebguy
Take a look at Adobe AIR. Very cool offline/online sync capability. Don --- In flexcoders@yahoogroups.com, nirav_eng_comp [EMAIL PROTECTED] wrote: Hi, Offline Work Support is possible in flex or not? I want to provide offline mode facility in my web application. User can work offline

[flexcoders] Repost: XMLListCollection.copy drop namespaces - Bug or feature?

2008-01-02 Thread Tom Ortega
Sorry for the repost. Just want to see if I can get some post holiday eyes on this. Thanks, Tom -- Forwarded message -- From: Tom Ortega [EMAIL PROTECTED] Date: Dec 27, 2007 11:00 AM Subject: XMLListCollection.copy drop namespaces - Bug or feature? To: flexcoders

[flexcoders] Re: Developing Flex against CF Server

2008-01-02 Thread nasawebguy
Dale, I feel your pain. Flex Builder does need more intuitive and support different develop/production scenarios, especially where the developer isn't running locally or even on a local network. It can be confusing. It is assumed that you're using a dev version of CF on your dev box. (ideal

Re: [flexcoders] Re: BlazeDS and Java 5 Enum Support - works only one way?

2008-01-02 Thread Anatole Tartakovsky
James, You might want to consider to add [Enum... to thecompiler metatags - henerated code provided -in the bottom portion of blog http://flexblog.faratasystems.com/?p=242 Thanks, Anatole On 1/2/08, James Ward [EMAIL PROTECTED] wrote: Hi Vijay, Only mapping Strings to Enums is

RE: [flexcoders] Flex SSL over AMF with ColdFusion services-config.xml

2008-01-02 Thread Peter Farland
If you're loading your SWF via HTTPS then you should be able to make secure connections from the Flash Player. As for the right channel being automatically selected, it depends on whether channel failover happens correctly. I didn't see a destination configuration below, but if the channels

[flexcoders] Send event to all objects?

2008-01-02 Thread jrag0n
I get the sense this is very easy, but I haven't been able to make it work yet. When I click a button, a ball is sent out on the screen and starts moving randomly. I want to press a button and have every ball on stage do something, like all get twice as large, or all turn white or something.

[flexcoders] IE cache

2008-01-02 Thread coder3
Hi All, I need an auto refresh feature in my flex application, my code is like this: var timedProcess:uint = setInterval(refreshResults, 30); it works fine on firefox. but looks like there is a cache problem on IE. the refreshResults() doesn't get called.

  1   2   >