Re: [flexcoders] FlexBuilder3; Differences between Design View and Runtime ( Browser )

2008-08-17 Thread Michael Schmalle
Good luck Aldo... Design View for any serious developer is still in 'Beta'., Thats the docs. :) Mike On Sat, Aug 16, 2008 at 8:05 PM, Aldo Bucchi [EMAIL PROTECTED] wrote: Hi guys, In Flex Builder 3, Design View, I cannot see the IDs being set ( from within an application ). My guess is

[flexcoders] Re: Web-based Sync data - Flex/Air VS.NET

2008-08-17 Thread itdanny2002
Greg, it is about several MB data and may be more. Anyhow, no matter how geat the talk is. We need a practical solution at current moment, not in future. As a result, we're now building a prototype to prove the concept in both product and see whether it solves my users problems. For

[flexcoders] Re: Web-based Sync data - Flex/Air VS.NET

2008-08-17 Thread itdanny2002
More .. I can request users to release the size setting. However Sharedobject can't like datebase which has table structure and indexing. If it is, so great ! I think about to down it all into memory (array) and then do sorting or whatever actions. But I need to test, that's why we are now

[flexcoders] Headless compilation with AdvancedDataGrid

2008-08-17 Thread Sebastien ARBOGAST
I have a Flex Builder Pro license and I'm using it to develop an application using AdvancedDataGrid component. When I build my application in Flex Builder, everything works fine. But now I'm trying to setup a headless build script for continuous integration using mxmlc. How can I build my

[flexcoders] Re: Method variable scoping problem with Flex compiler

2008-08-17 Thread Amy
--- In flexcoders@yahoogroups.com, seulaterbuddy [EMAIL PROTECTED] wrote: no, lets say count was 10. for (var i:int=0; i 10; i++) { // do something } at the end of the loop I = 9, then it would i++, so at the very end it would be 10. You're right, I was thinking =. But the

[flexcoders] Re: Is there a way to embed flex swf in C++ instead of AIR?

2008-08-17 Thread Amy
--- In flexcoders@yahoogroups.com, Jo Morano [EMAIL PROTECTED] wrote: Hi! I need C++ and flex to work together. Can I embed flex swf in C++ and do away with AIR? You should be able to just embed an instance of the Flash player and use ExternalInterface for the communication. HTH; Amy

Re: [flexcoders] Headless compilation with AdvancedDataGrid

2008-08-17 Thread Douglas Knudsen
Use Ant. Some examples are in the docs. DK On 8/17/08, Sebastien ARBOGAST [EMAIL PROTECTED] wrote: I have a Flex Builder Pro license and I'm using it to develop an application using AdvancedDataGrid component. When I build my application in Flex Builder, everything works fine. But now I'm

Re: [flexcoders] Custom Container component and drag 'n drop support

2008-08-17 Thread Weyert de Boer
Thanks! Somehow it worked after I woke up this morning. Now I only need to battle against clipping problems :)

[flexcoders] Re: Web-based Sync data - Flex/Air VS.NET

2008-08-17 Thread Amy
--- In flexcoders@yahoogroups.com, Guy Morton [EMAIL PROTECTED] wrote: Yes, and you are assiduously avoiding mentioning Silverlight's penetration, which will be MUCH lower than Flash. Yes, people can and do install plugins, but many people don't like to do it, that's my point. With

[flexcoders] Re: SecurityError: Error #2060: Security sandbox violation-what is the real solution

2008-08-17 Thread vipinck
So, no one (atleast people at adobe) knows about this. Cool

Re: [flexcoders] Headless compilation with AdvancedDataGrid

2008-08-17 Thread Sebastien ARBOGAST
Which docs? Would you have a link for me? 2008/8/17 Douglas Knudsen [EMAIL PROTECTED] Use Ant. Some examples are in the docs. DK On 8/17/08, Sebastien ARBOGAST [EMAIL PROTECTED]sebastien.arbogast%40gmail.com wrote: I have a Flex Builder Pro license and I'm using it to develop an

[flexcoders] Re: mx:HTTPService or URLRequest ?

2008-08-17 Thread markflex2007
Please help me and I can not find the demo. Thanks M

[flexcoders] Change shape form with graphics effect!

2008-08-17 Thread Daniel
Hey guys... I made a component that extends from UIComponent and have an item renderer. The renderer have two states, an open state and a closed state. The start state is closed, but when the users click on the renderer it changes to the openedState which is bigger. The container of that item

RE: [flexcoders] Headless compilation with AdvancedDataGrid

2008-08-17 Thread Jim Hayes
http://livedocs.adobe.com/flex/3/html/help.html?content=anttasks_1.html -Original Message- From: flexcoders@yahoogroups.com on behalf of Sebastien ARBOGAST Sent: Sun 17/08/2008 16:42 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Headless compilation with AdvancedDataGrid

[flexcoders] Backgroudimage in Datagrid row

2008-08-17 Thread florian.salihovic
Is there a chance to set a background image on a row of a datagrid? I'm searching now for quite a while but can't find any infos in that topic. Just setting the row's background-color. Best regards.

[flexcoders] Problem with ExternalInterface.call

