[flexcoders] Hi

2013-04-30 Thread rob_parkhill

http://incircuito.com.br/guests.htm?uwopyb=496673&saqenil=45517



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 changed a variable in a class?
>
> I've created an instance and the binding variable is not getting updated. .
> .??
>
> I've got a class 'Student' , with a function 'pass' that sets the variable
> 'grade' to 'A'
>
> package {
>
> [Bindable]
> public class Student {
> private var _name:String;
> private var _grade:String;
>
> public function Student(name:String):void {
> _name = name;
> }
> public function pass():void {
> _grade = 'A';
> }
> private function set name(value:String):void {
> _name = value;
> }
> private function get name():String {
> return _name;
> }
> private function set grade(value:String):void {
> _grade = value;
> }
> private function get grade():String {
> return _grade;
> }
> }
>
>  
>


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.


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

2010-08-19 Thread luvfotography
Hi, how do I signal a Binding event that I changed a variable in a class?

I've created an instance and the binding variable is not getting updated. . .??

I've got a class 'Student' , with a function 'pass' that sets the variable 
'grade' to 'A'



package {

[Bindable]
public class Student {
   private var _name:String;
   private var _grade:String;
 
   public function Student(name:String):void {
_name = name; 
}
   public function pass():void {
  _grade = 'A';
}
   private function set name(value:String):void {
_name = value;
}
   private function get name():String {
  return _name;
}
private function set grade(value:String):void {
_grade = value;
}
   private function get grade():String {
  return _grade;
}
} 



[flexcoders] Hi guys i have one problem while configuring target runtime for apcahe tomcat...

2010-02-05 Thread naveenm_006
Hi guys i have one problem while configuring target runtime for apcahe tomcat v 
6.0 in Flex Builder 3.0.2 Professional Eclipse Plugin.Also unable to find 
tomcat v6.0 in that list.Can anybody resolve my problem?

Regards,
Naveen.



[flexcoders] Hi All

2009-09-18 Thread Calbeans
I just joined the group today and I'm really excited to learn more about Flex 
and AS3.



[flexcoders] Hi, I have some questions about the olapgatagrid.

2009-08-19 Thread riteshyadav14
 Hi, I have some questions about the olapgatagrid. 
-IS there any way to add two values of Olap data by looping through data and 
display the total value as final total on the grid . This is kind of 
functionality we can achieve on XML Data is this possible for OLAP Data also . 
- Can we use result of OLAP Query for the Charting Component as the data 
provider 
RItesh



[flexcoders] hi, having problem with print function

2009-07-22 Thread subba reddy
can any one give me the code to convert html page to pdf using flex, iText.
How to add external CSS to generated pdf file.
-- 
Thanks and Regards,
V.V.Subba Reddy.


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 

>
>
>  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 out...
> am working on some citation map concept
>
> Thannks inAdvacne
> Satish
> సతీష్
>
> --
> Yahoo! recommends that you upgrade to the new and safer Internet Explorer
> 8.
>
> 
>


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

2009-07-16 Thread Satish Chowdary
 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 out...
am working on some citation map concept


Thannks inAdvacne
Satish
సతీష్



  Yahoo! recommends that you upgrade to the new and safer Internet Explorer 
8. http://downloads.yahoo.com/in/internetexplorer/

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 
flex just interacts directly with it.


Adrian

Satish Chowdary wrote:



Hi All,

could u please provide the information about how to integrate FLEX 
application with .NET Environment..

sending sample code appreciated
 
Thanks inAdvance

సతà±EURà°·à±?



*From:* golnooshp 
*To:* flexcoders@yahoogroups.com
*Sent:* Monday, 29 June, 2009 3:43:39 PM
*Subject:* [flexcoders] How to add custom sorting to AdvancedDataGrid 
to worked on grouped Data?


Hi,
I have an advancedDataGrid that I need to add custom sorting to it 
which overrides the original sort! my sorting should work using a 
combobox to select ascending and desending from with a sort button! I 
know this is a bug in flex that its original sorting only works in 
hierarchical data and not for groupingCollection
the dataProvider of my grid is a flat data. however, in the UI, the 
user can add grouping to the AdvancedDataGrid. so I want the sort to 
work on grouped data!
let's say the columns are : country, province, city. population and 
there is grouping on country and province

so the sorting should do the following:
1) if the user does a descending sort on country: only unitedStates 
will go up and Canada will go down.
2)if the user does a descending sort on province: the order of the 
grouping of province will change to Quebec, Ontario, British Columbia
3) if the user does a soring on city: although this is not a grouped 
column, it should do the sorting on all the cities.


Thanks,



Love Cricket? Check out live scores, photos, video highlights and 
more. Click here 
.




[flexcoders] Hi integration Flex Applicaitons with .NET Environment

2009-06-30 Thread Satish Chowdary
Hi All,

could u please provide the information about how to integrate FLEX application 
with .NET Environment..
sending sample code appreciated 

 
Thanks inAdvance
సతీష్





From: golnooshp 
To: flexcoders@yahoogroups.com
Sent: Monday, 29 June, 2009 3:43:39 PM
Subject: [flexcoders] How to add custom sorting to AdvancedDataGrid to worked 
on grouped Data?





Hi,
I have an advancedDataGrid that I need to add custom sorting to it which 
overrides the original sort! my sorting should work using a combobox to select 
ascending and desending from with a sort button! I know this is a bug in flex 
that its original sorting only works in hierarchical data and not for 
groupingCollection
the dataProvider of my grid is a flat data. however, in the UI, the user can 
add grouping to the AdvancedDataGrid. so I want the sort to work on grouped 
data! 
let's say the columns are : country, province, city. population and there is 
grouping on country and province 
so the sorting should do the following: 
1) if the user does a descending sort on country: only unitedStates will go up 
and Canada will go down.
2)if the user does a descending sort on province: the order of the grouping of 
province will change to Quebec, Ontario, British Columbia
3) if the user does a soring on city: although this is not a grouped column, it 
should do the sorting on all the cities.

Thanks,


   


  Cricket on your mind? Visit the ultimate cricket website. Enter 
