RE: [flexcoders] Question about storing a password

2005-09-01 Thread Dennis Baldwin





If you decide to use a 
SharedObject then be sure to utilize some level of encryption. Check out 
http://www.db75.com/blog/archives/000103.htmlfor 
a basic implementation. I hope this helps.
Best 
Regards,Dennis

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  [EMAIL PROTECTED]Sent: Thursday, September 01, 2005 3:19 
  PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] 
  Question about storing a password
  Is using a shared object the best way to say store someone's 
  password so that nobody else can get to it? Also are there examples of 
  programs where a user can store a password to get information like say a 
  website that is used by a lot of people? 





--
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
  
  
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] Re: Flash V2 Components and Flex Compatibility

2005-06-13 Thread Dennis Baldwin





Alex,

Thanks for your prompt reply. As it currently stands our components 
are instantiated non-dynamically (ie from within the Flash IDE). Since we 
basically design the view in the Flash IDE and register with our controller (AS 
2.0 class) then it probably won't take much to refactor intothe Flex 
framework. Now that I have a definitive answer I can explore the option 
you suggest.

Thanks again,
Dennis

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  alex_haruiSent: Monday, June 13, 2005 11:55 AMTo: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Re: Flash V2 
  Components and Flex Compatibility
  You'll probably have to provide more details about how the List 
  is being used, but in general, we don't promise that Flash V2 modules drop 
  into Flex.One of the main issues is that Flex is entirely 
  dynamic. It instantiates all of the components on-the-fly. In 
  Flash one can easily place components on the stage or in other 
  symbols. If you did that, it probably won't run in Flex as that is 
  non-dynamic and the instantiation sequence in that case is not supported 
  in Flex.Now, if you haven't done that, that implies that your app is 
  pretty muc script-driven, in which case the best option is probably just 
  to copy the script into .as files and compile them from MXML.--- 
  In flexcoders@yahoogroups.com, "Dennis Baldwin" [EMAIL PROTECTED] 
  wrote: We're in the process of porting some of our existing RIA 
  functionality from Flash to Flex. In certain situations we'd 
  like for pieces of our existing Flash RIA to live inside of 
  Flex. We've had moderate success with this approach, but the 
  biggest problem has been with the V2 components. I know 
  there are interoperability issues when using these components with Flex 
  so I've gone through the process of setting up the flexforflash file 
  within the Flash IDE. It appears that Button, Radio, and 
  Checkbox components work fine but whenever there's a component 
  that utilizes the Listbox it doesn't work at all. In fact, 
  the Listbox doesn't even display







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.










[flexcoders] HaloTheme.fla

2005-05-27 Thread Dennis Baldwin
I'm working on doing some skinning and don't have access to HaloTheme.fla in
my Flex 1.5 install.  Can someone post a link if they have this file handy?
Thanks in advance for any help you can give.

Best Regards,
Dennis



 
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] Flash Drawing API in Flex

2005-05-19 Thread Dennis Baldwin
Hi,

I'm wondering if it's possible to utilize the Flash drawing API in Flex.
Our current Flash application has a tree with drag/drop functionality.
Items are dragged from the tree and then dropped onto a floor plan.  In
Flash we trigger an event that draws a box and other shapes on the canvas.
We dynamically create a movieclip and then draw in it:

this.createEmptyMovieClip(square_mc, 1);
square_mc.lineStyle(1, 0x00, 100);
square_mc.beginFill(0xFF, 100);
square_mc.moveTo(0, 0);
square_mc.lineTo(50, 0);
square_mc.lineTo(50, 50);
square_mc.lineTo(0, 50);
square_mc.lineTo(0, 0);
square_mc.endFill();

How can this be implemented in Flex?  I know there are other approaches we
can take but I'm curious to know if there's support for more custom stuff,
ie dynamically creating movies and drawing in them.  I was assuming that I
could perform this type of interactivity with the Canvas container, but have
been unsuccessful.

Thanks,
Dennis




 
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] Flash Drawing API in Flex

2005-05-19 Thread Dennis Baldwin
Excellent Abdul!  I see that I was missing my reference to square_mc.
Thanks for the help.

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
Behalf Of Abdul Qabiz
Sent: Thursday, May 19, 2005 12:25 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flash Drawing API in Flex


Hi,

You can use drawing API in flex also. Yes you can do this with Canvas
because it's only container that supports absolute layouting.

Following is simple example:

##DrawingOnCanvas.mxml##

mx:Application width=800 height=600
xmlns:mx=http://www.macromedia.com/2003/mxml;
mx:Script
![CDATA[

var squareCount:Number = 0;

function createSquare()
{
var square_mc:MovieClip;

++squareCount;
square_mc = cvs.createEmptyMovieClip(square_mc + squareCount,
squareCount);

square_mc.lineStyle(1, 0x00, 100);
square_mc.beginFill(0xFF, 100);
square_mc.moveTo(0, 0);
square_mc.lineTo(50, 0);
square_mc.lineTo(50, 50);
square_mc.lineTo(0, 50);
square_mc.lineTo(0, 0);
square_mc.endFill();

square_mc._x = Math.random()*200;
square_mc._y = Math.random()*200;



}

]]
/mx:Script

   mx:Canvas id=cvs width=600 height=400
borderStyle=solid/mx:Canvas
   mx:Button label=Create Square click=createSquare()/

/mx:Application



Above code looks too low level, but in Flex you can create custom components
and wrap low-level detailsInfact Flex provide better work-flow..


