home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mobiclic 41
/
MOBICLIC41.ISO
/
pc
/
Data
/
LANGUES
/
doggy2002.cst
/
00002_Script_2
< prev
next >
Wrap
Text File
|
2002-01-24
|
630b
|
27 lines
global nivSon, dernierSon
on joueSonMP3 nom, n
if the paramCount = 1 then
n = 3
end if
if voidP(nivSon)=1 then
nivSon=[255,255,255]
end if
-- ajout Θventuel de "sons:"
if char 1 to 9 of nom <> "sons" then
if offset(":", nom) = 0 then
nom = "sons:" & nom
end if
end if
dernierSon = nom
--
put the pathName & nomDos(nom) & ".swa" into nom
put " Son jouΘ : " & dernierSon
sound playFile n, nom
-- rΘglage du niveau des autres canaux
repeat with i=1 to 3
if i<>n and nivSon[i]>102 then
sound(i).volume = 110
end if
end repeat
end joueSonMP3