[flexcoders] NEW Melbourne Flex User Group

2010-05-25 Thread Dale Fraser
We are officially up and running for the new Melbourne Flex User Group. The group is all established and the old one has been removed. I am also looking to have someone help me in a Co / Manager capacity. There are advantages to running a User Group including software entitlements and

Re: [flexcoders] New Into Flex

2009-04-27 Thread Brad Bueche
cflex.net tv.adobe.com http://www.adobe.com/devnet/flex/ Are good places to start. brad On Sat, Apr 25, 2009 at 10:18 PM, angelo_anolin angelo_ano...@yahoo.comwrote: Hi Everyone. Am new into this flex thing and I really appreciate the way it is evolving for developing rich internet

[flexcoders] New Into Flex

2009-04-26 Thread angelo_anolin
Hi Everyone. Am new into this flex thing and I really appreciate the way it is evolving for developing rich internet applications. I already have the free ebook Getting Started With Adobe Flex3. I would like to learn a lot more on developing Flex web data applications. Something that

[flexcoders] New with Flex: Problem with data binding

2009-03-05 Thread Martin Gorostegui
Hi people, I'm starting with Flex technology and have some doubts on how datadinding between client-side objects work. After reading Adobe's Flex3 and playing with some samples I ended up with the following situation: Created a Product.as class declared as bindable. Created a product.mxml in

Re: [flexcoders] new to flex, problems installing Flex 4 SDK

2008-10-22 Thread Tom Chiverton
On Tuesday 21 Oct 2008, Pedro Kostelec wrote: I am completely new to flex. I find it very difficult to install the Flex 4. I strongly suggest using Flex 3 if you are brand new. Flex 4 hasn't been released yet, and unless you *really* need some of the new features, you'll find Flex 3 much

[flexcoders] new to flex, problems installing Flex 4 SDK

2008-10-21 Thread Pedro Kostelec
Hi I am completely new to flex. I find it very difficult to install the Flex 4.(http://opensource.adobe.com/wiki/display/flexsdk/Gumbo). First i extracted the zip in D:\Program Files\Adobe\Adobe Gumbo 4 then i followed the instuction to install it from here:

[flexcoders] New to flex, why are the charts so tempermental?

2008-10-08 Thread Vince Gatto
Recently we decided to switch from an open source AS2 based flash chart to using Flex 3 for our charting to get more control over the styling of the chart. I'm pretty new to Flex, but so far I'm pretty disappointed by the out of the box behavior of the charts. Basically, I'm trying to do

[flexcoders] New to FLEX

2008-09-22 Thread NATA RAJAN
Hi friends am new to FLEX . can u send what are the flex sites to learn and PDF books and sample codings which u worked regards Natarajan Connect with friends all over the world. Get Yahoo! India Messenger at http://in.messenger.yahoo.com/?wm=n/

Re: [flexcoders] New to FLEX

2008-09-22 Thread Sherif Abdou
Http://feeds.adobe.com http://adobe.com/flex -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original Message - From: NATA RAJAN To: flexcoders@yahoogroups.com Sent: Monday, September 22, 2008 11:51 AM Subject: [flexcoders] New to FLEX Hi friends

Re: [flexcoders] New to FLEX

2008-09-22 Thread Doug McCune
http://VadexFX.com http://Sherifabdou.com - Original Message - From: NATA RAJAN To: flexcoders@yahoogroups.com Sent: Monday, September 22, 2008 11:51 AM Subject: [flexcoders] New to FLEX Hi friends am new to FLEX . can u send what are the flex sites to learn and PDF books

Re: [flexcoders] New to FLEX

2008-09-22 Thread Nancy Gill
, 2008 11:30 AM Subject: Re: [flexcoders] New to FLEX [Shameless Plug] Flex for Dummies! http://dougmccune.com/blog/flex-for-dummies/ http://www.amazon.com/Adobe-Flex-Dummies-Computer-Tech/dp/0470277920 On Mon, Sep 22, 2008 at 11:28 AM, Sherif Abdou [EMAIL PROTECTED] wrote

Re: [flexcoders] New to FLEX

2008-09-22 Thread Doug McCune
- Original Message - From: Doug McCune To: flexcoders@yahoogroups.com Sent: Monday, September 22, 2008 11:30 AM Subject: Re: [flexcoders] New to FLEX [Shameless Plug] Flex for Dummies! http://dougmccune.com/blog/flex-for-dummies/ http://www.amazon.com/Adobe-Flex-Dummies-Computer

Re: [flexcoders] New to FLEX

2008-09-22 Thread Nancy Gill
I most definitely will check out the website .. thanks for the tip! Nancy - Original Message - From: Doug McCune To: flexcoders@yahoogroups.com Sent: Monday, September 22, 2008 12:46 PM Subject: Re: [flexcoders] New to FLEX Yeah, it's a hard line to walk trying to write

RE: [flexcoders] New to FLEX

2008-09-22 Thread Dimitrios Gianninas
] On Behalf Of NATA RAJAN Sent: Monday, September 22, 2008 12:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] New to FLEX Hi friends am new to FLEX . can u send what are the flex sites to learn and PDF books and sample codings which u worked regards Natarajan

