RE: [Flashcoders] XML Data visualization

2006-01-31 Thread Kevin Aebig
Well a couple good examples are from Samual Wan:

http://samuelwan.com/downloads/treemap/Sample_Treemap_Renderer.html
http://www.samuelwan.com/flashmx_repository/xilhouette/XilhouetteEditor.html


http://www.marumushi.com/apps/newsmap/ 

Here are some good examples, but not all are flash:
http://www.cs.umd.edu/hcil/research/visualization.shtml 

Cheers,

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Flash guru
Sent: January 31, 2006 12:18 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] XML Data visualization

Wat do you mean by data visualization. Can you be a little more precise?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] XML Data visualization

2006-01-31 Thread elibol
I see what you mean, but it seems like the the examples you've given utilize
a Model View Controller ( commonly referred to as MVC ) design pattern. This
pattern is designed for different views of the same data model, however, it
can be used in many different applications. The MVC pattern is built on
other other design patterns, I would suggest learning these first.

I would also recommend checking out the ARP Frameworkhttp://osflash.org/arp,
which is a framework designed to streamline and facilitate pattern
implementation.

As for your request for an example that renders XML type data, the version
2.0 Tree component that comes in Flash MX Professional 2004 ( and later
versions ) would suit well. This type of view best represents heirarchical
data models in my opinion. The source code can be viewed where Flash is
installed, relatively: en\First Run\Classes\mx\controls\Tree.as

I hope this helps,

M.

On 1/31/06, Kevin Aebig [EMAIL PROTECTED] wrote:

 Well a couple good examples are from Samual Wan:

 http://samuelwan.com/downloads/treemap/Sample_Treemap_Renderer.html

 http://www.samuelwan.com/flashmx_repository/xilhouette/XilhouetteEditor.html


 http://www.marumushi.com/apps/newsmap/

 Here are some good examples, but not all are flash:
 http://www.cs.umd.edu/hcil/research/visualization.shtml

 Cheers,

 !k

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Flash guru
 Sent: January 31, 2006 12:18 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] XML Data visualization

 Wat do you mean by data visualization. Can you be a little more precise?
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] XML Data visualization

2006-01-31 Thread Kevin Aebig
I understand what you mean in regards to design patterns, and have used MVC
and MVP patterns before in other projects.

I also have a very good understanding of the inner workings of the Tree
component, but am looking for something more experimental. The yugop tree
is a good example of something I'd be interested in seeing. I already have
this bounce style tree menu's source from a different party, but it seems
bulky and the implementation isn't clean enough.

Basically I'm trying to re-think how data can be viewed intelligently, but
artistically. I assume I'm not the first... =]

Cheers and thanks for suggesting the ARP framework. I'd heard about it, but
maybe it's time I play around for a bit...

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of elibol
Sent: January 31, 2006 3:19 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] XML Data visualization

I see what you mean, but it seems like the the examples you've given utilize
a Model View Controller ( commonly referred to as MVC ) design pattern. This
pattern is designed for different views of the same data model, however, it
can be used in many different applications. The MVC pattern is built on
other other design patterns, I would suggest learning these first.

I would also recommend checking out the ARP
Frameworkhttp://osflash.org/arp,
which is a framework designed to streamline and facilitate pattern
implementation.

As for your request for an example that renders XML type data, the version
2.0 Tree component that comes in Flash MX Professional 2004 ( and later
versions ) would suit well. This type of view best represents heirarchical
data models in my opinion. The source code can be viewed where Flash is
installed, relatively: en\First Run\Classes\mx\controls\Tree.as

I hope this helps,

M.

On 1/31/06, Kevin Aebig [EMAIL PROTECTED] wrote:

 Well a couple good examples are from Samual Wan:

 http://samuelwan.com/downloads/treemap/Sample_Treemap_Renderer.html


http://www.samuelwan.com/flashmx_repository/xilhouette/XilhouetteEditor.html


 http://www.marumushi.com/apps/newsmap/

 Here are some good examples, but not all are flash:
 http://www.cs.umd.edu/hcil/research/visualization.shtml

 Cheers,

 !k

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Flash guru
 Sent: January 31, 2006 12:18 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] XML Data visualization

 Wat do you mean by data visualization. Can you be a little more precise?
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] XML Data visualization

2006-01-31 Thread elibol
I hear you mang, don't want other peoples code if you plan on being
creative.

Good luck with that,

M.

