Difference between revisions of "LavishGUI:Navigation XML Files"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
== Introduction ==
 
== Introduction ==
 
=== What is a LavishNav XML file? ===
 
=== What is a LavishNav XML file? ===
A LavishNav [http://en.wikipedia.org/wiki/XML XML] file is a LavishNav tree stored in an [http://en.wikipedia.org/wiki/XML XML] file.  Basically, it's a way to store all of your navigation data.
+
A LavishNav [http://en.wikipedia.org/wiki/XML XML] file is a navigation tree stored in an XML file.  Basically, it's a way to store all of your navigation data.
  
LavishNav [http://en.wikipedia.org/wiki/XML XML] files may be generated and loaded using the LavishNav:[[LavishNav:lavishnav (Object Type)|Export()]] and LavishNav:[[LavishNav:lavishnav (Object Type)|Import()]] commands.
+
LavishNav XML files may be exported and imported (saved and loaded) using the lavishnav:[[LavishNav:lavishnav (Object Type)|Export]] and lavishnav:[[LavishNav:lavishnav (Object Type)|Import]] methods.
  
 
== LavishNav XML File Characteristics ==
 
== LavishNav XML File Characteristics ==
LavishNav [http://en.wikipedia.org/wiki/XML XML] files use [http://en.wikipedia.org/wiki/XML XML].
 
  
 
== Examples ==
 
== Examples ==
=== Example 1 - Exporting ===
+
=== Example 1 - Export ===
  ; This will export all of your current LavishNav data to a file called test.xml in the current directory.
+
  ; This will export all of your current navigation data to a file called test.xml in the current directory.
  LavishNav:Export(test.xml)
+
  LavishNav:Export[test.xml]
=== Example 2 - Importing===
+
=== Example 2 - Import ===
  ; This will import test.xml in the current directory into your LavishNav tree.  
+
  ; This will import test.xml in the current directory into your navigation tree.  
  LavishNav:Import(test.xml)
+
  LavishNav:Import[test.xml]
  
 
== See Also ==
 
== See Also ==

Revision as of 15:27, 22 March 2006

Introduction

What is a LavishNav XML file?

A LavishNav XML file is a navigation tree stored in an XML file. Basically, it's a way to store all of your navigation data.

LavishNav XML files may be exported and imported (saved and loaded) using the lavishnav:Export and lavishnav:Import methods.

LavishNav XML File Characteristics

Examples

Example 1 - Export

; This will export all of your current navigation data to a file called test.xml in the current directory.
LavishNav:Export[test.xml]

Example 2 - Import

; This will import test.xml in the current directory into your navigation tree. 
LavishNav:Import[test.xml]

See Also