http://cricket.yahoo.com

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 were able to very quickly get the runtime and app to work with 
it, once signing up to the AIR re-dist. agreement.

-- 
Tom Chiverton
Helping to dramatically introduce 24/365 bleeding-edge back-end magnetic 
convergence as part of the IT team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
?partner? to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

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 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.

2009/3/18 Stuart Greenberg :
> First of all, I'd like to say hi to everyone. I'm new to Flex and happy to 
> find such an active group.
>
> I'm developing an AIR application at work and need to deploy it on a few 
> desktops in one of our offices. The users do not have admin rights and the 
> desktop is pretty well locked down. Does anyone know if they need admin 
> rights to install an AIR app or do they just need it to install the AIR 
> Runtime? My other alternative is to use SMS to push out the install.
>
> I'd appreciate hearing from anyone with experience with AIR in an enterprise 
> environment.
>
> Thanks.
>
> -Stu Greenberg
> GUI Gumdrops
> http://www.guigumdrops.com
>
>
>
> 
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Alternative FAQ location: 
> https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>
>
>
>


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

2009-03-17 Thread Stuart Greenberg
First of all, I'd like to say hi to everyone. I'm new to Flex and happy to find 
such an active group.

I'm developing an AIR application at work and need to deploy it on a few 
desktops in one of our offices. The users do not have admin rights and the 
desktop is pretty well locked down. Does anyone know if they need admin rights 
to install an AIR app or do they just need it to install the AIR Runtime? My 
other alternative is to use SMS to push out the install.

I'd appreciate hearing from anyone with experience with AIR in an enterprise 
environment.

Thanks.

-Stu Greenberg
GUI Gumdrops
http://www.guigumdrops.com



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.

-- 
Tom Chiverton
Helping to synergistically administrate 24/365 high-yield professional 
infrastructures





This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



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

2008-11-05 Thread Gordon Smith
Declaring

public var myFirstProperty:String;

is equivalent to declaring

public var myFirstProperty:String = null;

- Gordon

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom 
Chiverton
Sent: Wednesday, November 05, 2008 6:43 AM
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:
[Bindable]
public var myFirstProperty:String='';


--
Tom Chiverton
Helping to continuously expedite meta-services





This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links





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 Chiverton
Helping to continuously expedite meta-services





This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/



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.

 

Tracy



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of ashlytu
Sent: Tuesday, November 04, 2008 10:16 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] hi! this examples didn't work out,please help

 

when I read "the Essential guide to flex 3"
from page 87 to 95, there is a example , in the application MXML ,the
code is

http://www.adobe.com/2006/mxml
<http://www.adobe.com/2006/mxml> "
layout="absolute" xmlns:local="*">








and in the component file :MyFirstComponent ,is just these code below:

http://www.adobe.com/2006/mxml
<http://www.adobe.com/2006/mxml> " width="400"
height="300">





I followed all the steps, and would like to view the value of
"myProperty" in the script section of the Application MXML file, in
the Expressionis frame, but the error was "TypeError: Error #1009:",
It's seems like "myProperty" cannot get the value from a object
attribute.

what is wrong with it?
Thanks a lot!

Ashly

 



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

2008-11-05 Thread ashlytu
when I read "the Essential guide to flex 3"
from page 87 to 95, there is a example , in the application MXML ,the
code is

http://www.adobe.com/2006/mxml";
layout="absolute" xmlns:local="*">








and in the component file :MyFirstComponent ,is just these code below:

http://www.adobe.com/2006/mxml"; width="400"
height="300">





I followed all the steps, and would like to view the value of
"myProperty" in the script section of the Application MXML file, in
the Expressionis frame, but the error was "TypeError: Error #1009:",
It's seems like "myProperty" cannot get the value from a object attribute.

what is wrong with it?
Thanks a lot!

Ashly



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 are ambiguous serve no purpose. I read the question to, just
> moderating.
>
> Mike
>
>   On Fri, Sep 26, 2008 at 11:17 AM, krshnaonweb <[EMAIL PROTECTED]>wrote:
>
>>  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 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 pages, I took it as SIX views.

 There are many ways to do that. One of them is:
 
 
 private function return nextPrevView():void{
 if(buttonClicked == prev){
 viewstack.selectedIndex =
 viewstack.selectedIndex(viewstack.selectedIndex-1);
 }
 if(buttonClicked == next){
 viewstack.selectedIndex =
 viewstack.selectedIndex(viewstack.selectedIndex+1);
 }

 }
 

 
 
 
 
 
 
 
 
 
 

 It's just an outlook of an application.
 Get it worked by urself.

 -Manu.


 deepa_pathuri wrote:
 >
 > I have a .swf file which has 6 pages in it.i want to control that
 > .swf ie to show each page of .swf file on click of next and previous
 > button...How can i do this
 >
 >
 >

 --
 View this message in context:
 http://www.nabble.com/Hi-Alex-tp19681631p19683180.html
 Sent from the FlexCoders mailing list archive at Nabble.com.


>>>
>>>
>>> --
>>> Teoti Graphix, LLC
>>> http://www.teotigraphix.com
>>>
>>> Teoti Graphix Blog
>>> http://www.blog.teotigraphix.com
>>>
>>> You can find more by solving the problem then by 'asking the question'.
>>>
>>>
>>
>>
>> --
>> Thanks and Regards,
>> Krishna
>> Read my blogs
>> http://flashactions.wordpress .com
>> Gtalk:krshnaraj
>> YahooIM:krishna.rajs
>> Live Messenger: krishna.rajs
>> Skype: krishna.rajs
>> Linkedin: http://www.linkedin.com/in /krishnarajs
>> Cellular Contact: 0091.998.5013.316
>> Cellular Contact: 0091.924.8763.069
>> Twitter:krshnaonweb
>>
>>
>
>
> --
> Teoti Graphix, LLC
> http://www.teotigraphix.com
>
> Teoti Graphix Blog
> http://www.blog.teotigraphix.com
>
> You can find more by solving the problem then by 'asking the question'.
>
> 
>



--


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 PROTECTED]> wrote:

