setElementCallPropagationEnabled | Multi Theft Auto: Wiki Skip to content

setElementCallPropagationEnabled

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function enables/disables call propagation on a certain element. Look at the example for a practical application.

Syntax

setElementCallPropagationEnabled ( )

Code Examples

server
local parentImage = guiCreateStaticImage(0, 0, 64, 64, "img1.png", false)
local childImage = guiCreateStaticImage(0, 0, 16, 16, "img2.png", false, parentImage)
-- Disable call propagation
setElementCallPropagationEnabled(parentImage, false)
-- Load another image
guiStaticImageLoadImage(parentImage, "img3.png")
--[[
Normally (enabled call propagation) both parentImage and childImage would contain "img3.png" now.
Due to disabled call propagation only parentImage will contain "img3.png" now (the call was not propagated down the tree)
]]

See Also

Element Functions