Re: [flexcoders] Hi, how do I signal a Binding event from a class?

2010-08-19 Thread Oleg Sivokon
If you make the class bindable, the compiler will extend it from EventDispatcher, or implement IEventDispatcher, this means you can use all event dispatcher methods in that class. However, making a class bindable isn't the best coding practice, I'd rather do it by hand, it' be a more obvious code.

Re: [flexcoders] Hi, how do I signal a Binding event from a class?

2010-08-19 Thread Wesley Acheson
Is the event listener in another class? public function pass():void { _grade = 'A'; } change this method to public function pass():void { grade = 'A'; } On Thu, Aug 19, 2010 at 9:11 PM, luvfotography ygro...@all-digital-links.com wrote: Hi, how do I signal a Binding event that I

Re: [flexcoders] Hi, how to highlight some lines in a document

2009-07-16 Thread Julien Nicoulaud
WHat do you mean by document ? In which component do you want to highlight ? 2009/7/16 Satish Chowdary chinnu_...@yahoo.co.in Hi All, i want to know that how to highlight somes lines in a document when a event(button click) is fired if u any one have idea about this... please help me

Re: [flexcoders] Hi integration Flex Applicaitons with .NET Environment

2009-06-30 Thread Adrian Williams
Hi Satish, We have this exact configuration. Our front end (client-side) is served by our Flex apps, which interact with our database via our .net layer. There are packages out there that you can use (WebOrb is one) but we ended up simply setting up a web service on our .NET side and our

Re: [flexcoders] Hi! And a question about installing an AIR app

2009-03-19 Thread Tom Chiverton
On Wednesday 18 Mar 2009, Sam Lai wrote: Haven't tried deploying AIR apps in such an environment, but may possibly be doing so in the next few months, so I'll be interested to see how you deal with it. We've got Novell's Zen product to manage software on the Windows desktops, and our IT guys

Re: [flexcoders] Hi! And a question about installing an AIR app

2009-03-18 Thread Sam Lai
Yes, you need admin rights for both installing the runtime and the apps. You can just deploy the installed files I think, but you lose the uninstall functionality, and possibly the updating functionality. The former isn't that important to you anyway if your desktops are managed. Haven't tried

Re: [flexcoders] hi! this examples didn't work out,please help

2008-11-06 Thread Tom Chiverton
On Wednesday 05 Nov 2008, Gordon Smith wrote: Declaring public var myFirstProperty:String; is equivalent to declaring public var myFirstProperty:String = null; Yup, but certainly for ArrayCollection, if you create it null rather than empty, it breaks. So it's a good habit to get.

RE: [flexcoders] hi! this examples didn't work out,please help

2008-11-05 Thread Tracy Spratt
You can only do simple initialization of vars outside of a function. If you try, you can get a null object reference. (please give the text of the error, I do not have the numbers memorized) Put that variable assignment into a function, like init() and call it in a creationComplete handler.

Re: [flexcoders] hi! this examples didn't work out,please help

2008-11-05 Thread Tom Chiverton
On Wednesday 05 Nov 2008, ashlytu wrote: [Bindable] public var myFirstProperty:String; You should always give public Bindables a default value: [Bindable] public var myFirstProperty:String=''; -- Tom

RE: [flexcoders] hi! this examples didn't work out,please help

2008-11-05 Thread Gordon Smith
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] hi! this examples didn't work out,please help On Wednesday 05 Nov 2008, ashlytu wrote: [Bindable] public var myFirstProperty:String; You should always give public Bindables a default value

Re: [flexcoders] Hi Alex