Hope that helps..

-abdul


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Dennis Baldwin
Sent: Thursday, May 19, 2005 9:44 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flash Drawing API in Flex

Hi,

I'm wondering if it's possible to utilize the Flash drawing API in Flex.
Our current Flash application has a tree with drag/drop functionality.
Items are dragged from the tree and then dropped onto a floor plan.  In
Flash we trigger an event that draws a box and other shapes on the canvas.
We dynamically create a movieclip and then draw in it:

this.createEmptyMovieClip(square_mc, 1);
square_mc.lineStyle(1, 0x00, 100);
square_mc.beginFill(0xFF, 100);
square_mc.moveTo(0, 0);
square_mc.lineTo(50, 0);
square_mc.lineTo(50, 50);
square_mc.lineTo(0, 50);
square_mc.lineTo(0, 0);
square_mc.endFill();

How can this be implemented in Flex?  I know there are other approaches we
can take but I'm curious to know if there's support for more custom stuff,
ie dynamically creating movies and drawing in them.  I was assuming that I
could perform this type of interactivity with the Canvas container, but have
been unsuccessful.

Thanks,
Dennis





Yahoo! Groups Links









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.



 
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] Re: Transitioning Flash RIA to Flex

2005-05-10 Thread Dennis Baldwin
Erik,

Thanks for the great link and I'm finding this extremely useful.  I was a
bit scared at the thought of being closed in, but it appears that we have
everything we need to begin this gradual transition.

Best Regards,
Dennis


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
Behalf Of eerkmans
Sent: Tuesday, May 10, 2005 2:24 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Transitioning Flash RIA to Flex


Hi,

Yes you can communicate with a loaded SWF from flex, see this page
for extensive examples:

http://www.markme.com/pent/archives/006600.cfm

You can also export a movieclip in your flash library as an SWC
component, and then paste the component in your flex code like this:

myFlashSWC /

erik.

--- In flexcoders@yahoogroups.com, Dennis Baldwin [EMAIL PROTECTED]
wrote:
 I'm wondering if any of you have tackled a problem that I'm
currently faced
 with.  We have a very extensive RIA built with Flash MX Pro and V2
 components.  I'm pushing for our company to start leveraging Flex
and we'd
 like to implement a gradual transition if at all possible.  We
have several
 swfs that contain a good bit of logic that I'd like to load into
Flex.  In
 our current application these swf files listen for different
events from our
 main tree control and act accordingly.  I'd like to avoid
rewriting these
 swfs initially and load them into Flex in the meantime.  So my
main question
 is if these are swfs are loaded into the Flex framework, how can
we interact
 with them from Flex?  Let's say that I want my swf authored in the
Flash IDE
 to be able to listen to change events broadcasted from a Flex tree
control,
 is this at all possible?  Also, if I want to communicate in the
other
 direction, ie

 mx:Loader id=swfAuthoredInFlash contentPath=canvas.swf /

 Can I do something like swfAuthoredInFlash.method() from Flex?  I
hope this
 make sense and I'm ultimately looking for a way where these two
can play
 nicely until we roll our entire application in Flex.  If what I
mentioned
 above does not seem feasible are there any other approaches I can
take other
 than all or nothing?  Thanks in advance for your help.

 Best Regards,
 Dennis





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.



 
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] Transitioning Flash RIA to Flex

2005-05-09 Thread Dennis Baldwin
I'm wondering if any of you have tackled a problem that I'm currently faced
with.  We have a very extensive RIA built with Flash MX Pro and V2
components.  I'm pushing for our company to start leveraging Flex and we'd
like to implement a gradual transition if at all possible.  We have several
swfs that contain a good bit of logic that I'd like to load into Flex.  In
our current application these swf files listen for different events from our
main tree control and act accordingly.  I'd like to avoid rewriting these
swfs initially and load them into Flex in the meantime.  So my main question
is if these are swfs are loaded into the Flex framework, how can we interact
with them from Flex?  Let's say that I want my swf authored in the Flash IDE
to be able to listen to change events broadcasted from a Flex tree control,
is this at all possible?  Also, if I want to communicate in the other
direction, ie

mx:Loader id=swfAuthoredInFlash contentPath=canvas.swf /

Can I do something like swfAuthoredInFlash.method() from Flex?  I hope this
make sense and I'm ultimately looking for a way where these two can play
nicely until we roll our entire application in Flex.  If what I mentioned
above does not seem feasible are there any other approaches I can take other
than all or nothing?  Thanks in advance for your help.

Best Regards,
Dennis



 
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] n00b question: Flex compnents

2005-03-02 Thread Dennis Baldwin



Version 1.5 
controls: http://livedocs.macromedia.com/flex/15/asdocs_en/mx/controls/index.html

-Original Message-From: Eric Diamond 
[mailto:[EMAIL PROTECTED]Sent: Tuesday, March 01, 2005 7:55 
PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] 
n00b question: Flex compnentsI am a visual designer who 
is looking into Flex for a client solution. I know there are standard 
components like accordions, datagrids, etc. that can be used to create an 
interface. Is there a guide that lists all of them out so I can know whatis 
out-of-the-box-standard and what might have to be custom written? I am having 
a hard time find the right stuff on the Macromedia site. Can someone point me 
to the light? Thanks in advance!---Eric 
Diamondfirstwaterwhere 
clarity comes first847 
674 6568847 414 6467 mobileAIM: ericdiamondmm