Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Sugestions On Tree Components



Greetings. Im looking for a tree component (purchase). I have 3 requirements:

1º It has to support multiple levels of branching.
2º It should allow to use different icons.
3º It should work on MX.

I was wondering if I can get suggestions from all you about where to find it.

Thanks ahead.



FlashKit > Flash Help > Flash ActionScript
Posted on: 07-13-2005, 11:22 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Links In Tree Components
I load a tree comconent with data from an XML file. What I dont know is how I should do to get the links in the tree component to work? Can someone help me?

Making Tree Components Right Clickable
I have a tree and want the elements to be right mouse clickable to add or delete a node within the tree.  Any help would be appreciated

Tree Components & Special Characters
I can't get the MMV2 tree component to render single quotes in the nodes. I'm using syntax like this:

<node label='sample'>

If I wanted to throw a single quote in the middle of sample it won't work. (I've tried escaping it with a backslash and don't see an option to render html).

I know I could use double quotes and most likely use single quotes inside of it w/o problems but it doesn't help me realize how to render other special characters like the plus sign, etc.

Furthermore I'm testing a tree component from Beam Jive and they need the single quote syntax for the labels...so I'm trying to stay consistent.

Thanks for the help!

[components V.2]green Square Over A Tree Component
Anybody knows how to avoid the green square over a tree component?
An example of what's happening:
(Note the green square when clicking)
http://www.elektronicabcn.com/_otras/sample.html
I can't find the property which assigns that color.

This is what I've got so far:

ActionScript Code:
projects.setStyle ("backgroundColor", "0x990000");
projects.setStyle ("borderStyle", "none");
projects.setStyle ("fontSize", 10);
projects.setStyle ("fontFamily", "Verdana");
projects.setStyle ("color", "0xFFFFFF");
projects.setStyle ("fontWeight", "bold");
projects.setStyle ("rollOverColor", "0xDDDDDD");
projects.setStyle ("selectionColor", "0xC70101");
projects.setStyle ("textSelectedColor", "0x000000");
projects.setStyle ("selectionDuration", 1500);
projects.vScrollPolicy = "auto";


ThanX!

Any RichTextEditor,DateChoose,Tree Components For Flash CS3?
Ok basically I'm pretty impressed with the many components included in flex. More specifically the Tree, RichTextEditor, DateChooser and DateField components. Now I have tried working with flex a bit, but frankly I like working with flash better.

Is there a way to use these components in flash or are there free components that do just that for Flash CS3 (AS3 based) that I can download somewhere. If so please provide links. Thx

MX 2004 Components: Howto Drag And Drop In Tree ?
Hello,

I want to drag and drop items between two MX-2004 tree-components. But I cant find any method or event that supports this.

Any idea how to drag and drop items between two trees or lists (MX2004-UI-components).

Are there out on the web any other trees available with that functionality ?

Thanks in advance & Ciao for now
Sabrina

MX 2004 Components: Howto Drag And Drop In Tree ?
Hello,

I want to drag and drop items between two MX-2004 tree-components. But I cant find any method or event that supports this.

Any idea how to drag and drop items between two trees or lists (MX2004-UI-components).

Are there out on the web any other trees available with that functionality ?

Thanks in advance & Ciao for now
Sabrina

I Need Some Sugestions
Hi guys, im working on this website where theres afew pages with ALOT of info and pics.
I have it working the way i want it to, but it seems to struggle while it's scrolling. So im hoping for some other suggestions on how to fix it, or if theres a better way to do this.

Basically what i've done is, made a movie clip 500 by 2000, which just changes it's _y position as a scrolling effect.
this seems to struggle only abit on the first scroll, and gets worse after the second n third scroll.

Heres the page im working on.

Thanx in advance.

Any Sugestions?
Any ideas how to create the image transition like like this http://sonar.es/portal/eng/home.cfm

OOP Sugestions
I want to create a application with simulate a phone book ..add person and it's telefone , removes and search .and I want to use OOP programing so I create a class that define the menu of the phone book with button and a data grid on which I store the information.
Here is my class define

