RE: [flexcoders] Drag and drop

2006-11-30 Thread Thomas W. Gonzalez
The button is not being deleted, but being moved from your source
component's display list to the destination components display list.

 

The DragManager has a reference to the DragSource, not a COPY of it.   In
order to do what you are implying you would need to create a NEW button at
the destination with the same properties of the source button and the x,y
position of the DragDrop operation.

 

Alternatively you would need to create your own
serialization/deserialization routines to "copy" the source button
dynamically.

 

- Tom

 

 

 

  _  

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of pereanend
Sent: Thursday, November 30, 2006 10:31 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Drag and drop

 

I am dragging components like buttons from one canvas to the other and 
it works fine, the problem is that after dropping the component on the 
other canvas, the one from the source canvas is deleted. Does anyone 
knows a solution to it. I think i need to implement the dragComplete 
event but i don't know how to implement this function if this is the 
solution.

Regards,
Desigaine.

 



RE: [flexcoders] Looking to hire a Flash/Flex developer

2006-11-07 Thread Thomas W. Gonzalez














Hi Jeff, we are located in SoCal, looking
for Flex/Flash developers AND would consider telecommuting – here is the link
to the job description.

 

http://orangecounty.craigslist.org/sof/226952347.html

 

- 
Tom Gonzalez

CTO

The Dashboard Company

www.dashboardcompany.com

 

 



 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeff Hindman
Sent: Monday, November 06, 2006
4:32 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Looking
to hire a Flash/Flex developer



 









Are you taking telecommuters ?

I’m in Southern California.

 

  -- Jeff Hindman

 









From: [EMAIL PROTECTED]ups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of jenunderscore
Sent: Monday, November 06, 2006
2:31 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Looking to
hire a Flash/Flex developer



 







Hey all, 
Our company in Ottawa
is currently seeking to hire another developer
with Flash experience. Does anybody know of some good resources for
flash developers seeking employment? 














__._,_.___





--
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] Re: local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez












 



The process sounds right, but Flex (or
more importantly Flash) does not currently support it – due to the fact
the Module files are remote.

 

We can not have the module files locally
as our Application runs on a web-server, which is a network address, and these
modules get streamed from the web application server via a secure pathway.

 

I know this is a confusing use case –
but an important one.  We are probably leveraging Flex/Flash in ways not
originally thought of, and thus why we are hitting this issue.

 

Probably best to discuss off-list if it is something the Adobe team is interested in
pursuing a solution to.   



 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Friday, November 03, 2006
4:57 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re:
local SWF files cannot use the LoaderContext.securityDomain property



 









Your process sounds right, alternatively you could have the stable
modules also available locally though, right?

 









From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of Thomas W. Gonzalez
Sent: Friday, November 03, 2006
10:53 AM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] Re:
local SWF files cannot use the LoaderContext.securityDomain property



 









Hi Mike,

 

Yes that would solve the problem with the once exception of how do
we get the Parent application (being the .swf we just compiled) out to the
remote server?  Would we manually have to deploy it after each compile
cycle?

 



Step by Step Use Case:

 


 Test and compile child
 application
 Deploy child application to
 remote server (think of this is a stable code module)
 Make changes to Parent
 application locally in FB.
 Launch Parent application in
 debug mode by compiling/launching from Builder.
 Test Parent application
 functionality (which requires loading of the child application)
 Make sure Parent app and
 Child app play nicely together.  (currently not possible because of
 sandbox/security violation of local resource embedding networked resource
 and the SecurityDomain.)


 

Does your scenario solve this use case?  In what you proposed
we would also have to manually put the latest Parent app out on the remote
server as well.

 

 I see this especially becoming an issue when we start working
with Module classes (per 2.0.1)



 









From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of Mike Morearty
Sent: Friday, November 03, 2006
9:29 AM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Re: local
SWF files cannot use the LoaderContext.securityDomain property



 







If I
understand you correctly, all you want to do is launch the 
browser pointing at http://myserver/myparentapp.html,
instead of 
pointing at C:\myproject\bin\myparentapp.html, right?

If that's the case, then:

1. bring up the launch configurations dialog (click the down-arrow on 
the Debug toolbar button, and then CTRL-click on the line for the 
launch config you want to modify)
2. find the launch configuration that you want to modify
3. un-check the "use default launch URLs" checkbox, and then enter 
the URL you want.

