Problem with visualization of a big network

2006-09-26 Thread KALANGI Vijay BABU
Hi all, I'm developing an application Network Editor wherein there are nearly 50-75 nodes representing people on a single card... Here each node is a button of size 30 * 40 and with links (graphics of style line) between them the network becomes very big. The user will also be able to

Re: Problem with visualization of a big network

2006-09-26 Thread Richard Gaskin
KALANGI Vijay BABU wrote: Problem: With such a big network , all nodes get clustered on a card of size 800 * 600 .So is there any way for proper visualization like in Google earth or maps where in we can move the screen and view the network or some other way so that the network can be

Re: Problem with visualization of a big network

2006-09-26 Thread Mark Smith
You might try making a group that is big enough to contain all the buttons, setting it's lock location to true and turning it's scroll bars on - this way, the user can scroll to whatever part of the network he/she needs to see. Best, Mark On 26 Sep 2006, at 13:55, KALANGI Vijay BABU

Re: Problem with visualization of a big network

2006-09-26 Thread André.Bisseret
Hi, You might have a look at the (very useful) site of Éric Chatonet http://www.sosmartsoftware.com/?r=revolution_indexl=en You will find there a tutorial named How to magnify images and only images that might give you ideas about how to be able to explore different parts of a big image.

Re: Problem with visualization of a big network

2006-09-26 Thread Luis
Have you thought of setting a global whereby the size of the objects are stored? This way you can 'magnify' in and out by changing the height and width properties of the objects. Another way is to explore the SVG rendering in Revolution, though I can't find any reference to that in the docs:

Re: Problem with visualization of a big network

2006-09-26 Thread Stephen Barncard
You should be able to set all the objects to a group and attach a scrollbar to that group. Then you can use a script in a field or whatever to 'grab' and change the hscroll and vscroll values. you can choose to show or hide the scrollbars. With such a big network , all nodes get clustered

Re: Problem with visualization of a big network

2006-09-26 Thread Dar Scott
On Sep 26, 2006, at 7:50 AM, Mark Smith wrote: You might try making a group that is big enough to contain all the buttons, setting it's lock location to true and turning it's scroll bars on - this way, the user can scroll to whatever part of the network he/she needs to see. Typically,