Graphics::callScaleformMovieFunctionStringParams: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
 
Line 1: Line 1:
Calls the Scaleform function and passes the parameters as strings.<br><br>The number of parameters passed to the function varies, so the end of the parameter list is represented by 0 (NULL).
Calls the Scaleform function and passes the parameters as strings.<br><br>The number of parameters passed to the function varies, so the end of the parameter list is represented by 0 (NULL).
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">graphics.callScaleformMovieFunctionStringParams(scaleform, functionName, param1, param2, param3, param4, param5);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.graphics.callScaleformMovieFunctionStringParams(scaleform, functionName, param1, param2, param3, param4, param5);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''scaleform:''' int
*'''scaleform:''' int
Line 14: Line 14:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Graphics_function_c}}
{{Graphics_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 21:13, 6 May 2017

Calls the Scaleform function and passes the parameters as strings.

The number of parameters passed to the function varies, so the end of the parameter list is represented by 0 (NULL).

Syntax

mp.game.graphics.callScaleformMovieFunctionStringParams(scaleform, functionName, param1, param2, param3, param4, param5);

Required Arguments

  • scaleform: int
  • functionName: String
  • param1: String
  • param2: String
  • param3: String
  • param4: String
  • param5: String

Return value

  • Undefined

Example

// todo

See also