AR/stopSound: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(stopSound)
 
Line 2: Line 2:
{{Client function}}
{{Client function}}
Stops the sound playback for specified [[sound]] element. The sound element is also destroyed.
Stops the sound playback for specified [[sound]] element. The sound element is also destroyed.
[[sound]] تستخدم هذه الوضيفة في أيقاف صوت محدد


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">bool stopSound ( element theSound )</syntaxhighlight>  
<syntaxhighlight lang="lua">bool stopSound ( element theSound )</syntaxhighlight>  


===Required Arguments===  
===العناصر المطلوبة===  
*'''theSound:''' The [[sound]] element you want to stop playing.
*'''theSound:''' [[sound]] الصوت المراد ايقافه.


===Returns===
===Returns===
Returns ''true'' if the sound was successfully stopped, ''false'' otherwise.
*'''Returns:''' ''true'' اذا تم ايقاف الصوت بنجاح, ''false'' اذا لم ينجح.
 
===مثال===
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">function startMySound() -- وضيفة
    sound = playSound( "sound.mp3", true ) -- تشغيل صوت
end -- اغلآق الوضيفة
addEventHandler( "onClientResourceStart", getResourceRootElement( getThisResource() ), startMySound ) -- حدث بداية السكربت لتشغيل وضيفة الصوت
function stopMySound() -- وضيفة
    stopSound( sound ) -- ايقاف الصوت
end -- اغلآق الوضيفة
addCommandHandler ( "stopsound", stopMySound ) -- الأمر المستخدم لتنفيذ وضيفة ايقاف الصوت</syntaxhighlight>
</section>


==Example==  
==Example==  

Revision as of 16:24, 8 May 2013

Stops the sound playback for specified sound element. The sound element is also destroyed.

sound تستخدم هذه الوضيفة في أيقاف صوت محدد

Syntax

bool stopSound ( element theSound )

العناصر المطلوبة

  • theSound: sound الصوت المراد ايقافه.

Returns

  • Returns: true اذا تم ايقاف الصوت بنجاح, false اذا لم ينجح.

مثال

Click to collapse [-]
Client
function startMySound() -- وضيفة
    sound = playSound( "sound.mp3", true ) -- تشغيل صوت
end -- اغلآق الوضيفة
addEventHandler( "onClientResourceStart", getResourceRootElement( getThisResource() ), startMySound ) -- حدث بداية السكربت لتشغيل وضيفة الصوت
 
function stopMySound() -- وضيفة
    stopSound( sound ) -- ايقاف الصوت
end -- اغلآق الوضيفة
addCommandHandler ( "stopsound", stopMySound ) -- الأمر المستخدم لتنفيذ وضيفة ايقاف الصوت

Example

Click to collapse [-]
Client
function startMySound()
    sound = playSound( "sound.mp3", true )
end
addEventHandler( "onClientResourceStart", getResourceRootElement( getThisResource() ), startMySound )

function stopMySound()
    stopSound( sound )
end
addCommandHandler ( "stopsound", stopMySound ) --using the command 'stopsound' will stop the sound

أنظر أيضاً