home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mobiclic 46
/
Mobiclic46.iso
/
mac
/
DATA
/
somR.cst
/
00013_Script_BOUTON_TEXTES_COPIES
< prev
next >
Wrap
Text File
|
2002-08-21
|
1KB
|
53 lines
-- Bouton Cyberbib
property pisteUtil, acteur
global choix,chemin, cheminTextes
on mouseUp me
if the frameLabel = "B" then
cursor -1
coupeSon 3
s = the currentSpriteNum
choix = field("sonsAssocies").Line[6].word[3]
put choix
go to "clicRubrique"
-- affichage de l'animation saut associΘe
case acteur of
"Ratonic" : -- saut Ratonic
masquerPistes 39,42,43
afficherPistes 40,41
"Ratibelle" : -- saut Ratibelle
masquerPistes 40,41
afficherPistes 39,42
end case
end if
end
on mouseEnter me
if the frameLabel = "B" then
cursor 280
s = the currentSpriteNum
-- gestion du commentaire associΘ
son = field("sonsAssocies").Line[s-23].word[2]
acteur = field("sonsAssocies").Line[s-23].word[1]
joueson son
-- affichage de la boucle parole associΘe
case acteur of
"Ratonic" : -- boucle Ratonic
masquerPistes 39,42
afficherPistes 40,41
"Ratibelle" : -- boucle Ratibelle
masquerPistes 40,41
afficherPistes 39,42
end case
end if
end
--------------
on mouseLeave me
cursor -1
if the frameLabel = "B" then
coupeSon 3
masquerPistes 41,42
afficherPistes 39,40
end if
end