import mx.controls.DataGrid
import mx.controls.Button
import mx.controls.TextInput
import mx.controls.Label
class Meniu
{


private var vector_date :Array;
private var adauga :Button;
private var sterge :Button;
private var cauta :Button;
private var iesire :Button;
private var nume_ti :TextInput;
private var prenume_ti :TextInput;
private var numar_ti :TextInput;
private var nume_l :Label;
private var prenume_l :Label;
private var numar_l :Label;
public var agenda ataGrid;



public function Meniu()
{
this.vector_date = new Array({Nume: "Gafitescu" , Prenume : "Daniel" , Numar :"0744320184"} );
initializari_datagrid();
initializari_butoane();
initializari_textinput();
initializari_label();



}
private function initializari_datagrid()
{
this.agenda = DataGrid(_root.attachMovie("DataGrid","agenda",1));
// <initializari pentru DataGrid>
this.agenda._x = 30;
this.agenda._y = 30;
this.agenda.setSize(400,300);
// </initializari pentru DataGrid>


}
private function initializari_butoane()
{
this.adauga = Button (_root.attachMovie("Button","adauga",2));
this.sterge = Button (_root.attachMovie("Button","sterge",3));
this.cauta = Button (_root.attachMovie("Button","cauta",4));
this.iesire = Button (_root.attachMovie("Button","iesire",5));

// <initializari pentru Buttonul adauga>
this.adauga.label ="Adauga";
this.adauga._x = this.agenda._width +60;
this.adauga._y = 50;
// </initializari pentru Buttonul adauga>

// <initializari pentru Buttonul sterge>
this.sterge.label ="Sterge";
this.sterge._x = this.agenda._width +60;
this.sterge._y = 100;
// </initializari pentru Buttonul sterge >

// <initializari pentru Buttonul cauta>
this.cauta.label ="Cauta";
this.cauta._x = this.agenda._width +60;
this.cauta._y = 150;

// </initializari pentru Buttonul cauta>


// <initializari pentru Buttonul iesire>
this.iesire.label ="Iesire";
this.iesire._x = this.agenda._width +60;
this.iesire._y = 200;

// </initializari pentru Buttonul iesire>
}
private function initializari_textinput()
{
this.nume_ti = TextInput(_root.attachMovie("TextInput","nume_ti",6));
this.prenume_ti= TextInput(_root.attachMovie("TextInput","prenume_ti",7));
this.numar_ti = TextInput(_root.attachMovie("TextInput","numar_ti",8));

// <initializari pentru TextIput nume_ti>
trace(this.agenda._height);
trace(this.agenda._width);

this.nume_ti._x = 30;
this.nume_ti._y = 370;
this.nume_ti.restrict = "A-Z a-z";
this.nume_ti.maxChars = 15;


// </initializari pentru TextIput nume_ti>

// <initializari pentru TextIput prenume_ti>
this.prenume_ti._x = 180;
this.prenume_ti._y = 370;
this.prenume_ti.restrict = "A-Z a-z";
this.prenume_ti.maxChars = 10;
// </initializari pentru TextIput prenume_ti>

// <initializari pentru TextIput numar_ti>
this.numar_ti._x = 330;
this.numar_ti._y = 370;
this.numar_ti.restrict = "0-9";
this.numar_ti.maxChars = 10;
// </initializari pentru TextIput namar_ti>
}
private function initializari_label()
{
this.nume_l = Label(_root.attachMovie("Label","nume_l",9));
this.prenume_l = Label(_root.attachMovie("Label","prenume_l",10));
this.numar_l = Label(_root.attachMovie("Label","numar_l",11));
// <initializari pentru Label nume_l>
this.nume_l.text = "Nume";
this.nume_l._x = 30;
this.nume_l._y = 350;

// </initializari pentru Label nume_l>

// <initializari pentru Label prenume_l>
this.prenume_l.text = "Prenume";
this.prenume_l._x = 180;
this.prenume_l._y = 350;
// </initializari pentru Label prenume_l>

// <initializari pentru Label numar_l>
this.numar_l.text = "Numar";
this.numar_l._x = 330;
this.numar_l._y = 350;
// </initializari pentru Label numar_l>
}

private function adaugaInAgenda(element:Object)
{
this.vector_date.push(element);
this.agenda.dataProvider=this.vector_date;

}


}


I want to implement a method to this funciton in which when I press the adauga Button it take s the information from the text input and store it to the data grid.


How do I wrote the method..

on non oop programing I do this

adauga.onRelease = function()
{
take the info
put the info
}

But with oop?

it's about lsitener and event listener...and how do I wrote them in OOP programing.

Thanks

Flash CV Template Sugestions
Hi Guys,

I'm currently wanting to put my CV (resume) and product design portfolio online for prospective employers to look at and contact me.

