AR/stopSound: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Reverted edits by Bonzo (talk) to last revision by IBlack.NexT)
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
{{Client function}}
{{Client function}}


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


==Syntax==  
==شرح الوظيفة==  
<syntaxhighlight lang="lua">bool stopSound ( element theSound )</syntaxhighlight>  
<syntaxhighlight lang="lua">bool stopSound ( element theSound )</syntaxhighlight>  


===العناصر المطلوبة===  
===العناصر المطلوبة===  
*'''theSound:''' [[sound]] الصوت المراد ايقافه.
*'''theSound:''' [[sound]] أسم الصوت المطلوب إيقافة.


===Returns===
===أستعادة===
*'''Returns:''' ''true'' اذا تم ايقاف الصوت بنجاح, ''false'' اذا لم ينجح.
*'''Returns:''' ''true'' اذا تم ايقاف الصوت بنجاح, ''false'' اذا لم ينجح.


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


==أنظر أيضاً==
==أنظر أيضاً==
{{AR/Audio_functions}}
{{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 ) -- الأمر المستخدم لتنفيذ وظيفة ايقاف الصوت

أنظر أيضاً