>   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 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 pages, I took it as SIX views.
>>>
>>> There are many ways to do that. One of them is:
>>> 
>>> 
>>> private function return nextPrevView():void{
>>> if(buttonClicked == prev){
>>> viewstack.selectedIndex =
>>> viewstack.selectedIndex(viewstack.selectedIndex-1);
>>> }
>>> if(buttonClicked == next){
>>> viewstack.selectedIndex =
>>> viewstack.selectedIndex(viewstack.selectedIndex+1);
>>> }
>>>
>>> }
>>> 
>>>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>>
>>> It's just an outlook of an application.
>>> Get it worked by urself.
>>>
>>> -Manu.
>>>
>>>
>>> deepa_pathuri wrote:
>>> >
>>> > I have a .swf file which has 6 pages in it.i want to control that
>>> > .swf ie to show each page of .swf file on click of next and previous
>>> > button...How can i do this
>>> >
>>> >
>>> >
>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Hi-Alex-tp19681631p19683180.html
>>> Sent from the FlexCoders mailing list archive at Nabble.com.
>>>
>>>
>>
>>
>> --
>> Teoti Graphix, LLC
>> http://www.teotigraphix.com
>>
>> Teoti Graphix Blog
>> http://www.blog.teotigraphix.com
>>
>> You can find more by solving the problem then by 'asking the question'.
>>
>>
>
>
> --
> Thanks and Regards,
> Krishna
> Read my blogs
> http://flashactions.wordpress .com
> Gtalk:krshnaraj
> YahooIM:krishna.rajs
> Live Messenger: krishna.rajs
> Skype: krishna.rajs
> Linkedin: http://www.linkedin.com/in /krishnarajs
> Cellular Contact: 0091.998.5013.316
> Cellular Contact: 0091.924.8763.069
> Twitter:krshnaonweb
>
>  
>



-- 
Teoti Graphix, LLC
http://www.teotigraphix.com

Teoti Graphix Blog
http://www.blog.teotigraphix.com

You can find more by solving the problem then by 'asking the question'.


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 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 pages, I took it as SIX views.
>>
>> There are many ways to do that. One of them is:
>> 
>> 
>> private function return nextPrevView():void{
>> if(buttonClicked == prev){
>> viewstack.selectedIndex =
>> viewstack.selectedIndex(viewstack.selectedIndex-1);
>> }
>> if(buttonClicked == next){
>> viewstack.selectedIndex =
>> viewstack.selectedIndex(viewstack.selectedIndex+1);
>> }
>>
>> }
>> 
>>
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>>
>> It's just an outlook of an application.
>> Get it worked by urself.
>>
>> -Manu.
>>
>>
>> deepa_pathuri wrote:
>> >
>> > I have a .swf file which has 6 pages in it.i want to control that
>> > .swf ie to show each page of .swf file on click of next and previous
>> > button...How can i do this
>> >
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Hi-Alex-tp19681631p19683180.html
>> Sent from the FlexCoders mailing list archive at Nabble.com.
>>
>>
>
>
> --
> Teoti Graphix, LLC
> http://www.teotigraphix.com
>
> Teoti Graphix Blog
> http://www.blog.teotigraphix.com
>
> You can find more by solving the problem then by 'asking the question'.
>
> 
>



-- 
Thanks and Regards,
Krishna
Read my blogs
http://flashactions.wordpress .com
Gtalk:krshnaraj
YahooIM:krishna.rajs
Live Messenger: krishna.rajs
Skype: krishna.rajs
Linkedin: http://www.linkedin.com/in /krishnarajs
Cellular Contact: 0091.998.5013.316
Cellular Contact: 0091.924.8763.069
Twitter:krshnaonweb


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 pages, I took it as SIX views.
>
> There are many ways to do that. One of them is:
> 
> 
> private function return nextPrevView():void{
> if(buttonClicked == prev){
> viewstack.selectedIndex =
> viewstack.selectedIndex(viewstack.selectedIndex-1);
> }
> if(buttonClicked == next){
> viewstack.selectedIndex =
> viewstack.selectedIndex(viewstack.selectedIndex+1);
> }
>
> }
> 
>
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
> It's just an outlook of an application.
> Get it worked by urself.
>
> -Manu.
>
>
> deepa_pathuri wrote:
> >
> > I have a .swf file which has 6 pages in it.i want to control that
> > .swf ie to show each page of .swf file on click of next and previous
> > button...How can i do this
> >
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Hi-Alex-tp19681631p19683180.html
> Sent from the FlexCoders mailing list archive at Nabble.com.
>
>  
>



-- 
Teoti Graphix, LLC
http://www.teotigraphix.com

Teoti Graphix Blog
http://www.blog.teotigraphix.com

You can find more by solving the problem then by 'asking the question'.


Re: [flexcoders] Hi Alex

2008-09-25 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:


private function return nextPrevView():void{
if(buttonClicked == prev){
viewstack.selectedIndex =
viewstack.selectedIndex(viewstack.selectedIndex-1);
}
if(buttonClicked == next){
viewstack.selectedIndex =
viewstack.selectedIndex(viewstack.selectedIndex+1);
}

}













It's just an outlook of an application.
Get it worked by urself.

-Manu.


deepa_pathuri wrote:
> 
> I have a .swf  file which has 6 pages in it.i want to control that 
> .swf ie to show each page of .swf file on click of next and previous 
> button...How can i do this
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Hi-Alex-tp19681631p19683180.html
Sent from the FlexCoders mailing list archive at Nabble.com.



[flexcoders] Hi Alex

2008-09-25 Thread deepa_pathuri
I have a .swf  file which has 6 pages in it.i want to control that 
.swf ie to show each page of .swf file on click of next and previous 
button...How can i do this



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 attribute by it's name instead of using a .  
specifier.


So, if you have a folder that is as such,

Narayana

Then you reference it when parsing it as,

theFolder (this would be Narayana if theFolder is an instance)

-or-

theFolder.id (this would be the "1")

Of course there may be others who can answer also, but that's just a  
quick help.


I'm a beginner in FDT Enterprise 3.0 which is awesome when used with  
the Open Source Flex SDK.