Re: [flexcoders] New to flex, wonder why one works and the other doesn't...

2008-06-01 Thread Charlie Hubbard
Right. Image is a UIComponent, and TextArea is a UIComponent. UIComponent's can't contain other UIComponents without being a subclass of Container or implementing the IContainer interface. Not a simple task. addChild() is defined in DisplayObject which apart of the Flash API not the Flex API.

Re: [flexcoders] New to flex, wonder why one works and the other doesn't...

2008-06-01 Thread Charlie Hubbard
Damn. Sorry the last paragraph should read: Since the bitmap is not apart of the document in the TextArea you aren't going to get clipping or scrolling of that image. Charlie On Sun, Jun 1, 2008 at 10:52 AM, Charlie Hubbard [EMAIL PROTECTED] wrote: Right. Image is a UIComponent, and TextArea

Re: [flexcoders] New to flex, wonder why one works and the other doesn't...

2008-06-01 Thread Joseph Balderson
Of course! I knew the answer was simple, man that was bugging me. Thanks Charlie. :) ___ Joseph Balderson | http://joeflash.ca Flex Flash Platform Developer | Abobe Certified Developer Trainer Author, Professional Flex 3

Re: [flexcoders] New to flex, wonder why one works and the other doesn't...

2008-05-31 Thread Joseph Balderson
This one was interesting, at first glance looks like it should work, until I actually tried it. Turns out TeatArea inherits from UIComponent, but it does not inherit from Container, which contain methods for adding and removing Flex children. So you cannot add an Image to a TextArea using

[flexcoders] New to flex, wonder why one works and the other doesn't...

2008-05-29 Thread aarhac
Hello, I have figured out how to work around my problem, but I do wonder why one of the following methods works, and the other doesn't. I would be grateful if someone could explain the error in the failing method. The code is pasted below (Below the line of dashes) in it's entirety, and is

[flexcoders] new to flex, tutorial code doesnt work!

2008-03-31 Thread funkbunny08
Hi, I'm brand new to flex using flex builder 3. I'm trying to build the simple RIA from the Adobe tutorial and I get a parse error, even though the code is identical. Here is the code: mx:TileList width=100% height=100% / dataProvider={photoFeed}; mx:itemRenderer mx:Component

Re: [flexcoders] new to flex, tutorial code doesnt work!

2008-03-31 Thread shaun
Hi, funkbunny08 wrote: Hi, I'm brand new to flex using flex builder 3. I'm trying to build the simple RIA from the Adobe tutorial and I get a parse error, even though the code is identical. Here is the code: mx:TileList width=100% height=100% / Change the TileList line above so its not

[flexcoders] new to FLEX

2007-12-07 Thread dengelwood
Hi, I am new to FLEX development, but am quite excited about the possiblities of this IDE. Question: My company is using hand held USB bar code scanners to enter user data into one or more text fields. Is it possible in FLEX to capure such scanned data? Anything to point me in the right

[flexcoders] New to flex

2007-11-06 Thread marlin1111
I started a flex project and added a button to the main.mxml. I want it to go to the aboutus mxml but i don't know how could someone help me.

Re: [flexcoders] New to flex

2007-11-06 Thread Scott Melby
You probably want to use a view stack or states. Those should get you where you want to go. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com marlin wrote: I started a flex project and added a button to the main.mxml. I want it to go to the aboutus mxml

Re: [flexcoders] New to Flex--using Flex classes in AS3 projects?

