AR/stopSound: Difference between revisions
Jump to navigation
Jump to search
(stopSound) |
m (Reverted edits by Bonzo (talk) to last revision by IBlack.NexT) |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{Client function}} | ||
== | [[sound]] تستخدم هذه الوظيفة في أيقاف صوت محدد | ||
==شرح الوظيفة== | |||
<syntaxhighlight lang="lua">bool stopSound ( element theSound )</syntaxhighlight> | <syntaxhighlight lang="lua">bool stopSound ( element theSound )</syntaxhighlight> | ||
=== | ===العناصر المطلوبة=== | ||
*'''theSound:''' | *'''theSound:''' [[sound]] أسم الصوت المطلوب إيقافة. | ||
=== | ===أستعادة=== | ||
Returns ''true'' | *'''Returns:''' ''true'' اذا تم ايقاف الصوت بنجاح, ''false'' اذا لم ينجح. | ||
== | ===مثال=== | ||
<section name="Client" class="client" show="true"> | <section name="Client" class="client" show="true"> | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua">function startMySound() -- الوظيفة | ||
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 [-]
Clientfunction startMySound() -- الوظيفة sound = playSound( "sound.mp3", true ) -- بدأ تشغيل الصوت end -- إغلاق الوظيفة addEventHandler( "onClientResourceStart", getResourceRootElement( getThisResource() ), startMySound ) -- حدث بداية السكربت لتشغيل وضيفة الصوت function stopMySound() -- الوظيفة stopSound( sound ) -- إيقاف الصوت end -- إغلاق الوظيفة addCommandHandler ( "stopsound", stopMySound ) -- الأمر المستخدم لتنفيذ وظيفة ايقاف الصوت
أنظر أيضاً
- getSoundBufferLength
- getSoundEffects
- getSoundFFTData
- getSoundLength
- getSoundLevelData
- getSoundMaxDistance