Graphics::requestScaleformMovie3: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
 
Line 1: Line 1:
Similar to REQUEST_SCALEFORM_MOVIE, but seems to be some kind of 'interactive' scaleform movie?<br><br>These seem to be the only scaleforms ever requested by this native:<br>'breaking_news'<br>'desktop_pc'<br>'ECG_MONITOR'<br>'Hacking_PC'<br>'TEETH_PULLING'<br><br>Note: Unless this hash is out-of-order, this native is next-gen only.<br>
Similar to REQUEST_SCALEFORM_MOVIE, but seems to be some kind of 'interactive' scaleform movie?<br><br>These seem to be the only scaleforms ever requested by this native:<br>'breaking_news'<br>'desktop_pc'<br>'ECG_MONITOR'<br>'Hacking_PC'<br>'TEETH_PULLING'<br><br>Note: Unless this hash is out-of-order, this native is next-gen only.<br>
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">graphics.requestScaleformMovie3(scaleformName);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.graphics.requestScaleformMovie3(scaleformName);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''scaleformName:''' String
*'''scaleformName:''' String
Line 8: Line 8:
==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:27, 6 May 2017

Similar to REQUEST_SCALEFORM_MOVIE, but seems to be some kind of 'interactive' scaleform movie?

These seem to be the only scaleforms ever requested by this native:
'breaking_news'
'desktop_pc'
'ECG_MONITOR'
'Hacking_PC'
'TEETH_PULLING'

Note: Unless this hash is out-of-order, this native is next-gen only.

Syntax

mp.game.graphics.requestScaleformMovie3(scaleformName);

Required Arguments

  • scaleformName: String

Return value

  • int

Example

// todo

See also