2007-05-10 Thread Tom Chiverton
On Wednesday 09 May 2007, David Ham wrote: I saw in the Flex SDK that in the frameworks/source folder there are a bunch of AS class files for Flex classes. Is it possible to use these for a pure AS3 project? If they don't call on the Flex framework, yes. Flex is 'just' a set of AS3 components,

[flexcoders] New to Flex--using Flex classes in AS3 projects?

2007-05-09 Thread David Ham
Hi, I am very new to Flex and am coming at it in a roundabout way. I downloaded Luke Bayes' and Ali Mills' fantastic ASProject and was trying a simple Hello World project, and compiling it for AS3 with MXMLC. I saw in the Flex SDK that in the frameworks/source folder there are a bunch of AS

[flexcoders] New to Flex

2007-02-23 Thread Robert Shaw
OK I guess I am an idiot. My boss finally decided for us to adapt to Adobe products starting with Flex. I installed the Flex 2.0.1 version and used the Coldfusion application wizard to create a list grid detail page. Worked fine. Created the CFC and displayed the grid. But for the life of me I

Re: [flexcoders] New to Flex

2007-02-23 Thread Clint Tredway
the mxml code is here: com.cfgenerated.controllers. look in the cfgenerated directory for more directories as well. On 2/23/07, Robert Shaw [EMAIL PROTECTED] wrote: OK I guess I am an idiot. My boss finally decided for us to adapt to Adobe products starting with Flex. I installed the Flex

Re: [flexcoders] New to Flex

2007-02-23 Thread Tom Chiverton
On Friday 23 Feb 2007, Robert Shaw wrote: displayed the grid. But for the life of me I can't find the page that  xmlns:controllers=com.cfgenerated.controllers.* controllers:windowedApplication top=0 left=0 right=0 bottom=0/ /mx:AddChild The 'xmlns' line says that when you see

[flexcoders] New to Flex and question of course....

2007-01-29 Thread Steven Titus
Hi, I'm new tp Flex and am trying to debug a 3rd party developed WAR portlet developed/wrapped in Flex for Websphere 6.1 I've managed to get through many issues (like the JNDI naming), but am stuck here. Can anyone help point me in the right direction of where this problem actually resides.

[flexcoders] New To Flex -- Autoincrement a variable?

2007-01-15 Thread David Steele
This is very easy to do in earlier versions of AS but I can't see how to do it in Flex. I want to autoincrement a variable and display it in a textbox. In earlier versions of AS I'd just put an onEnterFrame and increment a variable. Can anyone tell me how to do this?? Thanks, David

RE: [flexcoders] New To Flex -- Autoincrement a variable?

2007-01-15 Thread Tracy Spratt
Increment at what event or action? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Steele Sent: Monday, January 15, 2007 12:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] New To Flex -- Autoincrement a variable

[flexcoders] New to Flex - dynamic text in mx:Label?

2007-01-11 Thread Alex
Hi there, Given this function: mx:Script ![CDATA[ private function statusToImage(data:String):String { return test; } ]] /mx:Script How precisely can I set it as

Re: [flexcoders] New to Flex - dynamic text in mx:Label?

2007-01-11 Thread Roman Protsiuk
Hi, Alex. Tried your example. It works. %) However, maybe what you need is something like this: [Bindable] protected function get someText() : String { return _someText; } protected function set someText(value : String) : void { _someText = statusToImage(value); }

Re: [flexcoders] New to Flex - dynamic text in mx:Label?

2007-01-11 Thread Alexandre Lemaire
/mx:Component /mx:itemRenderer /mx:DataGridColumn - Original Message - From: Roman Protsiuk To: flexcoders@yahoogroups.com Sent: Thursday, January 11, 2007 9:11 AM Subject: Re: [flexcoders] New to Flex - dynamic text in mx:Label? Hi, Alex. Tried your example. It works

RE: [flexcoders] New to Flex - dynamic text in mx:Label?

2007-01-11 Thread Tracy Spratt
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Lemaire Sent: Thursday, January 11, 2007 10:32 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] New to Flex - dynamic text in mx:Label?  Would the problem be the manner in which I am invoking

Re: [flexcoders] New to Flex 2.0 Help please

