revXMLNextSibling

Typefunction
DictionaryLCS
LibraryLiveCode Script
Syntax
revXMLNextSibling(<treeID>, <siblingNode>, [incText] )
Associationsxml library
Summary

Returns the path to a child node's next sibling node.

Introduced2.0
OSmac, windows, linux, ios, android
Platformsdesktop, server, mobile
Parameters
NameTypeDescription
treeID

The number returned by the revXMLCreateTree or revXMLCreateTreeFromFile function when you created the XML tree.

siblingNode

The path to the node where you want to start.

Example
revXMLNextSibling(3,"/City/Publisher")
put revXMLNextSibling(the currTree of me,thisNode) into nextNode
Values
NameTypeDescription
return

The revXMLNextSibling function returns a string consisting of the path to the next node with the same parent as the siblingNode. If there is no next sibling node, the revXMLNextSibling function returns empty.

RelatedProperty: nodes
Control Structure: function
Function: revXMLRootNode, revXMLFirstChild, revXMLCreateTree, revXMLCreateTreeFromFile
Library: XML library
Glossary: LiveCode custom library, sibling node, Standalone Application Settings, standalone application, return, child node
Securitydisk
Description

Use the revXMLNextSibling function to go forward through the list of nodes on the current level.

If the revXMLNextSibling function encounters an error, it returns an error message starting with "xmlerr".

Note: If the incText form is specified and is true the function will return text nodes in processing. Text nodes can be accessed using the revXMLNodeContents function with the extended path format where text only nodes are numerically indexed eg summary/command/[1] is the first text node of the summary/command node.

Important: The incText form is experimental.

Important: The revXMLNextSibling function is part of the XML library. To ensure that the function works in a standalone application, you must include this custom library when you create your standalone. In the Inclusions pane of the Standalone Application Settings window, make sure the "XML" checkbox is checked.

Tagstext processing