2008-08-17 Thread markgoldin_2000
public function setPlan(resultXML:XML):void { Alert.show(resultXML.toString()); //ExternalInterface.call(window.location.reload(true)); } If I uncomment ExternalInterface.call then reload goes with Alert box being shown. Is that right? Thanks

[flexcoders] Compare two XMLs

2008-08-17 Thread markgoldin_2000
If I have two large xml objects can I compare them whether they are identical? Thanks

Re: [flexcoders] The end of ActionScript 3 as an EcmaScript 4 implementation

2008-08-17 Thread Joseph Balderson
Can we get back on topic here? This is a Flex technical discussion forum discussing the future of ACTIONSCRIPT. Can the paid MS-pundits and SL-bashers go somewhere else please? ___ Joseph Balderson, Flash Platform Developer |

Re: [flexcoders] The end of ActionScript 3 as an EcmaScript 4 implementation

2008-08-17 Thread Joseph Balderson
Well, whomever is holding things up, a standard is only a guideline, right? And that's the risk you take when you base a technology on a comittee: sometimes, and for whatever reason, that committee might steer things in a different direction than you originally intended. Otherwise Adobe would

RE: {Disarmed} [flexcoders] Compare two XMLs

2008-08-17 Thread Scott
You should be able to use the as3 funtion, contains() (see http://livedocs.adobe.com/flex/3/langref/XML.html). You would have to read both XML files then use a loop to go through items bResult = xml1.item[nLoop].contains(xml2.item[nLoop]); if (bResult == false ) { {Not equal do

[flexcoders] flex captcha

2008-08-17 Thread Scott
Does anyone have a good/cool flex(flash) captcha generator? Regards, Scott

Re: [flexcoders] Re: Is there a way to embed flex swf in C++ instead of AIR?

2008-08-17 Thread Jo Morano
Do you know of any sample code on the web that does that? Regards On Sun, Aug 17, 2008 at 5:43 AM, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Jo Morano [EMAIL PROTECTED] wrote: Hi! I need C++ and flex to work together. Can I embed

RE: [flexcoders] Backgroudimage in Datagrid row

2008-08-17 Thread Alex Harui
Expensive, but probably doable. You can do it in your renderer or override drawRowBackground From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of florian.salihovic Sent: Sunday, August 17, 2008 12:44 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: SecurityError: Error #2060: Security sandbox violation-what is the real solution

2008-08-17 Thread Maciek Sakrejda
You're getting annoyed because no one answered your question after seven hours? On a weekend, no less? This is a mailing list, not a chat room. Not to mention that the answer to your question is on a page linked from the ExternalInterface documentation:

RE:[flexcoders] Re: SecurityError: Error #2060: Security sandbox violation-what is the real solution

2008-08-17 Thread Scott
FYI, this is a community user group; not an adobe support forum. Yes, you'll see an adobe employee post a message once in a while but it's mainly a community support group and it's most active Mon-Fri. From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] state and country dropdown boxes

2008-08-17 Thread Scott
Does anyone have/care to share a premade country/state/province dropboxes? I can find a state list, but where does one find an accurate (at least to this day anyway...) country list? Thanks! Scott

[flexcoders] Data binding

2008-08-17 Thread markgoldin_2000
I have DGs and I am assigning dataProviders to these controls at run- time. All these datProviders are XML. The xml has more data that is being shown in DGs. I am changing some of that non visible data programmatically like this: DataGrid(DGObject).dataProvider[selectedIndex].trainplan =

RE:[flexcoders] Data binding

2008-08-17 Thread Scott
The display won't change unless you have a separate process watching the data to see if it changes (ala ajax). Your display will change when the application/class reads the data only. If you are concerned that the data will be inconsistent during a file read, or in other words, read while a file

[flexcoders] 3.1 changelog?

2008-08-17 Thread Josh McDonald
Hey Guys, Is there a changelog for 3.1? I can't seem to find anything via google. -Josh -- Therefore, send not to know For whom the bell tolls. It tolls for thee. :: Josh 'G-Funk' McDonald :: 0437 221 380 :: [EMAIL PROTECTED]

[flexcoders] Re: 3.1 changelog?

2008-08-17 Thread Bjorn Schultheiss
I saw this blog post the other day. differences between Flex 3.1.0 and Flex 3.0.0 http://shigeru-nakagaki.com/index.cfm/2008/8/16/20080816-diff-between-Flex310-and-Flex300 Bjorn --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Hey Guys, Is there a changelog for

Re: [flexcoders] Re: 3.1 changelog?

2008-08-17 Thread Josh McDonald
Yeah just found that :) That's pretty much only API changes though, I was wondering if there's anything official listing bugfixes / changes in builder (if any), etc... Did the Marshall Plan stuff go into 3.1 or is it 3.2? -Josh On Mon, Aug 18, 2008 at 2:54 PM, Bjorn Schultheiss [EMAIL

[flexcoders] Re: 3.1 changelog?

2008-08-17 Thread Bjorn Schultheiss
Quote from the doc The Marshall Plan will only support 3.1 Flex applications working in Flex 4 and beyond. http://opensource.adobe.com/wiki/display/flexsdk/Marshall+Plan In terms of bug-fixes, haven't seen one yet.. Mind you haven't look much either. --- In flexcoders@yahoogroups.com, Josh

Re: [flexcoders] flex captcha

2008-08-17 Thread [EMAIL PROTECTED] Uttarwar
Hey u can try this one which i have created. I have attached the file... Thanks and Regards, Pravin G.Uttarwar, Software Developer, Perennial Systems. Visit Us at:www.perennialsys.com E-mail: [EMAIL PROTECTED] Mob. +919371288080 2008/8/17 Scott [EMAIL PROTECTED] Does anyone have a

RE: [flexcoders] Re: 3.1 changelog?

2008-08-17 Thread Alex Harui
Sorry, we need to update that. Marshall Plan is 3.2, it was going to be 3.1 when we published that page but something came up and we had to bump Marshall plan. The release notes don't have any info on bug fixes? A JIRA search might also yield some information.