Although I know the basics of flash, the scripting is a little over my head. Therefore I was hoping to find a nice template to modify, and wondered if anyone could point me in the right direction of some good ones. I’m quite specific about the look I’m trying to achieve though, and want it to be captivating but still very clean and simple design.

I don’t mind paying a little, but the fact I’m looking for a job means I’m not exactly minted?

Any recommendations would be cool?

Cheers
Lozza.

I Want To Make A Soccer(football) Animation I Want Some Sugestions
Hello!
I want to make an animation in flash with soccer ball, players i want some suggestions and all that can help me.
Thank you !
Best for all of you

Accordion/Tree Navigation ... Tree DataProvider Issues
Hello all!

I've done a navigation scheme that uses both the accordion and tree components. The data being gathered is from an XML file. The only problem i'm having is getting the tree components to display the data that they're being provided with. I did traces and I found out that they are getting the data...can anyone take a look at the FLA and see what's going wrong?

http://www.jake3p0.com/downloads/accordionTreeNav.zip

I'm using Flash 8

How Do I Make A Tree Menu? Like The Explorer Tree?
I am currently writing a tree menu in flash that will look nearly identically to the std tree widget in windows (like explorer).

my problem is.. how do i link an object to an mc?

ie i have made a node class with member variables and methods (an array of child nodes and the LoadChildren method) and i have an mc that i want to be duplicated for each node (a little folder icon thingy).

when a node loads its children via xml it will get the data then create an array of child node objects:

for each child in xml
{
var node = new node("name from xml", "data from xml");

children.push(node);
}

so at the end of this i have a nice array of child nodes.

I dont know if i put the code that defines the node class into the folder thingy mc and then duplicate that or what..

Has anyone seen an example of something like this anywhere.. i saw a cool tree ages ago but i cant find it now..

I know its a bad explanation but my brain hurts at the moment

thanks for any help =]

Need To Find Tree Graph Or AVL Tree
Does anyone know where I can find a tree graph, also called an avl graph, which I can modify? I am creating a flash console to manage computer nodes on our system and need a dynamic tree graph to represent where the nodes are located and be able to represent child/parent relationships. It would greatly help if I found an example or something to build off of.

Thanks!

Expend All Folders In Tree (tree Component (Flash MX 2004/Flash 8))
Hello all,

I have a tree component witch reads an XML file. Now On my tree I got folders and subfolder. I want by a press of a button, to be able to expend all the folders of my tree. How do you do this?

Tree format: (view attachment)

Tree XML file:

PHP Code:



 <node label="Project 1">
     <node data="data1" label="Item1" />
     <node data="data2" label="Item2" />
     <node data="folder1" label="Folder">
              <node data="data3" label="Item 1 in folder" />
              <node data="data4" label="Item 2 in folder" />
              <node data="folder2" label="Folder in folder">
                       <node data="data5" label="Hello!" />
              </node>
     </node>
</node>





Any ideas, paths? Please!

Thank you A LOT in advance!

Use FCS Components In Flash MX 2004. Components Already Installed. Help
Hi,

I have Flash communication server 1.5 insatlled and Flash MX 2004 too. When I create new fla file and want to use Flash components, I don't find them to use. I dont see any panel etc to use them. Some one tell me how to list the components to add them in my Flash fla file please

Thanks

Removing Components From The Components Panel
This seems like a stupid question, but I can't seem to get my old components out of my Components panel!

I put some custom made components, just for a try, into the folder

C:Program FilesMacromediaFlash MX 2004enFirst RunComponents,

found them in the Components Panel, but wanted to get rid of them immediately. Deleted the components from the folder, but they don't seem to disappear from the panel! I have no idea where they come from, since I should not have them even on my hard disk anymore!

Cheers!

Flash Components Vs. Flex Components
I know almost nothing about Flex. Just wanted to establish that at the outset.

A client sent me an API component - an swc file - to use in a project I'm doing. I installed it in my Flash folders, but it didn't show up in the Components panel when I launched Flash. When I queried the client about it, he said that it was actually a Flex component.

My question is, what's the difference between a Component written for Flex and one written for Flash ? Can a Flex component be adapted for use in Flash ? In that what I received is a .swc, I'm assuming it has to have been written in ActionScript.

Any help would be hugely appreciated. Many thanks.

CS3 Missing Components Or How To Use Flex 2 Components In CS3
Does anyone have a good resource for how to use Flex2 components in CS3?
I found an install that said it would install Flex2 components in CS3, but all it added waas the UIMovieClip for packaging Flash MC in swc's for Flex.

