AR/stopSound: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Blanked the page)
m (Reverted edits by Bonzo (talk) to last revision by IBlack.NexT)
 
Line 1: Line 1:
__NOTOC__
{{Client function}}


[[sound]] تستخدم هذه الوظيفة في أيقاف صوت محدد
==شرح الوظيفة==
<syntaxhighlight lang="lua">bool stopSound ( element theSound )</syntaxhighlight>
===العناصر المطلوبة===
*'''theSound:''' [[sound]] أسم الصوت المطلوب إيقافة.
===أستعادة===
*'''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>
==أنظر أيضاً==
{{AR/Audio_functions}}

Latest revision as of 03:06, 1 April 2016

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

شرح الوظيفة

bool stopSound ( element theSound )

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

  • theSound: sound أسم الصوت المطلوب إيقافة.

أستعادة

  • 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 ) -- الأمر المستخدم لتنفيذ وظيفة ايقاف الصوت

أنظر أيضاً