--- In [EMAIL PROTECTED]ups.com,
"Thomas W. Gonzalez" 
<[EMAIL PROTECTED]..> wrote:
>
> Yes, I understand that we want both apps coming from the same 
domain in
> production (or at least both from remote network locations)
> 
> 
> 
> But there is a major use case here that can't be fulfilled:
> 
> 
> 
> How do you DEBUG? Is there a way to setup Flex Builder to debug 
via remote
> files? We need to debug the loading and interaction of the child 
app with
> the Parent app (we don't necessarily need to debug the child app, 
although
> that would be nice, but we do need to debug the parent app.) I 
think
> this is a legitimate use case, albeit an advanced one, but I 
suspect it will
> start to come up more often especially when people start making 
more modular
> applications.
> 
> 
> 
> - Tom
> 
> 
> 
> 
> 
> _ 
> 
> From: [EMAIL PROTECTED]ups.com

[mailto:[EMAIL PROTECTED]ups.com]
On
> Behalf Of Matt Chotin
> Sent: Thursday, November 02, 2006 9:45 PM
> To: [EMAIL PROTECTED]ups.com
> Subject: RE: [flexcoders] local SWF files cannot use the
> LoaderContext.securityDomain property
> 
> 
> 
> I think you probably need to get your first app served over http as 
well so
> that it isn't local. The mix of local and network will always be 
limited.
> 
> 
> 
> _ 
> 
> From: [EMAIL PROTECTED]ups.com

[mailto:[EMAIL PROTECTED]ups.com]
On
> Behalf Of twgonzalez01
> Sent: Wednesday, November 01, 2006 6:59 PM
> To: [EMAIL PROTECTED]ups.com
> Subject: [flexcoders] local SWF files cannot use the
> LoaderContext.securityDomain property

RE: [flexcoders] Re: local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez












Hi Mike,

 

Yes that would solve the problem with the
once exception of how do we get the Parent application (being the .swf we just
compiled) out to the remote server?  Would we manually have to deploy it after
each compile cycle?

 



Step by Step Use Case:

 


 Test
 and compile child application
 Deploy
 child application to remote server (think of this is a stable code module)
 Make
 changes to Parent application locally in FB.
 Launch
 Parent application in debug mode by compiling/launching from Builder.
 Test
 Parent application functionality (which requires loading of the child
 application)
 Make
 sure Parent app and Child app play nicely together.  (currently not
 possible because of sandbox/security violation of local resource embedding
 networked resource and the SecurityDomain.)


 

Does your scenario solve this use case?  In
what you proposed we would also have to manually put the latest Parent app out
on the remote server as well.

 

 I see this especially becoming an issue
when we start working with Module classes (per 2.0.1)



 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mike Morearty
Sent: Friday, November 03, 2006
9:29 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: local
SWF files cannot use the LoaderContext.securityDomain property



 







If I understand you correctly, all you want to do is
launch the 
browser pointing at http://myserver/myparentapp.html,
instead of 
pointing at C:\myproject\bin\myparentapp.html, right?

If that's the case, then:

1. bring up the launch configurations dialog (click the down-arrow on 
the Debug toolbar button, and then CTRL-click on the line for the 
launch config you want to modify)
2. find the launch configuration that you want to modify
3. un-check the "use default launch URLs" checkbox, and then enter 
the URL you want.

--- In [EMAIL PROTECTED]ups.com,
"Thomas W. Gonzalez" 
<[EMAIL PROTECTED]..> wrote:
>
> Yes, I understand that we want both apps coming from the same 
domain in
> production (or at least both from remote network locations)
> 
> 
> 
> But there is a major use case here that can't be fulfilled:
> 
> 
> 
> How do you DEBUG? Is there a way to setup Flex Builder to debug 
via remote
> files? We need to debug the loading and interaction of the child 
app with
> the Parent app (we don't necessarily need to debug the child app, 
although
> that would be nice, but we do need to debug the parent app.) I 
think
> this is a legitimate use case, albeit an advanced one, but I 
suspect it will
> start to come up more often especially when people start making 
more modular
> applications.
> 
> 
> 
> - Tom
> 
> 
> 
> 
> 
> _ 
> 
> From: [EMAIL PROTECTED]ups.com