Right now I am specifically trying to solve the missing dateField component in CS3.

But I would like to find out if anyone has found a good resource for alternatives to all missing components in CS3.
I'm hoping the answer is not to build them from scratch.

Thanks,

Hunter

Components Inside Components (Flash 8)
Hi,

I have an Accordion component which needs to contain a number of small forms, each of which is built as a MovieClip containing TextInput, Button, ComboBox, etc.

So, I build my little forms in Flash, make them into MovieClips, give them a linkage identifier and assign them the AS2 class "mx.core.View", as the documentation says.

Then I use ActionScript to attach these to my Accordion control, using my_accordion.createChild(). OK, fine. Works nicely.

The problem is that in the next few lines of code I also want to be able to populate the TextInput and ComboBox components which reside inside my accordion. I can't do it. Trying to do so fails silently. Tracing out the path to the Components shows that they are "there", but if i put some content into, say, one of the TextInputs up-front (i.e. in the Properties panel inside Flash) and then try to trace... my_acc.my_form.my_textInput.text... i get undefined.

So, it looks like the components inside the form inside the Accordion aren't yet "initialised" when I am trying to get/set their values. I've seen similar behaviour before, but it's not clear in the documentation how to get around it.

Anyone help? What is the correct way to use components inside components like this? I don't want to have to call a second function or put any code on the timeline or anything like that!

Many thanks,

Andy

Components Inside Components (Flash 8)
Hi,

I have an Accordion component which needs to contain a number of small forms, each of which is built as a MovieClip containing TextInput, Button, ComboBox, etc.

So, I build my little forms in Flash, make them into MovieClips, give them a linkage identifier and assign them the AS2 class "mx.core.View", as the documentation says.

Then I use ActionScript to attach these to my Accordion control, using my_accordion.createChild(). OK, fine. Works nicely.

The problem is that in the next few lines of code I also want to be able to populate the TextInput and ComboBox components which reside inside my accordion. I can't do it. Trying to do so fails silently. Tracing out the path to the Components shows that they are "there", but if i put some content into, say, one of the TextInputs up-front (i.e. in the Properties panel inside Flash) and then try to trace... my_acc.my_form.my_textInput.text... i get undefined.

So, it looks like the components inside the form inside the Accordion aren't yet "initialised" when I am trying to get/set their values. I've seen similar behaviour before, but it's not clear in the documentation how to get around it.

Anyone help? What is the correct way to use components inside components like this? I don't want to have to call a second function or put any code on the timeline or anything like that!

Many thanks,

Andy

Flash Components Vs. Flex Components
I know almost nothing about Flex. Just wanted to establish that at the outset.

A client sent me an API component - an swc file - to use in a project I'm doing. I installed it in my Flash folders, but it didn't show up in the Components panel when I launched Flash. When I queried the client about it, he said that it was actually a Flex component.

My question is, what's the difference between a Component written for Flex and one written for Flash ? Can a Flex component be adapted for use in Flash ? In that what I received is a .swc, I'm assuming it has to have been written in ActionScript.

Any help would be hugely appreciated. Many thanks.

Communication Components Do Not Appear In Components Panel
Hi! I've installed Flash MX and Flash Media Server. I would like to use the communication components in flash MX however, I can not see it in my communication components panel in flash MX. I've already added the communication components.fla to my ---Flash MX/First Run/Components directory under the
Macromedia Flash MX installation directory and updated the ASC files
in my /scriptlib/ directory.. But after adding this, only four components (audio conference, av presence, chat and connection light) appeared in my component panel. I need to use other components but its not available. What should I do? Any help will be appreciated.Textcommunication components

Add On To Using New Built Components Or For Building Components?
My version of Flash won't even let me use components created by other people... Is there a plug-in or an add-on that I have to get to use components that didn't come with Flash? Is there something else I need to get to build my own components? If so.. Where can I get it? Is there a homepage I may purshase it from? Where? How much?

Can Components Be Put Inside Components?
Does anyone know if components can exist and function properly within other components??

For example, I have a large form with radio buttons and checkboxes that is in a movie. This movie then shows up in a scrollpane and doesn't function at all.

Just curious if that is a limitation.

Thanks.

MX Components V MX2004 Components
Appreciate any help to this problem.

I'm working on a project using MX2004 and my business partner is working on the same project using MX only. I design and he codes. He has created a form in MX using a few components such as the Combo Box. However, when I recieve it, although it works fine I cant seem to swap the components to MX2004 - when I try I get a blank box/boxes!