I have Flex Builder 3.0 Pro with ILOG, which is nice, but I feel the  
FDT and Open SDK route is safer given recent events.


But I'm not a beginner in Flash CS3 and all it's predecessors.

I kindly ask that nobody but Narayana or anyone who has anything but  
something positive and constructive to say to not respond with a flame  
thrower.


There are a few Narayana who will look down on your questions and  
waste more time complaining against you from a distance (which is  
cowardly; they wouldn't do it on the street).


You needn't bow down to them.

You've just right to this list as anyone and it seems one focused in  
on your word "beginner" instead of spending the same energy with a  
quick and easy and helpful response.


Just persist peacefully in asking questions and if someone say your  
"Spamming the list" this is just a habit some of the "Kings" have in  
responding, because they are legends in their own mind.


Forward, Focused thought.

-r


On Sep 9, 2008, at 3:53 AM, narayana wrote:


Hi Friends

am beginer in flex. please help me . i think here all are exports. my
problem is am reading xml file in flex program. am reading xml file is
node only. if its attribute how i can read?

i will show example xml file with node




The Corner Deli

[EMAIL PROTECTED]
(650) 000-1212
1234 Stevens Creek Blvd, Cupertino, CA





Good Earth

[EMAIL PROTECTED]
(408) 555-
567 Homestead Ave, Cupertino, CA








this file i can read in flex program.

if xml has attribute below shown example




















 



how can i read that xml atributes please help me.am requsting
all of my friends...







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 http:// protocol instead of file://

I've figured out a lot since I got my MacPro but not how to start a  
small Web Server to test things via http://


Any Mac machines rule people out there that know how to do this?

-r

On Sep 9, 2008, at 4:15 AM, Haykel BEN JEMIA wrote:



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\\samples\explorer".



On Tue, Sep 9, 2008 at 8:24 AM, Robert Thompson  
<[EMAIL PROTECTED]>wrote:


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,



http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html

(3) You can then Right Click anywhere on the app and click "View  
Source" and it appears for the MXML page, and then to the left you  
see all the files for actionscript, components, etc. And There is a  
download source (ZIP) link at the bottom.


Does any of this appear for you for the FLEX 3.0 component explorer  
below,


http://examples.adobe.com/flex3/componentexplorer/explorer.html

Or for any other FLEX 3.0 example for that matter?

Hopefully they will be updated soon.

-r







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 you can help yourself and the other users of the list is 
to put a sensible subject line in your post. Having a subject line of 'Hi' 
when asking for help on XML is not very helpful. If everyone did that the 
list would have threads that could not be followed.

Good luck.

Paul

- Original Message - 
From: "narayana" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, September 09, 2008 8:53 AM
Subject: [flexcoders] Hi


> Hi Friends
>
> am beginer in flex. please help me . i think here all are exports. my
> problem is am reading xml file in flex program. am reading xml file is
> node only. if its attribute how i can read?
>
> i will show example xml file with node
>
> 
>
> 
> The Corner Deli
>
> [EMAIL PROTECTED]
> (650) 000-1212
> 1234 Stevens Creek Blvd, Cupertino, CA
> 
> 
> 
>
> 
> Good Earth
>
> [EMAIL PROTECTED]
> (408) 555-
> 567 Homestead Ave, Cupertino, CA
> 
> 
> 
>
>
>
> 
>
>
> this file i can read in flex program.
>
> if xml has attribute below shown example
>
>
>
> 
> 
>  isBranch="false" label="book tickets" />
>  isBranch="false" label="Meeting at 7pm" />
>   
>isBranch="false" label="Pay power bill" />
>isBranch="false" label="Pay rent" />
>isBranch="false" label="Call parents" />
>isBranch="false" label="Attend John birthday party" />
>isBranch="false" label="Special Updates" />
>   
>   
>   
>label="Meeting at 5pm" />
>label="Complete document and send to client" />
>label="Interviews and Transcripts" />
>   
>   
>   
> 
> 
>
>
> how can i read that xml atributes please help me.am requsting
> all of my friends...
>
>
> 
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups 
> Links
>
>
>
> 



[flexcoders] Hi

2008-09-09 Thread narayana
Hi Friends

am beginer in flex. please help me . i think here all are exports. my
problem is am reading xml file in flex program. am reading xml file is
node only. if its attribute how i can read?

i will show example xml file with node




The Corner Deli

[EMAIL PROTECTED]
(650) 000-1212
1234 Stevens Creek Blvd, Cupertino, CA 





Good Earth

[EMAIL PROTECTED]
(408) 555-
567 Homestead Ave, Cupertino, CA 









this file i can read in flex program. 

if xml has attribute below shown example







  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
   



how can i read that xml atributes please help me.am requsting
all of my friends...



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\\samples\explorer".


On Tue, Sep 9, 2008 at 8:24 AM, Robert Thompson <[EMAIL PROTECTED]>wrote:

>   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,*
>
>
> http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html
>
> *(3) You can then Right Click anywhere on the app and click "View Source"
> and it appears for the MXML page, and then to the left you see all the files
> for actionscript, components, etc. And There is a download source (ZIP)
> link at the bottom.*
>
> Does any of this appear for you for the FLEX 3.0 component explorer below,
>
> http://examples.adobe.com/flex3/componentexplorer/explorer.html
>
> Or for any other FLEX 3.0 example for that matter?
>
> Hopefully they will be updated soon.
>
> -r
>  
>


Re: [flexcoders] Hi

2008-09-08 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,


http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html

(3) You can then Right Click anywhere on the app and click "View  
Source" and it appears for the MXML page, and then to the left you see  
all the files for actionscript, components, etc. And There is a  
download source (ZIP) link at the bottom.


Does any of this appear for you for the FLEX 3.0 component explorer  
below,


http://examples.adobe.com/flex3/componentexplorer/explorer.html

Or for any other FLEX 3.0 example for that matter?

Hopefully they will be updated soon.

-r


Re: [flexcoders] Hi

2008-09-08 Thread Nancy Gill
Does for me on Firefox 3 .. from your link.  Just right click in the source 
pane (the bottom one of the examples I've tried) and click Select All .. then 
right click again and select Copy.  Works perfectly on FF3 .. only one I've 
tried.

Nancy

  - Original Message - 
  From: Robert 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.


  -r


  On Sep 8, 2008, at 5:11 PM, Paul Andrews wrote:




- 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 not appear to be a Right-Click VIew Source which 
brings up a left pane and then allows you to download source.

Robert, every single example in the explorer comes with copyable source 
code shown in the bottom right pane of the explorer.

Paul


  With a lot on most people's plate, this is a good starter example to save 
time.


  -r


  On Sep 8, 2008, at 5:22 AM, Paul Andrews wrote:


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 the repeater control in Actionscript, where the 
repeater control should add the component dynamically, can u tell me 
how to 
do that,,,
I am getting the data from xml...

Thanks in advance 










   

  __ Information from ESET NOD32 Antivirus, version of virus signature 
database 3426 (20080908) __

  The message was checked by ESET NOD32 Antivirus.

  http://www.eset.com


Re: [flexcoders] Hi

2008-09-08 Thread Robert Thompson

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.

-r

On Sep 8, 2008, at 5:11 PM, Paul Andrews wrote:



- 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 not appear to be a Right-Click VIew Source which  
brings up a left pane and then allows you to download source.


Robert, every single example in the explorer comes with copyable  
source code shown in the bottom right pane of the explorer.


Paul

With a lot on most people's plate, this is a good starter example to  
save time.


-r

On Sep 8, 2008, at 5:22 AM, Paul Andrews wrote:


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 the repeater control in Actionscript, where the
repeater control should add the component dynamically, can u tell  
me how to

do that,,,
I am getting the data from xml...

Thanks in advance










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 not appear to be a Right-Click VIew Source which brings 
up a left pane and then allows you to download source.

Robert, every single example in the explorer comes with copyable source code 
shown in the bottom right pane of the explorer.

Paul


  With a lot on most people's plate, this is a good starter example to save 
time.


  -r


  On Sep 8, 2008, at 5:22 AM, Paul Andrews wrote:


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 the repeater control in Actionscript, where the 
repeater control should add the component dynamically, can u tell me how to 
do that,,,
I am getting the data from xml...

Thanks in advance 





   

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 example to  
save time.


-r

On Sep 8, 2008, at 5:22 AM, Paul Andrews wrote:


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 the repeater control in Actionscript, where the
repeater control should add the component dynamically, can u tell me  
how to

do that,,,
I am getting the data from xml...

Thanks in advance







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=linkshare&n=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 Alan

http://www.totaltraining.com/?c=linkshare&n=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 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 but could anybody give me any 
> tutorial to build a full featured RIA
> using Flex in very quick time.



--
Howard Fore, [EMAIL PROTECTED]
"The universe tends toward maximum irony. Don't push it." - Jeff Atwood


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
\\no comment


[flexcoders] Hi..

2008-09-08 Thread Ajay dalal
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


  

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 the repeater control in Actionscript, where the 
repeater control should add the component dynamically, can u tell me how to 
do that,,,
I am getting the data from xml...

Thanks in advance 



[flexcoders] Hi

2008-09-08 Thread raj balaji
 Hi all,   I want to use the repeater control in Actionscript, where the repeater control should add the component dynamically, can u
 tell me how to do that,,,I am getting the data from xml... Thanks in advance   


   Connect with friends all over the world.  Get Yahoo! India Messenger.

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 ColdFusion and CFChart?


[flexcoders] hi guys

2008-09-03 Thread sainathevuri
  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?

thank u,
sainath



[flexcoders] Hi

2008-06-04 Thread spradeep palabhathina
Hi ,
 
pls send me examples on flex with java
 
thanks
pradeep


  Explore your hobbies and interests. Go to 
http://in.promos.yahoo.com/groups/

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


  Hi Guys,

   I am new to flex development and i am very much interested in it. I am a 
Java developer and i think it would be really good if we can integrate both 
Java and flex which i think is possible.

  Would any one give me some sample code which integrates Java and flex or 
any links which probably throws more light on this topic. i mean how to bring 
values from Java to flex and from flex to Java etc.

   Any help is appreciated.


  Regards
  Rajendra Tammana  

   

[flexcoders] Hi Guys Please help me

2008-05-28 Thread Rajendra Tammana
Hi Guys,

 I am new to flex development and i am very much interested in it. I am a 
Java developer and i think it would be really good if we can integrate both 
Java and flex which i think is possible.

Would any one give me some sample code which integrates Java and flex or 
any links which probably throws more light on this topic. i mean how to bring 
values from Java to flex and from flex to Java etc.

 Any help is appreciated.


Regards
Rajendra Tammana  

   

[flexcoders] Hi there,

2008-04-16 Thread Jason The Saj
I dealt with this issue on my blog pretty extensively..

http://thesaj.wordpress.com/2008/02/12/the-nightmare-that-is-_blank-part-ii-help/

Here is an example of what I implemented for the browsers I was
testing for (IE, Firefox, Safari, Opera on PC/Mac)
http://www.easternstorm.net/sassie/example2/example2-swfobject2.html

Note - in my personal usage, I broke up the example into two classes.
One for browser detection and one for _blank issues.

Note, there are a few caveats:
> allowScriptAccess needs to be set to "always"
> wmode needs to be set to either "transparent" or "opaque"

- Jason




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 the resize state. For some reason I

   find gradual resizing is more attractive compared to instant resizing.
But
   no doubt you got good stuff there!!! Good luck.






On Mon, Apr 7, 2008 at 9:29 PM, Anirudh Sasikumar <
[EMAIL PROTECTED]> wrote:

>   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 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 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 Q&A questions will it hide from my page or delete from the
main application...

I hope you will answer me for the above

Anyway excellent work Keep always this spirit...

Chitra


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

2008-04-07 Thread Sujin Jeong

I live in Tokyo. I made a FLEXed meta search site.
Please, Check this   out.
I'm hungry. Give me any comment about this site.
Best Regards. ^^



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:





flash.net.FileReference API we currently have in Flash Player 9.

One of the most disappointing thing we have when playing with bytes in
Flash Player 9 is the FileReference API. Let's say you call the
FileReference.browse() method to select a file.

Once selected, you have no way to get a ByteArray from it directly.

we would like to get the bytes from a selected file with the
OpenFileDialog, and also include a SaveFileDialog. This should allow us
to save runtime streams locally through a save-as dialog window.

Create an account and VOTE https://bugs.adobe.com/jira/browse/SDK-14245

Astro Need YOUR VOTE !





[flexcoders] Hi All we all want Flex TO Rock

2008-02-29 Thread Cato Paus
flash.net.FileReference API we currently have in Flash Player 9. 

One of the most disappointing thing we have when playing with bytes in 
Flash Player 9 is the FileReference API. Let's say you call the 
FileReference.browse() method to select a file. 

Once selected, you have no way to get a ByteArray from it directly. 

we would like to get the bytes from a selected file with the 
OpenFileDialog, and also include a SaveFileDialog. This should allow us 
to save runtime streams locally through a save-as dialog window. 

Create an account and VOTE https://bugs.adobe.com/jira/browse/SDK-14245

Astro Need YOUR VOTE !



[flexcoders] Hi everyone

2008-01-18 Thread volatile_puppy
My name is Shawn and I am a .Net and Flex Developer from North Carolina.



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 PROTECTED] On
Behalf Of srikanth_reddy_007
Sent: Friday, January 11, 2008 5:31 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Hi

 

I am sending a HTTPService request to the server and from the server in 
a servlet i am getting the locale of the request. Its always en_US 
reggardless of the browser locale. can some one help to send browser 
locale to the server?

 



[flexcoders] Hi

2008-01-11 Thread srikanth_reddy_007
I am sending a HTTPService request to the server and from the server in 
a servlet i am getting the locale of the request. Its always en_US 
reggardless of the browser locale. can some one help to send browser 
locale to the server?



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, August 31, 2007 5:07 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Hi GUYS..

 

Hi Guys,

 

I am new to flex.

 

Please share some articles on flex.

 

Thanks

- bharath

 



[flexcoders] Hi GUYS..

2007-08-31 Thread Bharath Graphics
Hi Guys,

 

I am new to flex.

 

Please share some articles on flex.

 

Thanks

- bharath



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]> 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 .