2006-06-20 Thread Tom Chiverton
On Monday 19 June 2006 02:45, Silpa sirivella wrote: I may have to develop some RIA application using Flex2.0. I'm using Weblogic as my application server. When try to . I've got Flex 1.5 jars(flex-bootstrap.jar). do i need to update any jars for flex 2.0? if so where can i get new jar files.

[flexcoders] New to Flex 2.0 Help please

2006-06-19 Thread Silpa sirivella
Hi all, I'm new to Flex. I may have to develop some RIA application using Flex2.0. I'm using Weblogic as my application server. When try to locate my index.mxml(http://localhost:7001/index.mxml), i'm getting following error. 22 Errors found. Error /index.mxml:2 Unknown attribute 'layout'

Re: [flexcoders] New to Flex Skinning.

2006-05-24 Thread poonam vora
what kinda errors it shows?then we can understand the problem on which section rite??and describe more about ur exact problemreply soon.Gareth Edwards [EMAIL PROTECTED] wrote:Been working on a little something, and I decided to attempt to style some of what I'm working on. I have

RE: [flexcoders] New to Flex Skinning.

2006-05-24 Thread Gordon Smith
To: flexcoders@yahoogroups.com Subject: [flexcoders] New to Flex Skinning. Been working on a little something, and I decided to attempt to style some of what I'm working on. I have attempted to use the css and some ClassReferences to do some skinning. The first thing I get stuck on, and can't seem

[flexcoders] New to Flex Skinning.

2006-05-23 Thread Gareth Edwards
Been working on a little something, and I decided to attempt to style some of what I'm working on. I have attempted to use the css and some ClassReferences to do some skinning. The first thing I get stuck on, and can't seem to get past, I'm pretty sure I'm not doing something right, but I

RE: [flexcoders] New to Flex and deciding...

2006-04-30 Thread David Mendels
Hello, 1. Somewhere they say that the SDK is now free but the builder ispriced and with that will be one framework license. I don't quiteunderstand what is this framework license. The Framework and compiler are free for both development and deployment.You can use them with any text

Re: [flexcoders] New to Flex and deciding...

2006-04-30 Thread JesterXL
] To: flexcoders@yahoogroups.com Sent: Saturday, April 29, 2006 10:05 PM Subject: [flexcoders] New to Flex and deciding... Hi, I am new to Flex, bought the Flex book and started using the 2.0 beta. I love it. I am however confused by the Flex2.0 licensing. What is free and what is not? 1. Somewhere they say

Re: [flexcoders] New to Flex and deciding...

2006-04-30 Thread Nasir Khan
Manuel/David/JesterXL Thanks a lot for the clarifications and insights. Are all the licensing details you mentioned already finalized at Macromedia or are they still deciding? The reason I ask this again is because I could not find this information on any official macromedia site, there are

RE: [flexcoders] New to Flex and deciding...

2006-04-30 Thread David Mendels
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nasir Khan Sent: Sunday, April 30, 2006 2:50 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] New to Flex and deciding... Manuel/David/JesterXL Thanks a lot

RE: [flexcoders] New to Flex, couple of questions

2006-04-30 Thread Sascha Balkau
:44 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] New to Flex, couple of questions Importance: High Hi - and welcome to Flex :) MXML files get turned into AS prior compilation and you can do pretty anything either in MXML or AS. A typical usecase is to setup a Controller inside

[flexcoders] New to Flex and deciding...

2006-04-29 Thread nasirk09
Hi, I am new to Flex, bought the Flex book and started using the 2.0 beta. I love it. I am however confused by the Flex2.0 licensing. What is free and what is not? 1. Somewhere they say that the SDK is now free but the builder is priced and with that will be one framework license. I don't

RE: [flexcoders] New to Flex, couple of questions

2006-04-24 Thread Sascha Balkau
Of JB Sent: Friday, 21. April, 2006 23:04 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] New to Flex, couple of questions Importance: High Hi, Check out Simeon Bateman site http://www.simb.net/blog/ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

RE: [flexcoders] New to Flex, couple of questions

2006-04-24 Thread Sascha Balkau
, 22. April, 2006 02:34 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] New to Flex, couple of questions I am not doing 2.0 yet, but in 1.5 you can put your AS code in a class file, and then either instantiate it in a tag, or make the class methods static, import it and then use

RE: [flexcoders] New to Flex, couple of questions