Is this a known issue? He can't afford to upgrade to MX2004 at this stage or else we probably wouldn't have this problem!

Thanks, Steve

FMX Components Vs. FMX2K4 Components
Hi,

I would like to export movie clips as components and let other developers use those to create applications.

I have very little experience with components; I did use FMX components in the past.

I would like to let users change the components features, for instance, totally redo the animation of a button's components rollover effect.

1.Can this be done with FMX2k4 components (I think not).
2.Can this be done with FMX components?
3.Can I export FMX components with FMX2k4 IDE?
4.What effect will components have on file size and performance?

Thanks in advance,
DMZ

UI Components V/s Flash MX UI Components
I am having a problem with traceing a combobox using UI Components. I am tracing the value of the selected combobox using a combobox with the UI Components. I prefer the UI Components because they have the glow, rounded corners and are more attractive. the code works fine with the Flash MX UI Components. However, when I use the UI components it doesnt. The combobox populates however I can not trace. Does anyone have any suggestions? I use the following code to trace the value of the combobox:

myCombo.setChangeHandler("myFoo");
myFoo = function(myCombo){
trace(myCombo.getValue());
I also used this code:

myCombo.setChangeHandler("myHandler");

function myHandler(obj)
{
trace (obj.getValue());
trace (obj.getSelectedItem().label);
}

The code for the entire section is:

function getStateArray(){
myStates ="AL,AK,AZ,AR,CA,CO,CT,DE,FL,GA,HI,ID,IL,IN,IA,KS,KY,LA,MA,MD,ME,MI,MN,MO,MS,M T,NC,NE,NV,NH,NJ,NM,NY,NC,ND,OH,OK,OR,PA,RI,SC,SD,TN,TX,UT,VT,VA,WA,WV,WI,WY";

myStatesArray = new Array();
myStatesArray = myStates.split(",");
return myStatesArray;
}
myArray = getStateArray();
myArray.unshift("--");

myCombo.setDataProvider(myArray);
myCombo.setChangeHandler("myHandler");

function myHandler(obj)
{
trace (obj.getValue());
trace (obj.getSelectedItem().label);
}
Please help. Thanks in advance for any help.
Justice

Components Inside Components
I have built a custom component which I call 'VComboBox'. This component is composed of a single label and an instance of Macromedia's builtin ComboBox 'FComboBoxSymbol'. I named the instance of the FComboBoxSymbol to 'comboObject'.

Now when I drag a copy of my component onto the stage and in ActionScript I use the following code:

_root.myVComboInstance.comboObject.addItem("red", 0);

It works and adds the item into the combo box inside my custom component. However when I dynamically create an instance of my VComboBox it does not work at all, like below:

_root.attachMovie("VComboBox", myNewCombo, depth++);
_root.myNewCombo.comboObject.addItem("red", 0);

The combo appears but however no item is added. And when I click on the arrow for the combo to drop-down nothing happens. I am trying to find out what I am doing wrong? Is there a way to make this work? Also why is my custom component acting completely different based on whether it was created at design-time, or whether it was created dynamically at run-time? Any assistance would be greatly appreciated.

Hor. Xml Tree
some of you may know an xml tree

i need a hor. solutions to show the hierachie of a company.

i dont know how to do this. Is there anywhere a .fla or tutorial ?

thanx for your help

V2 Tree Help
Salutations...

I need great help with using the new V2 tree (flash MX 2004 Pro). I have code that uses the V1 tree and it works perfectly! The problem that I have is that I need the tree to scoll both verticaly and horizontaly! I'm not able to activate an horizontal scrollbar!

So my first question is :: Is there a way to scoll horizontaly in a V1 tree and if not .... I must use the V2 tree.... it seems to come equipt with one.

Question 2 : I cannot use my V1 code to load XML file into a V2 tree! There is always only undefine nodes! Is there samples that I can look at?

Thanks a million times for the help!

Tree
As I can select in "tree" the first subnode? I have the following code.


Code:
miArbol.getTreeNodeAt(0).addTreeNodeAt(0,miArbol.selectedNode.attributes.label) *Add Node **
miArbol.selectedNode=miArbol.getTreeNodeAt(0) *Work... Ok
miArbol.setIsOpen(miArbol.selectedNode, true, true);
miArbol.selectedNode=getTreeNodeAt(1) *No work*
You pardon, but use a translator. Greetings
Gracias...
Saludos

Tree Xml
I want to basically copy an xml object I have created, take the children from a specified node and make a new xml object from them and put this new xml into the tree component.

Can you see what is wrong with this?


ActionScript Code:
myXML = new XML();myXML.ignoreWhite = true;myXML.load("tree_source.xml");myXML.onLoad = function(){        var newXML = myXML.firstChild.firstChild.childNodes;        myTree.dataProvider = newXML;}

Xml Tree
Hi,

does anyone know of any alternatives to the tree componant?

cheers.
G

Xml Tree
Hi,

i am try to learn from this:

http://www.kirupa.com/web/xml/exampl...4ASclasses.htm

does anyone know if its possible to start with all the folders closed?

cheers.
G

Tree In AS3
I noticed there was no tree component in AS3. I plan on making a tree style menu with sub menus and stuff so should I just do this project in AS2 or is their something I can make similar to a tree component in AS3?

Its Me In The Tree .. ^^
hello, i got a little problem with my menu.
i have a scripted cascading menu in flashMX(quite nice actually) ...
but i want that if any linkbutton is pressed to fase out (so the site is less laggy, lotta animation).
here is the problem :
the mainlinks are MCs with buttons inside..
How can i tell a button inside an MC to "goto" somewhere in the mainScene ?
something with lvls or so ?
thx for any help . . .=)