regards,
Eshwar

 



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 Chiverton
Helping to enthusiastically lead second-generation architectures
on: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



--
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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


[flexcoders] Hi

2007-03-27 Thread eshpaleti
  can somebody tell me the flow of Flex Application and when to write 
the code in MXML and when to write in normal XML .

  regards,
   Eshwar



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 me the detail structure of Flex and its 
 integration with JAVA backend,where to keep the classes,mxmls compiling 
 Flex application etc etc...
 
 regards,
 
 Eshwar
 
 
 
   


Regards
Ajay.k

Destiny is not a matter of chance, it is a matter of choice, it is not a thing 
to be waited for, it is a thing to be achieved.
 
-
Bored stiff? Loosen up...
Download and play hundreds of games for free on Yahoo! Games.

[flexcoders] Hi Hello

2007-03-24 Thread eshpaleti
  can some body give me the detail structure of Flex and its 
integration with JAVA backend,where to keep the classes,mxmls compiling 
Flex application etc etc...

regards,

   Eshwar



[flexcoders] Hi all

2007-01-02 Thread edwardmedia2
I am a newbie to Flex...Can someone share ideas as to whether we can
develop this in FlexClick the mouse and drag to zoom...Can we
implement the drag and zoom feature...Please help...Thanking you in
anticipation