2008-09-26 Thread Manu Dhanda
First of all, you should be talking about an application (not an swf). Now, the SIX pages, I took it as SIX views. There are many ways to do that. One of them is: mx:Application mx:Script private function return nextPrevView():void{ if(buttonClicked == prev){ viewstack.selectedIndex =

Re: [flexcoders] Hi Alex

2008-09-26 Thread Michael Schmalle
Deepa, This is a professional list, the title Hi Alex just doesn't work here, please try a more descriptive title for your next post. Mike On Fri, Sep 26, 2008 at 2:31 AM, Manu Dhanda [EMAIL PROTECTED]wrote: First of all, you should be talking about an application (not an swf). Now, the SIX

Re: [flexcoders] Hi Alex

2008-09-26 Thread krshnaonweb
Mike!! I did not notice the title at all. Just saw her query. Thats it ;) .kr On Fri, Sep 26, 2008 at 4:50 PM, Michael Schmalle [EMAIL PROTECTED]wrote: Deepa, This is a professional list, the title Hi Alex just doesn't work here, please try a more descriptive title for your next

Re: [flexcoders] Hi Alex

2008-09-26 Thread Michael Schmalle
Hi, If I understand you correctly, thats not the point (reading the question regardless of the title). The archives get searched all the time and titles that are ambiguous serve no purpose. I read the question to, just moderating. Mike On Fri, Sep 26, 2008 at 11:17 AM, krshnaonweb [EMAIL

Re: [flexcoders] Hi Alex

2008-09-26 Thread krshnaonweb
+ 1 , I totally agree to your point. No ambiguity... .kr On Fri, Sep 26, 2008 at 9:23 PM, Michael Schmalle [EMAIL PROTECTED]wrote: Hi, If I understand you correctly, thats not the point (reading the question regardless of the title). The archives get searched all the time and titles that

Re: [flexcoders] Hi

2008-09-09 Thread Robert Thompson
Nancy, We might be talking about different things. (1) Under the FLEX 2.0 examples, you could, for example, go to the FLEX Style Explorer, http://www.adobe.com/devnet/flex/samples/style_explorer/ (2) Then click on Experience the application which leads you to here,

Re: [flexcoders] Hi

2008-09-09 Thread Haykel BEN JEMIA
Paul and Nancy were talking about the bottom right pane of the explorer that displays the source of the selected control. The sources of the explorer are available with Flex Builder. They are under sdks\version\samples\explorer. On Tue, Sep 9, 2008 at 8:24 AM, Robert Thompson [EMAIL

Re: [flexcoders] Hi

2008-09-09 Thread Paul Andrews
Narayana, Flexcoders is a helpful list, but it's always best to try and help yourself first. Just typing Flex reading XML or Flex XML into google will lead you to a load of help about flex and XML, for example http://www.adobe.com/devnet/flex/quickstart/accessing_xml_data/ The other way that

Re: [flexcoders] Hi

2008-09-09 Thread Robert Thompson
Thanks. For whatever reason nothing appears in the bottom right corner for me, even on Internet Explorer, for the FLEX3 Component Explorer. I'll check the sdk directory though. Tried to run it right from the explorer.html but it wouldn't for Safari or Firefox. I imagine it needs the

Re: [flexcoders] Hi

2008-09-09 Thread Robert Thompson
Hello Narayana, There are no kings on this list so feel free to ask a question. I have had contact with someone at Adobe about an upcoming portal so some of issues people have will go away hopefully. In ActionScript 2.0, I don't have a file open but just from memory, you access the actual

Re: [flexcoders] Hi..

2008-09-08 Thread Johannes Nel
hire someone. On Mon, Sep 8, 2008 at 8:51 AM, Ajay dalal [EMAIL PROTECTED] wrote: Hi, I am a new starter in Flex. I know the basics but could anybody give me any tutorial to build a full featured RIA using Flex in very quick time. Thanks in advance!!! Cheers!!! Ajay -- j:pn

Re: [flexcoders] Hi..

2008-09-08 Thread Howard Fore
There are some good tutorials on the Adobe Flex Developer Center: http://www.adobe.com/devnet/flex/. Also, Google finds some: http://www.google.com/search?q=flex+tutorials. On Mon, Sep 8, 2008 at 2:51 AM, Ajay dalal [EMAIL PROTECTED] wrote: Hi, I am a new starter in Flex. I know the basics

Re: [flexcoders] Hi

2008-09-08 Thread Paul Andrews
Check out the Flex explorer - it has an example for you to follow. http://examples.adobe.com/flex3/componentexplorer/explorer.html Paul - Original Message - From: raj balaji To: Flex Coders Sent: Monday, September 08, 2008 9:55 AM Subject: [flexcoders] Hi Hi all, I want to use

Re: [flexcoders] Hi..

2008-09-08 Thread Alan
http://www.totaltraining.com/?c=linksharen=affiliate http://www.lynda.com/ On Sep 8, 2008, at 2:51 AM, Ajay dalal wrote: Hi, I am a new starter in Flex. I know the basics but could anybody give me any tutorial to build a full featured RIA using Flex in very quick time.

Re: [flexcoders] Hi..

2008-09-08 Thread Nate Beck
2nd for Lynda.com Inexpensive yet quality. On Mon, Sep 8, 2008 at 7:07 AM, Alan [EMAIL PROTECTED] wrote: http://www.totaltraining.com/?c=linksharen=affiliate http://www.lynda.com/ On Sep 8, 2008, at 2:51 AM, Ajay dalal wrote: Hi, I am a new starter in Flex. I know the basics but could

Re: [flexcoders] Hi

2008-09-08 Thread Robert Thompson
That's a great example alright...many applications lend themselves well to this kind of structure. HOWEVER: There does not appear to be a Right-Click VIew Source which brings up a left pane and then allows you to download source. With a lot on most people's plate, this is a good starter

Re: [flexcoders] Hi

2008-09-08 Thread Paul Andrews
- Original Message - From: Robert Thompson To: flexcoders@yahoogroups.com Sent: Monday, September 08, 2008 9:38 PM Subject: Re: [flexcoders] Hi That's a great example alright...many applications lend themselves well to this kind of structure. HOWEVER: There does

Re: [flexcoders] Hi

2008-09-08 Thread Robert Thompson
@yahoogroups.com Sent: Monday, September 08, 2008 9:38 PM Subject: Re: [flexcoders] Hi That's a great example alright...many applications lend themselves well to this kind of structure. HOWEVER: There does not appear to be a Right-Click VIew Source which brings up a left pane and then allows you

Re: [flexcoders] Hi

2008-09-08 Thread Nancy Gill
Thompson To: flexcoders@yahoogroups.com Sent: Monday, September 08, 2008 8:32 PM Subject: Re: [flexcoders] Hi Yes I've noticed that for nearly every other app. But not this one, http://examples.adobe.com/flex3/componentexplorer/explorer.html I've tried in on Firefox and Safari

Re: [flexcoders] hi guys

2008-09-04 Thread Stephen Moretti
2008/9/4 sainathevuri [EMAIL PROTECTED] i'm new to using adobe flex. i need to create a dynamic charting window to be integrated in a web page. Can u help me in knowing what all softwares to be used and what all to learn before getting on with flex? Have you thought about looking at

Re: [flexcoders] Hi Guys Please help me

2008-05-28 Thread Paul Andrews
Rajendra, google is your friend, as is the Adobe website.. http://www.adobe.com/devnet/flex/flex_java.html Paul - Original Message - From: Rajendra Tammana To: flexcoders@yahoogroups.com Sent: Wednesday, May 28, 2008 10:47 AM Subject: [flexcoders] Hi Guys Please help me

Re: [flexcoders] Hi, there. Nice to meet you. I made somthing with FLEX

2008-04-07 Thread Chitra S.Pai
Hi The site is very nice... The effects are super. Hope you will work better and make it perfect. Also I have a doubt, are you using RSS feeders to get those data If yes, How did you connect the RSS feeders to Flex.?.. And if I delete QA questions will it hide from my page or delete from

Re: [flexcoders] Hi, there. Nice to meet you. I made somthing with FLEX

2008-04-07 Thread Anirudh Sasikumar
Awesome! Cheers, -- Anirudh Sasikumar http://anirudhs.chaosnet.org/

Re: [flexcoders] Hi, there. Nice to meet you. I made somthing with FLEX

2008-04-07 Thread Vivian Richard
Looks very Attractive. But I was not able to see and content inside, just saw the interface. I do not know why I am not getting any content. May be you did not put any. Everything is good but I will suggest that when you resize the middle panel please use effect instead jumping to

Re: [flexcoders] Hi All we all want Flex TO Rock

2008-02-29 Thread Matt Chotin
Hi all, As stated on flexcomponents this FR is considered external because it's a Player issue and it is already in the Player bugbase (and they are strongly considering it). So don't waste votes here... Matt On 2/29/08 4:39 AM, Cato Paus [EMAIL PROTECTED] wrote:

RE: [flexcoders] Hi

2008-01-11 Thread Tracy Spratt
I can't help with that, but please, make your subject descriptive of your question or problem. Many of us are too busy to even read a post with no subject. Maybe that is why you have no responses.. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Hi GUYS..

2007-08-31 Thread Tracy Spratt
Also, please make your subject descriptive of your question/issue. Many of us read only posts whose subjects suggest that we might be able to answer. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bharath Graphics Sent: Friday,

Re: [flexcoders] Hi

2007-03-27 Thread Tom Chiverton
On Tuesday 27 Mar 2007, eshpaleti wrote: can somebody tell me the flow of Flex Application and when to write the code in MXML and when to write in normal XML . MXML is a dialect of XML that the Flex compiler can turn into a SWF flash file. But I'm not sure what you are asking ? -- Tom

Re: [flexcoders] Hi

2007-03-27 Thread Nasir Siddiqui
When we make flex application that is to be written in MXML file and it is compiled into swf file it defines the interface of the application. Action Scripting can also be done in MXML file or in Separate .as file and XML is used for different purposes. On 3/27/07, eshpaleti [EMAIL PROTECTED]

Re: [flexcoders] Hi Hello

2007-03-26 Thread Ajay K
Hi , Please go through them this may help you http://coenraets.org/blog/2007/01/flex-test-drive-server-for-java-developers-tomcat-based/ http://coenraets.org/download/fds-tomcat.zip With Regards Ajay K eshpaleti [EMAIL PROTECTED] wrote:can some body give

Re: [flexcoders] Hi there

2006-10-29 Thread Jaga
: [flexcoders] Hi there Hi there man.Just go to www.adobe.com/ devnet/flex and than take a look at the Quick starts tutorials.RegardsOn 10/28/06, write2jaga jag_absm2003@ yahoo.com wrote: hi, i am new to this flex community and the software

Re: [flexcoders] Hi there

2006-10-28 Thread Igor Costa
Hi there man.Just go to www.adobe.com/devnet/flex and than take a look at the Quick starts tutorials.RegardsOn 10/28/06, write2jaga [EMAIL PROTECTED] wrote: hi, i am new to this flex community and the software, i am doing a web layout using flex. i have

Re: [flexcoders] hi

2006-08-18 Thread Tom Chiverton
On Tuesday 15 August 2006 18:52, bardnivar wrote: hi iam new to flex, for learning flex should i know java No. You will need *some* server side skills - though as long as they can be exposed over a standard web server, Flex will talk to them. ColdFusion, Java or PHP seem to be the main

Re: [flexcoders] hi

2006-08-18 Thread Famakinwa Babatunde
It is not a must to know JAVA. I use Flex with ASP.NET and it worrks well for me and you can also to same with PHP, CF. - Original Message From: Tom Chiverton [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Friday, August 18, 2006 9:13:01 AMSubject: Re: [flexcoders] hi On Tuesday 15

Re: [flexcoders] hi

2006-08-18 Thread Marcelo de Moraes Serpa
use Flex with ASP.NET and it worrks well for me and you can also to same with PHP, CF. - Original Message From: Tom Chiverton [EMAIL PROTECTED] To: [EMAIL PROTECTED]ups.comSent: Friday, August 18, 2006 9:13:01 AMSubject: Re: [flexcoders] hi On Tuesday 15 August 2006 18:52, bardnivar wrote

Re: [flexcoders] hi

2006-08-15 Thread Samuel D. Colak
Title: Re: [flexcoders] hi Flex is a new up and coming technology and being honest one requirement is a sense of humor and a willingness (at least at the moment anyhow) to spend a lot of nights without sleep ;P Welcome to the club, pull up a seat and try the coffee Stay a while, Stay

Re: [flexcoders] hi

2006-08-15 Thread Marcelo de Moraes Serpa
Hey Samuel, you´re absolutely right on the sleepless nights and our best friend coffee! And of course once you´re in you can never go back! Flash Platform will hook you forever.And no, you shouldn´t know java. However both languages are pretty similar, so, knowing one will let you move to

Re: [flexcoders] Hi, everyone, anyone has an idea how to listen every user action for the whole app

2006-02-08 Thread Dominick Accattato
I would create a class... call it something like ApplicationTimeOut. Then inside the class, I would initialize it by registering for a number of events such as the MouseEvent.* etc.. Then I would also allow the class to broadcast events that call for timedout views which could just be a screen

RE: [flexcoders] Hi Avik

2006-01-06 Thread Avik Chakrabarty
Hi Kaushik,First of All a very Happy New Year to you.Just has to say a Hi, I am working on the Flex Development. Actually we are based in Arizonia, US a city called Tucson. Here we are developing a seb based application which frond end is Flex 1.5, and backend is Java. So I am handling abt the

RE: [flexcoders] Hi Avik

2006-01-06 Thread Dekayd Media Inc.
@yahoogroups.com Subject: RE: [flexcoders] Hi Avik Hi Kaushik, First of All a very Happy New Year to you. Just has to say a Hi, I am working on the Flex Development. Actually we are based in Arizonia, US a city called Tucson. Here we are developing a seb based application which frond end is Flex

Re: [flexcoders] hi, i am new to flex, can any one help me how so go with it ?

2005-10-18 Thread Ramu p
: flexcoders@yahoogroups.com] On Behalf Of Ramu pSent: Monday, October 17, 2005 6:26 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] hi, i am new to flex, can any one help me how so go with it ? Hi guys, Nice to know that ur all from Blore. Even I started using Flex just 2mnths back

Re: [flexcoders] hi, i am new to flex, can any one help me how so go with it ?

2005-10-17 Thread Ramu p
Hi guys, Nice to know that ur all from Blore. Even I started using Flex just 2mnths back... Need ur support! Thx in advance. On 10/12/05, Manish Jethani [EMAIL PROTECTED] wrote: On 10/10/05, Ramu p [EMAIL PROTECTED] wrote: Nice to know that u r from Blore, India, where I am also from. I

RE: [flexcoders] hi, i am new to flex, can any one help me how so go with it ?

2005-10-17 Thread Abdul Qabiz
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ramu pSent: Monday, October 17, 2005 6:26 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] hi, i am new to flex, can any one help me how so go with it ? Hi guys, Nice to know that ur all from Blore. Even I started using Flex just 2mnths

Re: [flexcoders] hi, i am new to flex, can any one help me how so go with it ?

2005-10-12 Thread Manish Jethani
On 10/10/05, Ramu p [EMAIL PROTECTED] wrote: Nice to know that u r from Blore, India, where I am also from. I think we need a Flex User Group (TM) in Bangalore. Send an email Abdul Qabiz (aqabiz at macromedia.com) if anyone's interested. Yahoo! Groups Sponsor

Re: [flexcoders] hi, i am new to flex, can any one help me how so go with it ?

2005-10-11 Thread Ramu p
Hi gonchu24. Nice to know that u r from Blore, India, where I am also from. Well, to start learning Flex,I guess u Flex server and Builder(Not mendatory) Start using tags and if u r familiar with AS, you can easily proceed. For all clarifications, mail me back. Ram. Flex Eng. Blore,India.

Re: [flexcoders] hi

2005-02-01 Thread Sagar Kulkarni
Hello Sandip, You can ask [EMAIL PROTECTED] for .net beta version Sandip wrote: Hello Experts, I am new to this technology and interested in Flex development with .NET, can anybody help me and provide me any beta version that I can use to develop flex applications using .NET. thanx 'n regards,