Tree In AS3
I noticed there was no tree component in AS3. I plan on making a tree style menu with sub menus and stuff so should I just do this project in AS2 or is their something I can make similar to a tree component in AS3?

Tree Help...
I'm trying to do this:

var atts = theTree.selectedItem.attributes.*

So that the value of the variable 'atts' is equal to all the attributes of that tree item which is actually an xml node.

I need to do it this way because all the nodes have different attributes.

But it doesn't work.

Anyone know how to accomplish this the right way?

XML And Tree
I used the tutorial to create the tree component. Everything works great. I modified it so that the actionscript (instead of getting a URL) gets a FlashPaper document to open in the actual movie. What I'm looking to do is add to the functionality of the tree component.

Is there a way I can load more attributes from my XML file, other than the URL and tree description? I'd like how I've modified the tree component to load an external FlashPaper file, but i would like for it to not only load the file to view, but for that click to switch the URL on a button that is clickable to download the original .doc file. Is this possible?

So, essentially, i'd be loading two different URLs from my XML into the Flash document. One URL opens an external swf with FlashPaper (which I've already done) and the other one would attach to a button, which the user can click to download the original .doc file. I'm not the best with actionscript, but i'm starting to learn the ropes here. Thanks for any help!

Xml Tree's How To Do Something Like This
How would you approach creating smoething like this

http://www.flashloaded.com/flashcomponents/advancedtree/example4.html

Tree Menu?
how do I creat the left menu like on http://www.spoono.com ?
I found this tutorial on www.virtual-fx.net but it is not quite the same.
how do I adjust the tutorial so it will be the same as spoono's one?
I mean the sliding effect and when lets say you push the tutorial button and then you push the desktop button, first the tutorial button comes up and only then the desktop button comes down.
hope you got it

Folding Tree (Please Help)
Hi everyone,

what is the best way to create an expandable folding menu tree in flash?
Like the kind where a plus sign is to expan and a - sign retracts the menu.

I created the images, and I have some actionscripting knowledge.

Would I have to create a movie clip?

- Leland

Tree Menu
hi there,
can someone please tell me how i can change the labels (eg. object 1) of the buttons in the following .fla ...

http://www.flashkit.com/movies/Inter...71/index.shtml

thank you so much in advance

Dynamic Tree
i have used flash for a while but have never really gotten into actionscripting... so i know very little.
im trying to make a dynamic tree that i saw somewhere once where it creates itself dynamically, it "grows". if someone has an idea or some script that will help me or a tutorial or something i would really appreciate it... im kinda at a hump in learning actionscripting and even if you have a link to a site or tutorial that can help me that would b cool, tnx.
-notafish

Tree Buttons
Hi there

Is there some one who can teach me (again) the tree button.
The (again) is because I've have a stroke and my brain is out there some where. Thanks

How Do I Know The Nodename Of A Tree
How do I determine the nodename of a node of a tree?

Example:

RootNode ----- Nodename = "Rootnode"
node1 ----- Nodename = "node1"

Thanks,
Raymond

Outline Tree
How do I change the look of the Outline Tree?
Right now all I see is something called,"Shape" I need to see where the text is so I can change it. Help....

Copyright © 2005-08 www.BigResource.com, All rights reserved