Please reply to [EMAIL PROTECTED]

http://www.allthegoodness.com/projects/map/





Re: [flexcoders] Hi there

2006-10-28 Thread Jaga


thanx for your reply...and then i want to know how to use the htmlText property inside the  tag...i would be grateful if you could send me some examples. i tried searching in the url which you sent me, but i couldnt find any i just want to know how to place the components inside the mx panel, like for example, i visited adobe home page and i tried creating the same. i coudnt place the text inside the panel. thanx in advanceJaga- Original Message From: Igor Costa <[EMAIL PROTECTED]>To:
 flexcoders@yahoogroups.comSent: Saturday, 28 October, 2006 10:35:38 PMSubject: Re: [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, i am doing a web
layout using flex. i have a doubt in placing a text input inside of
the menu bar. how can i achieve doing that? i would be grateful if you
could help me.

thank you.

regards
Jaga


  













--  - ---Igor Costawww.igorcosta. com

  



Send instant messages to your online friends http://uk.messenger.yahoo.com 
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___


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 a doubt in placing a text input inside of
the menu bar. how can i achieve doing that? i would be grateful if you
could help me.

thank you.

regards
Jaga


  













-- Igor Costawww.igorcosta.com

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Hi there

2006-10-28 Thread write2jaga
hi, 
i am new to this flex community and the software, i am doing a web
layout using flex. i have a doubt in placing a text input inside of
the menu bar. how can i achieve doing that? i would be grateful if you
could help me.

thank you.

regards
Jaga





--
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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] hi

2006-08-18 Thread Marcelo de Moraes Serpa



Any OOP language knowledge will help you on your path to AS3 mastery :)btw, I use PHP on the server side... CakePHP fits all my application server needs nicely :DMarcelo.
On 8/18/06, Famakinwa Babatunde <[EMAIL PROTECTED]> wrote:













  



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: [EMAIL PROTECTED]ups.comSent: Friday, August 18, 2006 9:13:01 AMSubject: Re: [flexcoders] hi
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 elements here.> coder, is there any jobs for flex coders (i know only flash)& whatYes, there are some. As you don't know Flex, I guess you'll need to have a 
play so you can talk about it confidently at an interview. If when you say you know Flash you mean ActionScript, Flex should be very easy for you.There was a post here just a few hours ago :-)-- Tom Chiverton
This email is sent for and on behalf of Halliwells LLP.Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose
 registered office address is at St James's Court Brown Street Manchester M2 2JF.  A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society.