[mailto:[EMAIL PROTECTED]ups.com]
On
> Behalf Of Matt Chotin
> Sent: Thursday, November 02, 2006 9:45 PM
> To: [EMAIL PROTECTED]ups.com
> Subject: RE: [flexcoders] local SWF files cannot use the
> LoaderContext.securityDomain property
> 
> 
> 
> I think you probably need to get your first app served over http as 
well so
> that it isn't local. The mix of local and network will always be 
limited.
> 
> 
> 
> _ 
> 
> From: [EMAIL PROTECTED]ups.com

[mailto:[EMAIL PROTECTED]ups.com]
On
> Behalf Of twgonzalez01
> Sent: Wednesday, November 01, 2006 6:59 PM
> To: [EMAIL PROTECTED]ups.com
> Subject: [flexcoders] local SWF files cannot use the
> LoaderContext.securityDomain property
> 
> 
> 
> Use Case:
> Debugging Flex app locally which uses the SWFLoader to load child
> applications that reside on a remote server (in our data center).
> 
> Need to allow both the parent app (running locally in debug) and the
> child app (resides on remote server) to play nicely together.
> 
> Expected Result: I can have both apps (parent & child) share the 
same
> ApplicationDomain and SecurityDomain.
> 
> What Happens: I get the error message "local SWF files cannot use 
the
> LoaderContext.securityDomain property" when trying to set the
> LoaderContext.securityDomain of the SWFLoader object. If I omit this
> setting the SWFLoader then barfs when it trys to load the remote 
resource.
> 
> I have both parent and child applications using
> Security.allowDomain(["*"]); and I also have a cross-domain
policy
> file on the remote server to allow ALL domains access.
> 
> Anyone have any suggestions?
>






__._,_.___





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

RE: [flexcoders] local SWF files cannot use the LoaderContext.securityDomain property

2006-11-03 Thread Thomas W. Gonzalez














Yes, I understand that we want both apps
coming from the same domain in production (or at least both from remote network
locations)

 

But there is a major use case here that
can’t be fulfilled:

 

How do you DEBUG?  Is there a way to
setup Flex Builder to debug via remote files?  We need to debug the
loading and interaction of the child app with the Parent app (we don’t necessarily
need to debug the child app, although that would be nice, but we do need to
debug the parent app.) I think this is a legitimate use
case, albeit an advanced one, but I suspect it will start to come up more often
especially when people start making more modular applications.

 

- Tom

 



 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Thursday, November 02, 2006
9:45 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] local
SWF files cannot use the LoaderContext.securityDomain property



 









I think you probably need to get your first app served over http as
well so that it isn’t local.  The mix of local and network will
always be limited.

 









From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of twgonzalez01
Sent: Wednesday, November 01, 2006
6:59 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] local SWF
files cannot use the LoaderContext.securityDomain property



 







Use Case:
Debugging Flex app locally which uses the SWFLoader to load child
applications that reside on a remote server (in our data center).

Need to allow both the parent app (running locally in debug) and the
child app (resides on remote server) to play nicely together.

Expected Result: I can have both apps (parent & child) share the same
ApplicationDomain and SecurityDomain.

What Happens: I get the error message "local SWF files cannot use the
LoaderContext.securityDomain property" when trying to set the
LoaderContext.securityDomain of the SWFLoader object. If I omit this
setting the SWFLoader then barfs when it trys to load the remote resource.

I have both parent and child applications using
Security.allowDomain(["*"]); and I also have a cross-domain
policy
file on the remote server to allow ALL domains access.

Anyone have any suggestions?














__._,_.___





--
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] Disabling mouse/keyboard interaction while BusyCursor is set

2006-11-02 Thread Thomas W. Gonzalez












You might try popping up a model status
panel or something, this would disable the other elements AND give a better
visual indication that the user should not be interacting with the App. 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of lokesh2084
Sent: Thursday, November 02, 2006
8:07 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Disabling
mouse/keyboard interaction while BusyCursor is set



 







When fetching large sets of data to populate some of
our screens, the
user gets a little time to watch the busy cursor spin around.
Temptation to click buttons and other interface elements exists and
this can cause unwanted results. Just curious on how others have
handled this.

Disabled all keyboard, mouse interaction? Hid problem UI elements till
data has been fetched? Loaded everything up front and used a progress
bar? any comments are appreciated.

--Lokesh






__._,_.___





--
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] MouseEvent.DOUBLE_CLICK am I missing something

2006-11-02 Thread Thomas W. Gonzalez