2006-04-24 Thread Dirk Eismann
: [flexcoders] New to Flex, couple of questions Hi Tracy, An example would be great if you got any. Even if it's in 1.5 I think it will be helpful to understand how AS and Flex works together. Thanks, Sascha -Original Message- From: flexcoders@yahoogroups.com [mailto

RE: [flexcoders] New to Flex, couple of questions

2006-04-24 Thread Tracy Spratt
getBar():String{ return BAR; } }//UtilityClassStatic -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sascha Balkau Sent: Monday, April 24, 2006 12:36 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] New to Flex, couple of questions Hi

[flexcoders] New to Flex, couple of questions

2006-04-21 Thread Sascha Balkau
Hi list, I'm familiar with ActionScript 2.0 but new to Flex and just started learning Flex 2.0 and AS3.0. I'm amazed how easy and flexible components can be used with Flex but I got a few questions about it... So far I have only seen MXML code with embedded ActionScript. But I prefer to write

Re: [flexcoders] New to Flex, couple of questions

2006-04-21 Thread JB
Hi,Check out Simeon Bateman sitehttp://www.simb.net/blog/Sascha Balkau [EMAIL PROTECTED] wrote:Hi list, I'm familiar with ActionScript 2.0 but new to Flex and just started learning Flex 2.0 and AS3.0. I'm amazed how easy and flexible components can be used with Flex but I got a few

RE: [flexcoders] New to Flex, couple of questions

2006-04-21 Thread Tracy Spratt
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sascha Balkau Sent: Friday, April 21, 2006 12:26 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] New to Flex, couple of questions Hi list, I'm familiar with ActionScript 2.0 but new to Flex and just started learning Flex 2.0

[flexcoders] New to Flex, and mxml and getting an error trying to use RSS

2006-01-03 Thread malik_robinson
Hi, I am very new to Flex and trying to try some basic tutorials in the help documentation that comes with Flex Builder 2 alpha. I searched the mailing list/archives trying to find out why I get the following error message but to no avail. The error is below: The processing instruction

RE: [flexcoders] New to Flex, and mxml and getting an error trying to use RSS

2006-01-03 Thread Franck de Bruijn
@yahoogroups.com Subject: [flexcoders] New to Flex, and mxml and getting an error trying to use RSS Hi, I am very new to Flex and trying to try some basic tutorials in the help documentation that comes with Flex Builder 2 alpha. I searched the mailing list/archives trying to find out why I get

[flexcoders] New To Flex

2005-11-04 Thread Alan
I've been playing with Flex on and off over the last year. I recently downloaded Flex 2 Alpha 1 and I like what I see, however I'm a newbie to application development. I would like to get my arms around Flex 2, but other than the few tutorials that Macromedia has on thier site I haven't been

RE: [flexcoders] New To Flex

2005-11-04 Thread Matt Chotin
generally remain helpful for the concepts even if some of the code might need to be updated. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alan Sent: Friday, November 04, 2005 10:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] New To Flex I've

[flexcoders] New to Flex, Questions for datagrid

2005-06-20 Thread mehrotraritesh
Hi All, I am new to Flex enviornment and have been assigned to investigate whether flex would make right choice for our application (VC++) based to move to Flex and this is where I am looking for help. I have few questions: Can Flex DataGrid conrol 1. Manage to hold more 1,00,000 rows with

RE: [flexcoders] New to Flex, Questions for datagrid

2005-06-20 Thread Dimitrios Gianninas
) easily done via CellRenderer 5) easily done via CellRenderer Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: mehrotraritesh [mailto:[EMAIL PROTECTED] Sent: Monday, June 20, 2005 10:12 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] New to Flex,

RE: [flexcoders] New to Flex and having difficulties with validat ion

2005-03-06 Thread Matt Chotin
, 200512:20 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] New to Flex and having difficulties with validation Hi Matt, I want the values of the edgesmodel, that could have been modified, validated, and offcourse turn the borders of the textinput red when they don't validate

RE: [flexcoders] New to Flex and having difficulties with validation

2005-03-04 Thread Jeroen De Vos
] Verzonden: vrijdag 4 maart 2005 5:57Aan: flexcoders@yahoogroups.comOnderwerp: RE: [flexcoders] New to Flex and having difficulties with validation You want each individual field validated the same way or are you trying to validate the edgesmodel as a whole? Validators dont really work well