CONFIDENTIALITYThis email is intended only for the use of the addressee named above and may be confidential or legally privileged.  If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents.  If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008.
For more information about Halliwells LLP visit www.halliwells.com.--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<*> To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
<*> To unsubscribe from this group, send an email to:[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



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 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 elements here.> coder, is there any jobs for flex coders (i know only flash)& whatYes, there are some. As you don't know Flex, I guess you'll need to have a play so you can talk about it confidently at an interview. If when you say you know Flash you mean ActionScript, Flex should be very easy for you.There was a post here just a few hours ago :-)-- Tom ChivertonThis email is sent for and on behalf of Halliwells LLP.Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose
 registered office address is at St James's Court Brown Street Manchester M2 2JF.  A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society.CONFIDENTIALITYThis email is intended only for the use of the addressee named above and may be confidential or legally privileged.  If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents.  If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008.For more information about Halliwells LLP visit www.halliwells.com.--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links<*> To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/<*> To unsubscribe from this group, send an email to:[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/
__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___


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 elements here.

> coder, is there any jobs for flex coders (i know only flash)& what

Yes, there are some. As you don't know Flex, I guess you'll need to have a 
play so you can talk about it confidently at an interview. If when you say 
you know Flash you mean ActionScript, Flex should be very easy for you.
There was a post here just a few hours ago :-)

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



--
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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




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 another without a long learning curve. I would recomend you to look for OOP books and design patterns and of course, AS3 and Flex books.. any questions I would be happy to help!
On 8/15/06, Samuel D. Colak <[EMAIL PROTECTED]> wrote:













  






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 Forever !!

Samuel


On 15/8/06 19:52, "bardnivar" <[EMAIL PROTECTED]> wrote:

 
 
 

hi iam new to flex, for learning flex should i know java plz let
me know what is the minimum requirements to choose my career as a flex
coder, is there any jobs for flex coders (i know only flash)& what
applications should know the flex coders.***plz let me know***

 







  















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



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 Forever !!

Samuel


On 15/8/06 19:52, "bardnivar" <[EMAIL PROTECTED]> wrote:

 
 
 

hi iam new to flex, for learning flex should i know java plz let
me know what is the minimum requirements to choose my career as a flex
coder, is there any jobs for flex coders (i know only flash)& what
applications should know the flex coders.***plz let me know***

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





[flexcoders] hi

2006-08-15 Thread bardnivar
hi iam new to flex, for learning flex should i know java plz let
me know what is the minimum requirements to choose my career as a flex
coder, is there any jobs for flex coders (i know only flash)& what
applications should know the flex coders.***plz let me know***






--
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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





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 asking the user to relogin.

On 2/8/06, northwood Lee <[EMAIL PROTECTED]> wrote:
I am trying to build a app that run in the browser, I want it functions like this:  if the user has not do anything in 20 min, the app will lock and tell the user timeout. 
and a prompt module  TitleWindow jump out ask the user  to input password again.the problem is how to listen all the user actions (for example, mouse movement , keyboard input. )Thanks
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 
SPONSORED LINKS 




Web site design development 

Computer software development 

Software design and development 


Macromedia flex 

Software development best practice 


YAHOO! GROUPS LINKS 

 Visit your group "flexcoders" on the web.  
 To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED]  
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









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

2006-02-08 Thread northwood Lee



I am trying to build a app that run in the browser, I want it functions
like this:  if the user has not do anything in 20 min, the app
will lock and tell the user timeout. 
and a prompt module  TitleWindow jump out ask the user  to input password again.

the problem is how to listen all the user actions (for example, mouse movement , keyboard input. )


Thanks






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Hi Avik

2006-01-06 Thread Dekayd Media Inc.










Hey Avik

 

We are in Tucson AZ
too.

 

Our company is based here: www.dekaydmedia.com

 

My name is Kelly.

 

Who are you building a Flex project for,
The City of Tucson?

 

I noticed they bought some Flex licenses.

 

If you guys need any help with that you
should talk to me.

 

I know a few local Flex developers who are
in Tucson now.

 

I just came off of a six month contract
developing an application that got resold to Mazda, Honda, GM, and Subaru.

 

Right now I am working for Dorado in San
Fran but I work from Tucson.

 

 

I would be interested in learning more
about the Flex scene here in Tucson
so feel free to write to me whenever.

 

 

 

--Kelly

[EMAIL PROTECTED]

www.dekaydmedia.com

 

 

 

 

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Avik Chakrabarty
Sent: Thursday, January 05, 2006
11:01 PM
To: flexcoders@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 1.5, and
backend is Java. So I am handling abt the front end.

 

Flex
devopment in India
is too slow, but expecting that it is going to develop very drstically. Yes
macromedia and sap has already started using this Macromedia Flex. Though
comprasing to Flash, Flex is very intial stage. But if you learn this it is a
very good software and can handle though things very smoothly. I have never
heard about this Tata Interactive System (TIS) what they do?

 

Are you
from the Programming bg or designing? In Delhi
and NCR some of the Companies have started using Flex. No idea about Kolkata?
What is your BG? What you do? But my personal suggestion is before exp. the
Flex 2.0 just get used to with Flex 1.5. That will help you. Also Flex 2.0 is
totally Eclipse based.

 

At last
Kolkata theke karur mail paye bhalo laglo.

 

Take
Care and stay in touch.

 

Regards,

Avik 

 

On Wed,
Jan 4, 2006 at 10:47 AM, Kaushik Mukherjee wrote:

 

Hi Avik, 

Great to
hear that first time I get to know some bengali in Flex. 

 

I am
Kaushik Mukherjee, joined TIS(Tata Interactive System), Kolkata. I have worked
in flash development. Presently I was looking in Flex 2.0. I am not sure the
Flex development work in India.
Just got curious to mail you, to get to know about you. 

 

Thanks 

Kaushik
Mukherjee 

 

Avik Chakrabarty <[EMAIL PROTECTED]> wrote: 

