Using VB Macro, how to add same level navnode?

P

Phil P

I am automating the my web navigation structure structure
using a VB Macro. This works great when the navnodes are
added as children of the index.html (home) navnode. This
is done with an add statement something like the following:

Set myNavNode = myNavRootNode.Children.Add
("www.xyz.com/abc.htm", "ABC", fpStructRightmostChild)

How does one add a node that is on the same navigation
level (top) as the index.html (home) navnode?
 
Top