I believe certain display objects have a
property called something like “doubleClickEnabled” that you need
to set to receive/fire those events.

 

- Tom

 



 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Evans
Sent: Thursday, November 02, 2006
8:25 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
MouseEvent.DOUBLE_CLICK am I missing something



 







In my first week of ActionScript 3 development.
Working on Mac OS X 
with Flex 2 Builder Beta and Flash 9 Alpha Preview, Player: 9,0,18,60.

Just tried listening for MouseEvent.DOUBLE_CLICK on a MovieClip using 
Flash 9 preview and found that the event never seems to fire.

I also compiled MouseEventExample from the Adobe docs and found that 
all the mouse events fire except DOUBLE_CLICK and MOUSE_WHEEL. 
(Though MOUSE_WHEEL does work on a pc)

( MouseEventExample is at the foot of this page http:// 
livedocs.macromedia.com/flex/2/langref/index.html?flash/events/

MouseEvent.html&flash/events/class-list.html )

All my reference sources simply present the code as though it should 
work. Am I missing something? Any pointers much appreciated.

Thanks

Paul
-- 
[ http://www.creative-cognition.co.uk/
]
[ http://creacog.wordpress.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] how to implement the copy&paste of chart in flex

2006-05-01 Thread Thomas W. Gonzalez










Perfect !!!



 

BTW, great job on the FisheEye
component.  This was actually one of my use cases – turning charts
into something I could add as an image item to the FishEye.

 

- Tom



 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely Greenfield
Sent: Monday, May 01, 2006 9:43 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] how to
implement the copy&paste of chart in flex



 

 

 

 

Hi Tom. You can create your own BitmapData
object, then blit the chart into it using the BitmapData.draw function (pass
the chart as the first parameter).

 

 

Ely

 







From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Thomas W. Gonzalez
Sent: Monday, May 01, 2006 8:49 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] how to
implement the copy&paste of chart in flex

I am unclear on how you can convert a
regular DisplayObject hierarchy (like a Chart) into a BitmapData object that
you can then encode into a .jpg.

 

Has anyone blogged on this topic?

 

- Tom









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Mendels
Sent: Saturday, April 29, 2006
6:02 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] how to
implement the copy&paste of chart in flex



 

Hi,

 

It can be done, but a few extra
steps.  Convert to JPEG first. This can help you get started: http://www.kaourantin.net/2005/10/more-fun-with-image-formats-in-as3.html

 

-David

 

 



 







From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tariq Ahmed
Sent: Saturday, April 29, 2006
1:58 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] how to implement
the copy&paste of chart in flex

Not possible as far as I
know. Snag-It is your next best bet.


anjicn wrote:
> I want to add the copy&paste support for charts in order to let user 
> select any chart, copy it and then paste it to some other editors 
> like "Office Word" or "MS Paint" for further use. 
>
> Is it possible to do so, or can I just generate a .jpg or .bmp file for 
> each chart, that will also be acceptable.
>
> Anyone who has such experience, please help me. Thanks.
>
>
>
>
>
> --
> 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
>
>
>
>  
>
>
>
>   















--
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] how to implement the copy&paste of chart in flex

2006-05-01 Thread Thomas W. Gonzalez










I am unclear on how you can convert a
regular DisplayObject hierarchy (like a Chart) into a BitmapData object that you
can then encode into a .jpg.

 

Has anyone blogged on this topic?

 

- Tom









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Mendels
Sent: Saturday, April 29, 2006
6:02 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] how to
implement the copy&paste of chart in flex



 

Hi,

 

It can be done, but a few extra
steps.  Convert to JPEG first. This can help you get started: http://www.kaourantin.net/2005/10/more-fun-with-image-formats-in-as3.html

 

-David

 

 



 







From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tariq Ahmed
Sent: Saturday, April 29, 2006
1:58 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] how to
implement the copy&paste of chart in flex

Not possible as far as I
know. Snag-It is your next best bet.


anjicn wrote:
> I want to add the copy&paste support for charts in order to let user 
> select any chart, copy it and then paste it to some other editors 
> like "Office Word" or "MS Paint" for further use. 
>
> Is it possible to do so, or can I just generate a .jpg or .bmp file for 
> each chart, that will also be acceptable.
>
> Anyone who has such experience, please help me. Thanks.
>
>
>
>
>
> --
> 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
>
>
>
>  
>
>
>
>   











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