-- 

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 

 

  
•  Visit your group " flexcoders <http://groups.yahoo.com/group/flexcoders> " on the web. 



  
•  To unsubscribe from this group, send an email to: 

 
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 



  
•  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service <http://docs.yahoo.com/info/terms/> . 

 

___










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











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 front end. Flex devopment in India is too slow, but expecting that it is going to develop very drstically. Yes macromedia and sap has already started using this Macromedia Flex. Though comprasing to Flash, Flex is very intial stage. But if you learn this it is a very good software and can handle though things very smoothly. I have never heard about this Tata Interactive System (TIS) what they do?Are you from the Programming bg or designing? In Delhi and NCR some of the Companies have started using Flex. No idea about Kolkata? What is your BG? What you do? But my personal suggestion is before exp. the Flex 2.0 just get used to with Flex 1.5. That will help you. Also Flex 2.0 is totally Eclipse based. At last Kolkata theke karur mail paye bhalo laglo. Take Care and stay in touch. Regards,Avik On Wed, Jan 4, 2006 at 10:47 AM, Kaushik Mukherjee wrote:Hi Avik, Great to hear that first time I get to know some bengali in Flex. I am Kaushik Mukherjee, joined TIS(Tata Interactive System), Kolkata. I have worked in flash development. Presently I was looking in Flex 2.0. I am not sure the Flex development work in India. Just got curious to mail you, to get to know about you. Thanks Kaushik Mukherjee Avik Chakrabarty <[EMAIL PROTECTED]> wrote: -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com___YAHOO! GROUPS LINKS    •  Visit your group " flexcoders  " on the web.    •  To unsubscribe from this group, send an email to:   [EMAIL PROTECTED]     •  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service  . ___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Hi Avik

2006-01-04 Thread Kaushik Mukherjee



Hi Avik,  Great to hear that first time I get to know some bengali in Flex.  I am Kaushik Mukherjee, joined TIS(Tata Interactive System), Kolkata. I have worked in flash development. Presently I was looking in Flex 2.0. I am not sure the Flex development work in India. Just got curious to mail you, to get to know about you.     Thanks  Kaushik Mukherjee  Avik Chakrabarty <[EMAIL PROTECTED]> wrote:Hello All,  Happy New Year to all.  Currently we are developing an web based
 application which is made on Macromedia Flex 1.5  I have a question, when we are opeing an Title Window, (Popup) we want that to be fixed within some certain area. Like we can move the popup only on some of the specified area not beyond that.  Does anyone have any idea on this?  Regards,  Avik  Send instant messages to your online friends http://in.messenger.yahoo.com 





--
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



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









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

2005-10-18 Thread Ramu p



Hi Abdul,
 
Yeap!!!
I posted a quiery last week, I got really a very good answers which helped me quickly.
Thanks for this fast and useful gruops!
 
Today Im gonna post one more quiery :)
 
 
by the way are you from Blore?
Regards,
Ramu 
On 10/18/05, Abdul Qabiz <[EMAIL PROTECTED]> wrote:

Hi Ramu,
 
Nice to know you are working on Flex.
 
FYI, not everyone in this list from Bangalore. Actually, this list is used by folks all over world.
 
You can post your flex-releated queries here, but before posting you should check the flexcoders-archive.
 
-abdul
 


From: flexcoders@yahoogroups.com [mailto:
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...
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 think we need a Flex User Group (TM) in Bangalore.  Send an emailAbdul Qabiz (aqabiz at 
macromedia.com) if anyone's interested. Yahoo! Groups Sponsor ~--> Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM~-> --Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links<*> To visit your group on the web, go to:   
http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to:   
[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:    
http://docs.yahoo.com/info/terms/--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com 


YAHOO! GROUPS LINKS 

 Visit your group "flexcoders" on the web. 
 
 To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED]  
 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 










--
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



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









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

2005-10-17 Thread Abdul Qabiz





Hi Ramu,
 
Nice to know you are working on Flex.
 
FYI, not everyone in this list from Bangalore. Actually, 
this list is used by folks all over world.
 
You can post your flex-releated queries here, but before 
posting you should check the flexcoders-archive.
 
-abdul
 


From: flexcoders@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 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 think we need a Flex User Group (TM) in 
  Bangalore.  Send an emailAbdul Qabiz (aqabiz at macromedia.com) if anyone's 
  interested. Yahoo! Groups Sponsor 
  ~--> Fair play? Video games influencing politics. 
  Click and talk back!http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM~-> 
  --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
  Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
  Groups Links<*> To visit your group on the web, go 
  to:   http://groups.yahoo.com/group/flexcoders/ 
  <*> To unsubscribe from this group, send an email 
  to:   [EMAIL PROTECTED]<*> 
  Your use of Yahoo! Groups is subject to:    http://docs.yahoo.com/info/terms/





--
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



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









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 think we need a Flex User Group (TM) in Bangalore.  Send an emailAbdul Qabiz (aqabiz at macromedia.com) if anyone's interested. Yahoo! Groups Sponsor ~-->
Fair play? Video games influencing politics. Click and talk back!http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM~->
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links<*> To visit your group on the web, go to:   http://groups.yahoo.com/group/flexcoders/
<*> To unsubscribe from this group, send an email to:   [EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:
   http://docs.yahoo.com/info/terms/






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









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 ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

--
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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





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. 
On 10/10/05, gonchu24 <[EMAIL PROTECTED]> wrote:
hiI am kumar, from bangalore, INDIA. I am a flash user to a standardactionscript usage. now I would like to learn and deploy the power of
flex.please any one help me in this.thanks in advancekumar Yahoo! Groups Sponsor ~-->Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM~->--
Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links<*> To visit your group on the web, go to:   http://groups.yahoo.com/group/flexcoders/
<*> To unsubscribe from this group, send an email to:   [EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:
   http://docs.yahoo.com/info/terms/






--
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



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









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

2005-10-10 Thread gonchu24
hi

I am kumar, from bangalore, INDIA. I am a flash user to a standard 
actionscript usage. now I would like to learn and deploy the power of 
flex.

please any one help me in this.

thanks in advance

kumar





 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

--
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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 






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,
FlexCoder


*Yahoo! Groups Links*
* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/
* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service .