On 1/31/06, Kevin Aebig [EMAIL PROTECTED] wrote:

 I understand what you mean in regards to design patterns, and have used
 MVC
 and MVP patterns before in other projects.

 I also have a very good understanding of the inner workings of the Tree
 component, but am looking for something more experimental. The yugop
 tree
 is a good example of something I'd be interested in seeing. I already have
 this bounce style tree menu's source from a different party, but it
 seems
 bulky and the implementation isn't clean enough.

 Basically I'm trying to re-think how data can be viewed intelligently, but
 artistically. I assume I'm not the first... =]

 Cheers and thanks for suggesting the ARP framework. I'd heard about it,
 but
 maybe it's time I play around for a bit...

 !k

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of elibol
 Sent: January 31, 2006 3:19 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] XML Data visualization

 I see what you mean, but it seems like the the examples you've given
 utilize
 a Model View Controller ( commonly referred to as MVC ) design pattern.
 This
 pattern is designed for different views of the same data model, however,
 it
 can be used in many different applications. The MVC pattern is built on
 other other design patterns, I would suggest learning these first.

 I would also recommend checking out the ARP
 Frameworkhttp://osflash.org/arp,
 which is a framework designed to streamline and facilitate pattern
 implementation.

 As for your request for an example that renders XML type data, the version
 2.0 Tree component that comes in Flash MX Professional 2004 ( and later
 versions ) would suit well. This type of view best represents heirarchical
 data models in my opinion. The source code can be viewed where Flash is
 installed, relatively: en\First Run\Classes\mx\controls\Tree.as

 I hope this helps,

 M.

 On 1/31/06, Kevin Aebig [EMAIL PROTECTED] wrote:
 
  Well a couple good examples are from Samual Wan:
 
  http://samuelwan.com/downloads/treemap/Sample_Treemap_Renderer.html
 
 

 http://www.samuelwan.com/flashmx_repository/xilhouette/XilhouetteEditor.html
 
 
  http://www.marumushi.com/apps/newsmap/
 
  Here are some good examples, but not all are flash:
  http://www.cs.umd.edu/hcil/research/visualization.shtml
 
  Cheers,
 
  !k
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of Flash
 guru
  Sent: January 31, 2006 12:18 PM
  To: Flashcoders mailing list
  Subject: Re: [Flashcoders] XML Data visualization
 
  Wat do you mean by data visualization. Can you be a little more precise?
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] XML Data visualization

2006-01-31 Thread dave matthews

hi Kevin,

 Try poking around  http://www.2GoTo.com

 It's an experimental data visualization system based on an infinitely 
large, non-distorting hyperbolic plane that imports .swf files as content.


 It zooms from 2% to 28000% and can display hundreds of different .swf 
files at the same time, from many different servers at the same time.


later,
Dave_Matthews

Message: 23
Date: Tue, 31 Jan 2006 16:06:28 -0600
From: Kevin Aebig [EMAIL PROTECTED]
Subject: RE: [Flashcoders] XML Data visualization
To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain;   charset=us-ascii

I understand what you mean in regards to design patterns, and have used MVC
and MVP patterns before in other projects.

I also have a very good understanding of the inner workings of the Tree
component, but am looking for something more experimental. The yugop tree
is a good example of something I'd be interested in seeing. I already have
this bounce style tree menu's source from a different party, but it seems
bulky and the implementation isn't clean enough.

Basically I'm trying to re-think how data can be viewed intelligently, but
artistically. I assume I'm not the first... =]

Cheers and thanks for suggesting the ARP framework. I'd heard about it, but
maybe it's time I play around for a bit...

!k


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] XML Data visualization

2006-01-31 Thread Kevin Aebig
Very cool. Thanks for the link!

!k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of dave
matthews
Sent: Tuesday, January 31, 2006 7:27 PM
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] XML Data visualization

hi Kevin,

  Try poking around  http://www.2GoTo.com

  It's an experimental data visualization system based on an infinitely 
large, non-distorting hyperbolic plane that imports .swf files as content.

  It zooms from 2% to 28000% and can display hundreds of different .swf 
files at the same time, from many different servers at the same time.

later,
Dave_Matthews

Message: 23
Date: Tue, 31 Jan 2006 16:06:28 -0600
From: Kevin Aebig [EMAIL PROTECTED]
Subject: RE: [Flashcoders] XML Data visualization
To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain;   charset=us-ascii

I understand what you mean in regards to design patterns, and have used MVC
and MVP patterns before in other projects.

I also have a very good understanding of the inner workings of the Tree
component, but am looking for something more experimental. The yugop tree
is a good example of something I'd be interested in seeing. I already have
this bounce style tree menu's source from a different party, but it seems
bulky and the implementation isn't clean enough.

Basically I'm trying to re-think how data can be viewed intelligently, but
artistically. I assume I'm not the first... =]

Cheers and thanks for suggesting the ARP framework. I'd heard about it, but
maybe it's time I play around for a bit...

!k


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders