<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Forums - All Forums]]></title>
		<link>http://goosebumps4all.net/34all/bb/</link>
		<description><![CDATA[Forums - http://goosebumps4all.net/34all/bb]]></description>
		<pubDate>Wed, 10 Mar 2010 14:17:31 +0100</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Add ClickControl to particular nodes]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=368</link>
			<pubDate>Thu, 11 Feb 2010 13:57:02 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=368</guid>
			<description><![CDATA[Hello ALL,<br />
<br />
In the graph, there are 10 nodes, I want to add ClickCongtrol only to some of them.<br />
<br />
I know I can add ClickControl for EVERY node using the following line<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;var cc1:ClickControl = new ClickControl(NodeSprite,1);<br />
<br />
Could I distinguish between different nodes</code></div></div>
by using some identifier such as ID for this purpose?<br />
<br />
Thanks<br />
 Felix]]></description>
			<content:encoded><![CDATA[Hello ALL,<br />
<br />
In the graph, there are 10 nodes, I want to add ClickCongtrol only to some of them.<br />
<br />
I know I can add ClickControl for EVERY node using the following line<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;var cc1:ClickControl = new ClickControl(NodeSprite,1);<br />
<br />
Could I distinguish between different nodes</code></div></div>
by using some identifier such as ID for this purpose?<br />
<br />
Thanks<br />
 Felix]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Problem with circularlayout - why isn'n circular?]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=364</link>
			<pubDate>Wed, 03 Feb 2010 11:52:49 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=364</guid>
			<description><![CDATA[hi<br />
i've managed to import data from a json file, and now i'd like to visualize it with a graph similar to DependancyGraph.<br />
<br />
So i've *cough* copied this part of code:<br />
<span style="font-family: Courier;">// define the visualization<br />
				_vis = new Visualization(data);<br />
				// place around circle by tree structure, radius mapped to depth<br />
				// make a large inner radius so labels are closer to circumference<br />
				_vis.operators.add(new CircleLayout("depth", null, true));<br />
				CircleLayout(_vis.operators.last).startRadiusFraction = 3/5;<br />
				// bundle edges to route along the tree structure<br />
				_vis.operators.add(new BundledEdgeRouter(0.95));<br />
				// set the edge alpha values<br />
				// longer edge, lighter alpha: 1/(2*numCtrlPoints)<br />
				// update and add<br />
				_vis.update();<br />
				addChild(_vis);</span><br />
<br />
But the layout isn't circle! where is the error?<br />
<br />
thanks<br />
mikima]]></description>
			<content:encoded><![CDATA[hi<br />
i've managed to import data from a json file, and now i'd like to visualize it with a graph similar to DependancyGraph.<br />
<br />
So i've *cough* copied this part of code:<br />
<span style="font-family: Courier;">// define the visualization<br />
				_vis = new Visualization(data);<br />
				// place around circle by tree structure, radius mapped to depth<br />
				// make a large inner radius so labels are closer to circumference<br />
				_vis.operators.add(new CircleLayout("depth", null, true));<br />
				CircleLayout(_vis.operators.last).startRadiusFraction = 3/5;<br />
				// bundle edges to route along the tree structure<br />
				_vis.operators.add(new BundledEdgeRouter(0.95));<br />
				// set the edge alpha values<br />
				// longer edge, lighter alpha: 1/(2*numCtrlPoints)<br />
				// update and add<br />
				_vis.update();<br />
				addChild(_vis);</span><br />
<br />
But the layout isn't circle! where is the error?<br />
<br />
thanks<br />
mikima]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to associate  a jsp file with a node]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=363</link>
			<pubDate>Sun, 31 Jan 2010 15:50:46 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=363</guid>
			<description><![CDATA[Hello All,<br />
<br />
<br />
Currently, I can draw a graph with nodes and edges. I wonder if Flare allow to associate a node with a jsp/HTML page. When the use clicks on the node, the label of the node is sent back to  the web server. A jsp file receives the parameter, process the request and show the processing result on a web page.<br />
<br />
<br />
Thanks <br />
<br />
Felix]]></description>
			<content:encoded><![CDATA[Hello All,<br />
<br />
<br />
Currently, I can draw a graph with nodes and edges. I wonder if Flare allow to associate a node with a jsp/HTML page. When the use clicks on the node, the label of the node is sent back to  the web server. A jsp file receives the parameter, process the request and show the processing result on a web page.<br />
<br />
<br />
Thanks <br />
<br />
Felix]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Switching between layouts]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=362</link>
			<pubDate>Thu, 28 Jan 2010 18:32:30 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=362</guid>
			<description><![CDATA[Hello everyone<br />
<br />
I'm new to prefuse  but having a great time playing with the API.<br />
I'm posting my questions in the appropriate threads I hope.<br />
In an effort to play with the API i have developed a Demo with a panel on the side allowing to change the parameters on the fly. Kind of like GraphView.<br />
 One of my goal was to be able to play around with the same set of data but passing from one alyout to another and see what works and how.<br />
So I added a selection list to pick between different layoutd (Radial, Forcedirected etc...) As such:<br />
<br />
algoBox.addActionListener(new ActionListener() {<br />
            public void actionPerformed(ActionEvent e) {<br />
            	Visualization m_vis = Gview.getVisualization(); <br />
            	ActionList filter = (ActionList)m_vis.getAction("filter");<br />
            	filter.cancel();<br />
            	String algo = (String)algoBox.getSelectedItem();<br />
            	Layout layout = null;<br />
            	if(algo.equals("Radial")){<br />
            	    layout = new RadialTreeLayout(tree);<br />
            	}else if(algo.equals("Balloon")){<br />
            		layout = new BalloonTreeLayout(tree,10);<br />
            	}else if(algo.equals("FruchtermanReingold")){;<br />
            	    layout = new FruchtermanReingoldLayout(tree,15);<br />
            	}else if(algo.equals("ForceDirected")){<br />
            		layout = new ForceDirectedLayout(tree,false);<br />
            	}else if(algo.equals("SquarifiedTreeMap")){<br />
            		layout = new SquarifiedTreeMapLayout(tree);<br />
            	}else if(algo.equals("NodeLinkTree")){<br />
            		layout = new NodeLinkTreeLayout(tree);<br />
            	}<br />
            	m_vis.putAction("treeLayout", layout);<br />
                filter.add(layout);<br />
	        m_vis.run("filter");<br />
            }<br />
        });<br />
<br />
Of course I start with a default layout:<br />
<br />
 RadialTreeLayout treeLayout = new RadialTreeLayout(tree);<br />
 m_vis.putAction("treeLayout", treeLayout);<br />
 CollapsedSubtreeLayout subLayout = new CollapsedSubtreeLayout(tree);<br />
        m_vis.putAction("subLayout", subLayout);<br />
        <br />
        // create the filtering and layout<br />
        ActionList filter = new ActionList(2000);<br />
        filter.add(new TreeRootAction(tree));<br />
        filter.add(treeLayout);<br />
<br />
The results are good the layouts do change but not in a coherent fashion. Only The first change to a new layout works and all new attempts seem to redraw on top of the old layout.<br />
<br />
If anyone has tried such an approach before i'd love to hear about it. I can add my dataset is usually disjoint, maybe that factors in the problem.]]></description>
			<content:encoded><![CDATA[Hello everyone<br />
<br />
I'm new to prefuse  but having a great time playing with the API.<br />
I'm posting my questions in the appropriate threads I hope.<br />
In an effort to play with the API i have developed a Demo with a panel on the side allowing to change the parameters on the fly. Kind of like GraphView.<br />
 One of my goal was to be able to play around with the same set of data but passing from one alyout to another and see what works and how.<br />
So I added a selection list to pick between different layoutd (Radial, Forcedirected etc...) As such:<br />
<br />
algoBox.addActionListener(new ActionListener() {<br />
            public void actionPerformed(ActionEvent e) {<br />
            	Visualization m_vis = Gview.getVisualization(); <br />
            	ActionList filter = (ActionList)m_vis.getAction("filter");<br />
            	filter.cancel();<br />
            	String algo = (String)algoBox.getSelectedItem();<br />
            	Layout layout = null;<br />
            	if(algo.equals("Radial")){<br />
            	    layout = new RadialTreeLayout(tree);<br />
            	}else if(algo.equals("Balloon")){<br />
            		layout = new BalloonTreeLayout(tree,10);<br />
            	}else if(algo.equals("FruchtermanReingold")){;<br />
            	    layout = new FruchtermanReingoldLayout(tree,15);<br />
            	}else if(algo.equals("ForceDirected")){<br />
            		layout = new ForceDirectedLayout(tree,false);<br />
            	}else if(algo.equals("SquarifiedTreeMap")){<br />
            		layout = new SquarifiedTreeMapLayout(tree);<br />
            	}else if(algo.equals("NodeLinkTree")){<br />
            		layout = new NodeLinkTreeLayout(tree);<br />
            	}<br />
            	m_vis.putAction("treeLayout", layout);<br />
                filter.add(layout);<br />
	        m_vis.run("filter");<br />
            }<br />
        });<br />
<br />
Of course I start with a default layout:<br />
<br />
 RadialTreeLayout treeLayout = new RadialTreeLayout(tree);<br />
 m_vis.putAction("treeLayout", treeLayout);<br />
 CollapsedSubtreeLayout subLayout = new CollapsedSubtreeLayout(tree);<br />
        m_vis.putAction("subLayout", subLayout);<br />
        <br />
        // create the filtering and layout<br />
        ActionList filter = new ActionList(2000);<br />
        filter.add(new TreeRootAction(tree));<br />
        filter.add(treeLayout);<br />
<br />
The results are good the layouts do change but not in a coherent fashion. Only The first change to a new layout works and all new attempts seem to redraw on top of the old layout.<br />
<br />
If anyone has tried such an approach before i'd love to hear about it. I can add my dataset is usually disjoint, maybe that factors in the problem.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Color menu]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=361</link>
			<pubDate>Thu, 28 Jan 2010 18:19:53 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=361</guid>
			<description><![CDATA[Hello everyone<br />
<br />
I'm new to prefuse and have been playing and programming some demos.<br />
For one application I apply color to nodes according to a field value, for example, nationality. Since I do not know before hand what all the values of this field I will have in the dataset I assigned an array of colors large enough and let the colorAction do the job.<br />
<br />
public static class NodeColorAction extends DataColorAction {<br />
        public NodeColorAction(String group,String field, int[&#93; palette) {<br />
        	super(group, field,Constants.NOMINAL, VisualItem.FILLCOLOR, palette);<br />
            add("_hover", ColorLib.gray(220,230));<br />
            add("ingroup('_search_')", ColorLib.rgb(0,255,0));<br />
            add("ingroup('_focus_')", ColorLib.rgb(255,0,0));<br />
            add("ingroup('_selected_')", ColorLib.rgb(0,0,255));<br />
            add(VisualItem.HIGHLIGHT, ColorLib.rgb(255,0,0));<br />
        }          <br />
    } <br />
<br />
Here palette is an array of randomly picked colors.<br />
<br />
I would like to give a menu of what the colors stand for, in an effort of clarity.  For example a Map at the bottom of the applet  assigning each color to the value of the nationality field it represents.<br />
<br />
Is there somewhere where this info can be retrieved.<br />
<br />
Off course if someone has a different way on answering this problem i'm also all ears.<br />
<br />
thanks for your time]]></description>
			<content:encoded><![CDATA[Hello everyone<br />
<br />
I'm new to prefuse and have been playing and programming some demos.<br />
For one application I apply color to nodes according to a field value, for example, nationality. Since I do not know before hand what all the values of this field I will have in the dataset I assigned an array of colors large enough and let the colorAction do the job.<br />
<br />
public static class NodeColorAction extends DataColorAction {<br />
        public NodeColorAction(String group,String field, int[] palette) {<br />
        	super(group, field,Constants.NOMINAL, VisualItem.FILLCOLOR, palette);<br />
            add("_hover", ColorLib.gray(220,230));<br />
            add("ingroup('_search_')", ColorLib.rgb(0,255,0));<br />
            add("ingroup('_focus_')", ColorLib.rgb(255,0,0));<br />
            add("ingroup('_selected_')", ColorLib.rgb(0,0,255));<br />
            add(VisualItem.HIGHLIGHT, ColorLib.rgb(255,0,0));<br />
        }          <br />
    } <br />
<br />
Here palette is an array of randomly picked colors.<br />
<br />
I would like to give a menu of what the colors stand for, in an effort of clarity.  For example a Map at the bottom of the applet  assigning each color to the value of the nationality field it represents.<br />
<br />
Is there somewhere where this info can be retrieved.<br />
<br />
Off course if someone has a different way on answering this problem i'm also all ears.<br />
<br />
thanks for your time]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Simple Radial Layout with labels from XML]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=360</link>
			<pubDate>Tue, 26 Jan 2010 21:17:12 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=360</guid>
			<description><![CDATA[Hi all, a noob here..I wish this flare thing had a bunch of tutorials for beginners like me!! :sigh:<br />
<br />
All I want to accomplish is something really simple - I want to create a radial tree layout similar to the one on the demo page (flare.prefuse.org/demo/)<br />
I don't mind about the colors, I just want to create a radial tree layout like in the demo, except that the nodes must be labelled with the help of an xml file. I broke my head reading the tutorial a million times (flare.prefuse.org/tutorial). In short, I want something like what Martin has made, here (<a href="http://goosebumps4all.net/34all/bb/showthread.php?tid=127)" target="_blank">http://goosebumps4all.net/34all/bb/showt...p?tid=127)</a> except that it has to be like the radial layout in the demo.I know this is really simple,probably for experts like you,but not for noobs like me <img src="http://goosebumps4all.net/34all/bb/images/smilies/sad.gif" style="vertical-align: middle;" border="0" alt="Sad" title="Sad" /> <br />
<br />
Any help is really much appreciated!!!!!<br />
<br />
Thank you]]></description>
			<content:encoded><![CDATA[Hi all, a noob here..I wish this flare thing had a bunch of tutorials for beginners like me!! :sigh:<br />
<br />
All I want to accomplish is something really simple - I want to create a radial tree layout similar to the one on the demo page (flare.prefuse.org/demo/)<br />
I don't mind about the colors, I just want to create a radial tree layout like in the demo, except that the nodes must be labelled with the help of an xml file. I broke my head reading the tutorial a million times (flare.prefuse.org/tutorial). In short, I want something like what Martin has made, here (<a href="http://goosebumps4all.net/34all/bb/showthread.php?tid=127)" target="_blank">http://goosebumps4all.net/34all/bb/showt...p?tid=127)</a> except that it has to be like the radial layout in the demo.I know this is really simple,probably for experts like you,but not for noobs like me <img src="http://goosebumps4all.net/34all/bb/images/smilies/sad.gif" style="vertical-align: middle;" border="0" alt="Sad" title="Sad" /> <br />
<br />
Any help is really much appreciated!!!!!<br />
<br />
Thank you]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Expanding graph at start]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=359</link>
			<pubDate>Mon, 25 Jan 2010 19:39:03 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=359</guid>
			<description><![CDATA[Hi<br />
<br />
I have created a graph in flare of circular layout. As I start the application or open the flash file, the graph should expand (  or bloom) to a circular layout. How can that be done?<br />
<br />
Thanks<br />
Sharada]]></description>
			<content:encoded><![CDATA[Hi<br />
<br />
I have created a graph in flare of circular layout. As I start the application or open the flash file, the graph should expand (  or bloom) to a circular layout. How can that be done?<br />
<br />
Thanks<br />
Sharada]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Graph edges don't refresh inside flex app]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=358</link>
			<pubDate>Sat, 23 Jan 2010 00:07:38 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=358</guid>
			<description><![CDATA[hi ppl,<br />
<br />
I'm working on a social network visualization based on flare RadialTreeLayout example inside a flex project. Everything works fine using a small GraphML file (SocialNetwork2.xml, 30 nodes) but strange behaviour appears when visualizing more nodes (SocialNetwork.xml, &gt;100 nodes). Edges of graph only refreshes when moving mouse over DataGrid component. I can't figure out how to refresh the graph edges from code. Any ideas?<br />
<br />
Just run the socialnetwork.mxml to see the application. The project is for flex builder (linux version but should work fine on different OS). <br />
<br />
greetings<br />
Gerald]]></description>
			<content:encoded><![CDATA[hi ppl,<br />
<br />
I'm working on a social network visualization based on flare RadialTreeLayout example inside a flex project. Everything works fine using a small GraphML file (SocialNetwork2.xml, 30 nodes) but strange behaviour appears when visualizing more nodes (SocialNetwork.xml, &gt;100 nodes). Edges of graph only refreshes when moving mouse over DataGrid component. I can't figure out how to refresh the graph edges from code. Any ideas?<br />
<br />
Just run the socialnetwork.mxml to see the application. The project is for flex builder (linux version but should work fine on different OS). <br />
<br />
greetings<br />
Gerald]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[memory leak when loading many graphs sequentielly]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=357</link>
			<pubDate>Fri, 15 Jan 2010 13:47:33 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=357</guid>
			<description><![CDATA[Good morning,<br />
<br />
hope all are well. <br />
<br />
I noticed a memory leak when loading many graphs sequentielly. I just started looking into that and use the attached demo for my investigation. <br />
<br />
Any suggestion how to improve the demo so that the allocated memory space is not slowly increasing over time would be great. I will myself post any improvements I find, I assume there are some EventListener in the way. Yet fixing this would involve flare core modifications  I am afraid.<br />
<br />
Greets<br />
<br />
martin]]></description>
			<content:encoded><![CDATA[Good morning,<br />
<br />
hope all are well. <br />
<br />
I noticed a memory leak when loading many graphs sequentielly. I just started looking into that and use the attached demo for my investigation. <br />
<br />
Any suggestion how to improve the demo so that the allocated memory space is not slowly increasing over time would be great. I will myself post any improvements I find, I assume there are some EventListener in the way. Yet fixing this would involve flare core modifications  I am afraid.<br />
<br />
Greets<br />
<br />
martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Accessing node]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=356</link>
			<pubDate>Tue, 05 Jan 2010 01:06:59 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=356</guid>
			<description><![CDATA[Hi<br />
<br />
How do I access a particular node of a graph using an Array?<br />
<br />
for example: in the following code,<br />
<br />
var dataList:DataList=vis.data.nodes;<br />
  for (var i:int = 0; i &lt; dataList.length; i++)  {<br />
   if (ComboBox(event.target).selectedItem.label == ?????){<br />
      	vis.data.nodes[i&#93;.fillColor= 0x77ffff00;  <br />
}<br />
}<br />
<br />
This code checks if the selected combobox item is equal to a node ID or node attribute. If so, color of the node changes. <br />
<br />
???? part of the code is what I need to know.<br />
<br />
The data of a node includes an ID, sales and profit.<br />
<br />
I tried vis.data.nodes[i&#93;.id and it doesnt work.<br />
<br />
Please help !<br />
<br />
Thank you.<br />
Sharada]]></description>
			<content:encoded><![CDATA[Hi<br />
<br />
How do I access a particular node of a graph using an Array?<br />
<br />
for example: in the following code,<br />
<br />
var dataList:DataList=vis.data.nodes;<br />
  for (var i:int = 0; i &lt; dataList.length; i++)  {<br />
   if (ComboBox(event.target).selectedItem.label == ?????){<br />
      	vis.data.nodes[i].fillColor= 0x77ffff00;  <br />
}<br />
}<br />
<br />
This code checks if the selected combobox item is equal to a node ID or node attribute. If so, color of the node changes. <br />
<br />
???? part of the code is what I need to know.<br />
<br />
The data of a node includes an ID, sales and profit.<br />
<br />
I tried vis.data.nodes[i].id and it doesnt work.<br />
<br />
Please help !<br />
<br />
Thank you.<br />
Sharada]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Cannot load data using DataSource URLLoader loader.addEventListener]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=355</link>
			<pubDate>Sun, 03 Jan 2010 03:52:56 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=355</guid>
			<description><![CDATA[Hello ALL,<br />
<br />
I am new to Flare and ActionScript. I am learning Flare and ActionScript.<br />
<br />
In the attached progam, I want to load data from a GraphML format XML file to render a graph, which consists of nodes and edges.<br />
<br />
However, the graph could not be rendered properly. Only a circle is shown.<br />
<br />
Could anyone help me with this.<br />
<br />
Thanks in advance]]></description>
			<content:encoded><![CDATA[Hello ALL,<br />
<br />
I am new to Flare and ActionScript. I am learning Flare and ActionScript.<br />
<br />
In the attached progam, I want to load data from a GraphML format XML file to render a graph, which consists of nodes and edges.<br />
<br />
However, the graph could not be rendered properly. Only a circle is shown.<br />
<br />
Could anyone help me with this.<br />
<br />
Thanks in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Adding a combobox to a flare project]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=354</link>
			<pubDate>Sat, 02 Jan 2010 21:40:18 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=354</guid>
			<description><![CDATA[Hi<br />
<br />
I am unable to add a combobox to a flare project. My flare project is a graph of nodes and edges. On selecting an item from the combobox, the nodes in the graph with the property selected need to be highlighted. <br />
I tired importing mx.controls.combobox but it doesn't work.<br />
<br />
I saw a post about using FlareVis and I am not clear on how that can be implemented.<br />
<br />
Any suggestions? <br />
<br />
Thank you!<br />
Sharada]]></description>
			<content:encoded><![CDATA[Hi<br />
<br />
I am unable to add a combobox to a flare project. My flare project is a graph of nodes and edges. On selecting an item from the combobox, the nodes in the graph with the property selected need to be highlighted. <br />
I tired importing mx.controls.combobox but it doesn't work.<br />
<br />
I saw a post about using FlareVis and I am not clear on how that can be implemented.<br />
<br />
Any suggestions? <br />
<br />
Thank you!<br />
Sharada]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[dynamically adding aggregates]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=353</link>
			<pubDate>Wed, 16 Dec 2009 19:37:13 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=353</guid>
			<description><![CDATA[Hi Folks,<br />
I've been struggling recently trying to add existing nodes to a new aggregate grouping. I'm more-or-less following the AggregateDecoratorDemo example, and the label (decorator) of the aggregate shows up on my visualization, but not the convex hull around nodes.<br />
<br />
Unfortunately, I can't post compilable code, but the pertinent class is attached. Referenced classes are either from the AggregateDecoratorDemo source or unrelated to the visualization.<br />
<br />
setUserGroup() is the function that makes the aggregates, and addGroupActions() sets up the painting (I think).<br />
<br />
This has been driving me crazy, so any feedback with get you everlasting admiration in my eyes. Thanks,<br />
<br />
ry]]></description>
			<content:encoded><![CDATA[Hi Folks,<br />
I've been struggling recently trying to add existing nodes to a new aggregate grouping. I'm more-or-less following the AggregateDecoratorDemo example, and the label (decorator) of the aggregate shows up on my visualization, but not the convex hull around nodes.<br />
<br />
Unfortunately, I can't post compilable code, but the pertinent class is attached. Referenced classes are either from the AggregateDecoratorDemo source or unrelated to the visualization.<br />
<br />
setUserGroup() is the function that makes the aggregates, and addGroupActions() sets up the painting (I think).<br />
<br />
This has been driving me crazy, so any feedback with get you everlasting admiration in my eyes. Thanks,<br />
<br />
ry]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Why ExpandControl is not working in the ForceDirectedLayout]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=352</link>
			<pubDate>Tue, 08 Dec 2009 21:52:33 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=352</guid>
			<description><![CDATA[Hi there,<br />
<br />
I'm trying to expand/collapse tree nodes when clicked in a ForceDirectedLayout. I added the control, but nothing happens. When I change to other layout like CircularLayout it does work. <br />
<br />
Can anyone help me, please?<br />
<br />
Cheers,<br />
Cassio<br />
<br />
Code and node icon attached.]]></description>
			<content:encoded><![CDATA[Hi there,<br />
<br />
I'm trying to expand/collapse tree nodes when clicked in a ForceDirectedLayout. I added the control, but nothing happens. When I change to other layout like CircularLayout it does work. <br />
<br />
Can anyone help me, please?<br />
<br />
Cheers,<br />
Cassio<br />
<br />
Code and node icon attached.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Add Image on top of node`]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=351</link>
			<pubDate>Sat, 28 Nov 2009 16:01:29 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=351</guid>
			<description><![CDATA[HI all,<br />
<br />
i'm using prefuse as presentation tier to my application<br />
<br />
assuming i have simple graph and i won't to add dynamically an alert icon on <br />
<br />
top of the node when one press a button.<br />
<br />
i know how to add node as image but my problem is how i attach it to the <br />
<br />
existing node and place it in a specific location<br />
<br />
Thanks<br />
<br />
Avi]]></description>
			<content:encoded><![CDATA[HI all,<br />
<br />
i'm using prefuse as presentation tier to my application<br />
<br />
assuming i have simple graph and i won't to add dynamically an alert icon on <br />
<br />
top of the node when one press a button.<br />
<br />
i know how to add node as image but my problem is how i attach it to the <br />
<br />
existing node and place it in a specific location<br />
<br />
Thanks<br />
<br />
Avi]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[2 questions about prefuse (SQL and schedules)]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=350</link>
			<pubDate>Tue, 17 Nov 2009 13:49:29 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=350</guid>
			<description><![CDATA[Hi all,<br />
<br />
I just started to work with prefuse. It's quite nice, but somehow difficult to handle.<br />
<br />
I had a look at the Graphview Demo and this is basically what I need. But I don't want to read the Input from a xml file. I want to query a database. Therefore, prefuse has the prefuse.io.sql package. <br />
<br />
So I query the database and the result is stored in a table. Now I want to make a 2nd query and want to "append" the result at the table. But every time, I call the 2nd query, the table is overwritten and only the new result is represented in there <img src="http://goosebumps4all.net/34all/bb/images/smilies/sad.gif" style="vertical-align: middle;" border="0" alt="Sad" title="Sad" /><br />
<br />
How can I fix this?<br />
<br />
And 2nd question is: How could I  schedule this whole table generation and graph plotting? I want to display changes every 3seconds. Is there a prefuse package, which allows that?<br />
<br />
For any answer, I'll be very happy :-)<br />
<br />
Best,<br />
Martin]]></description>
			<content:encoded><![CDATA[Hi all,<br />
<br />
I just started to work with prefuse. It's quite nice, but somehow difficult to handle.<br />
<br />
I had a look at the Graphview Demo and this is basically what I need. But I don't want to read the Input from a xml file. I want to query a database. Therefore, prefuse has the prefuse.io.sql package. <br />
<br />
So I query the database and the result is stored in a table. Now I want to make a 2nd query and want to "append" the result at the table. But every time, I call the 2nd query, the table is overwritten and only the new result is represented in there <img src="http://goosebumps4all.net/34all/bb/images/smilies/sad.gif" style="vertical-align: middle;" border="0" alt="Sad" title="Sad" /><br />
<br />
How can I fix this?<br />
<br />
And 2nd question is: How could I  schedule this whole table generation and graph plotting? I want to display changes every 3seconds. Is there a prefuse package, which allows that?<br />
<br />
For any answer, I'll be very happy :-)<br />
<br />
Best,<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Magnify glass]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=349</link>
			<pubDate>Sun, 15 Nov 2009 18:26:24 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=349</guid>
			<description><![CDATA[Hi,<br />
<br />
A Magnify Glass example.<br />
<br />
I've take all the necessary code from here:<br />
<br />
<a href="http://wonderfl.net/code/ce64c566e07087888ba087653bdc3a7dd81ecc83" target="_blank">http://wonderfl.net/code/ce64c566e070878...7dd81ecc83</a><br />
<br />
and I've put it inside the Magnify class.<br />
<br />
Then, I've ramdomly choosen an example (LabelerBorderDemo.as) and I've added the Magnify class and two new lines inside the example:<br />
<br />
<span style="font-family: Courier;">==================================================<br />
private var magnify:Magnify; //new property<br />
<br />
magnify=new Magnify(this); //inside the example constructor.<br />
==================================================</span><br />
<br />
Move the cursor on the labels to see the magnify effect.<br />
<br />
I hope this helps.<br />
<br />
Best regards,<br />
Pablo.]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
A Magnify Glass example.<br />
<br />
I've take all the necessary code from here:<br />
<br />
<a href="http://wonderfl.net/code/ce64c566e07087888ba087653bdc3a7dd81ecc83" target="_blank">http://wonderfl.net/code/ce64c566e070878...7dd81ecc83</a><br />
<br />
and I've put it inside the Magnify class.<br />
<br />
Then, I've ramdomly choosen an example (LabelerBorderDemo.as) and I've added the Magnify class and two new lines inside the example:<br />
<br />
<span style="font-family: Courier;">==================================================<br />
private var magnify:Magnify; //new property<br />
<br />
magnify=new Magnify(this); //inside the example constructor.<br />
==================================================</span><br />
<br />
Move the cursor on the labels to see the magnify effect.<br />
<br />
I hope this helps.<br />
<br />
Best regards,<br />
Pablo.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Sunburst + ForceDirectedLayout: How to combine different layouts on the same graph?]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=348</link>
			<pubDate>Sat, 14 Nov 2009 00:03:35 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=348</guid>
			<description><![CDATA[Hi there,<br />
<br />
I'm trying to make an Sunburst-like app that the leaves (i.e. peripheric nodes) are displayed as circles and uses the forcedirected layout. <br />
<br />
There's a image attached ilustrating my ideia along with my actual code.<br />
<br />
Can anyone outline the steps for achieving it? Any similar tutorial?<br />
<br />
Thanks in advance!<br />
Cassio]]></description>
			<content:encoded><![CDATA[Hi there,<br />
<br />
I'm trying to make an Sunburst-like app that the leaves (i.e. peripheric nodes) are displayed as circles and uses the forcedirected layout. <br />
<br />
There's a image attached ilustrating my ideia along with my actual code.<br />
<br />
Can anyone outline the steps for achieving it? Any similar tutorial?<br />
<br />
Thanks in advance!<br />
Cassio]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Editing Dependency Graph]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=347</link>
			<pubDate>Fri, 13 Nov 2009 19:11:07 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=347</guid>
			<description><![CDATA[Hello there,<br />
<br />
I'm glad I stumbled upon this great forum! I discovered flare two weeks ago and picked the "Dependeny Graph" for the best solution to visualize my project. So, now I'm trying to get it running. I really hope that some of you will spend their time helping me out of my stupid beginners' questions.<br />
<br />
Ok here it is: My basic AS-Code is the DependencyGraph.as file in the flare.apps directory. I chose this one, because it's the best layout I could find for my work. But I need to adjust it a little bit to my preferences.<br />
<br />
At first I want my nodes being DIRECTLY linked to each other, so that it makes no difference if Node A is linking TO Node B or Node A is linked BY Node B.<br />
<br />
Second, I need a solution to draw lines from Node A to Node B in a different color than from Node A to Node C. How can I implement that in the json-file and finally code it in my flare project?<br />
<br />
<br />
Puh... lame questions, I know. But I really can't do it on my own - so far.<br />
<br />
Thanks for your effort,<br />
Matti<hr />
sorry, beginner's question without attachment. will move to the sourceforge forum <img src="http://goosebumps4all.net/34all/bb/images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" />]]></description>
			<content:encoded><![CDATA[Hello there,<br />
<br />
I'm glad I stumbled upon this great forum! I discovered flare two weeks ago and picked the "Dependeny Graph" for the best solution to visualize my project. So, now I'm trying to get it running. I really hope that some of you will spend their time helping me out of my stupid beginners' questions.<br />
<br />
Ok here it is: My basic AS-Code is the DependencyGraph.as file in the flare.apps directory. I chose this one, because it's the best layout I could find for my work. But I need to adjust it a little bit to my preferences.<br />
<br />
At first I want my nodes being DIRECTLY linked to each other, so that it makes no difference if Node A is linking TO Node B or Node A is linked BY Node B.<br />
<br />
Second, I need a solution to draw lines from Node A to Node B in a different color than from Node A to Node C. How can I implement that in the json-file and finally code it in my flare project?<br />
<br />
<br />
Puh... lame questions, I know. But I really can't do it on my own - so far.<br />
<br />
Thanks for your effort,<br />
Matti<hr />
sorry, beginner's question without attachment. will move to the sourceforge forum <img src="http://goosebumps4all.net/34all/bb/images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Sunburst-like app problem: node moving when expanded / collapsed]]></title>
			<link>http://goosebumps4all.net/34all/bb/showthread.php?tid=345</link>
			<pubDate>Fri, 13 Nov 2009 17:35:37 +0100</pubDate>
			<guid isPermaLink="false">http://goosebumps4all.net/34all/bb/showthread.php?tid=345</guid>
			<description><![CDATA[Hello there,<br />
<br />
I'm building a Sunburst-like app (attached) with RadialTreeLayout and Shapes.WEDGE. When collapsing / expanding the node also moves, is it a bug? I played around HoverControl.MOVE_AND_RETURN etc but it's still the same...<br />
<br />
Also:<br />
- How to begin just one level exanded or fully collapsed?<br />
- How wrap text inside the nodes?<br />
<br />
Any help is appreciated!<br />
<br />
Cassio<hr />
<blockquote><cite><span> (13-11-2009 06:35 PM)</span>ksiomelo Wrote: <a href="http://goosebumps4all.net/34all/bb/showthread.php?pid=962#pid962" class="quick_jump">&nbsp;</a></cite>Hello there,<br />
<br />
I'm building a Sunburst-like app (attached) with RadialTreeLayout and Shapes.WEDGE. When collapsing / expanding, the node also moves, is it a bug? I played around HoverControl.MOVE_AND_RETURN etc but it's still the same...<br />
<br />
Also:<br />
- How to begin just one level exanded or fully collapsed?<br />
- How wrap text inside the nodes?<br />
<br />
Any help is appreciated!<br />
<br />
Cassio</blockquote>
<br />
Ok, I fixed that: <br />
<br />
var lay:RadialTreeLayout = new RadialTreeLayout(50, true);<br />
lay.angleWidth = -2*Math.PI;<br />
<br />
but what about wrapping texts?]]></description>
			<content:encoded><![CDATA[Hello there,<br />
<br />
I'm building a Sunburst-like app (attached) with RadialTreeLayout and Shapes.WEDGE. When collapsing / expanding the node also moves, is it a bug? I played around HoverControl.MOVE_AND_RETURN etc but it's still the same...<br />
<br />
Also:<br />
- How to begin just one level exanded or fully collapsed?<br />
- How wrap text inside the nodes?<br />
<br />
Any help is appreciated!<br />
<br />
Cassio<hr />
<blockquote><cite><span> (13-11-2009 06:35 PM)</span>ksiomelo Wrote: <a href="http://goosebumps4all.net/34all/bb/showthread.php?pid=962#pid962" class="quick_jump">&nbsp;</a></cite>Hello there,<br />
<br />
I'm building a Sunburst-like app (attached) with RadialTreeLayout and Shapes.WEDGE. When collapsing / expanding, the node also moves, is it a bug? I played around HoverControl.MOVE_AND_RETURN etc but it's still the same...<br />
<br />
Also:<br />
- How to begin just one level exanded or fully collapsed?<br />
- How wrap text inside the nodes?<br />
<br />
Any help is appreciated!<br />
<br />
Cassio</blockquote>
<br />
Ok, I fixed that: <br />
<br />
var lay:RadialTreeLayout = new RadialTreeLayout(50, true);<br />
lay.angleWidth = -2*Math.PI;<br />
<br />
but what about wrapping texts?]]></content:encoded>
		</item>
	</channel>
</rss>