Here is my problem... I have a movie that is called "frame". Within frame
there are nav buttons and a tree component that uses an XML file to determine
titles and load other movies. The way that all of this works is... when a user
opens a group of movies, each movie loads the movie titled "frame" as I
explained above. The movie titled "frame" has a tree in it that uses an
external XML file. When I select a leaf node on the tree, the onChange Event
checks to see if it is a branch or leaf and if it is a leaf it loads a new root
movie using a path attached to that node by a "moviepath" attribute. This root
movie in turns loads a new "frame" movie, that loads the tree component again.
Here is the problem, when I select the leaf node and load the two movies, the
tree breaks. The tree does have the root nodes present, but no child nodes.
When you select a root node and try to open the folder(or node), not only does
it not have child nodes, it also freezes. You cannot select any other root
nodes to open.
The odd thing about this is that I also have a continue button, that loads the
"frame" movie and a new root movie using the same procedure, and the tree works
fine. So... when I load a movie by selecting a node on the tree component the
loaded movies break the tree component, when I load a movie selecting a button
outside the tree component, the tree works well. What am I missing? Can
anyone give me some direction?