GetElementByID: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 18: Line 18:
This example does...
This example does...
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
-- Assuming an element with the id 'offense exists' i.e. <team1 id="offense">
blabhalbalhb --abababa
offenseElement = getElementByID ( "offense" )
--This line does this...
mooo
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{FunctionArea_Functions}}
{{FunctionArea_Functions}}

Revision as of 08:09, 26 May 2006


This fake function is for use with blah & blah and does blahblahblabhalbhl

Syntax

element getElementByID ( string id )  

Required Arguments

  • id: The ID of the element as it appears in the xml file.

Returns

Returns the element with the given ID, or false if no such element exists.

Example

This example does...

-- Assuming an element with the id 'offense exists' i.e. <team1 id="offense">
offenseElement = getElementByID ( "offense" )

See Also

Template:FunctionArea Functions