Salut ? tous
Je suis actuellement entrain de r?aliser un Catalogue sur CD. La navigation se
fait par un moteur de recherche et par une liste d?roulante qui affiche les
type de produits. Par la selection d'une ligne, appara?t soit la liste de tous
les articles li?s ? ce type ou un sous-type en liste deroulante.
Mon probl?me vien justement de la liste d?roulante!! Je ne comprend rien du
tout ? son int?gration. J'ai bien lier le comprtement ? mon champs, et apr?s
???:(
Dans les explications de Director, je doit pouvoir selectionner un de mes
lignes. je n'y parviens pas m?me lorsqu'il n'y a que la liste ( sans liens)
quelqu'un peut m'expliquer ce comprtement parceque l? j'ai bient?t plus de
cheveux!!!!
Cette action est irreversible, confirmez la suppression du commentaire ?
Signaler le commentaire
Veuillez sélectionner un problème
Nudité
Violence
Harcèlement
Fraude
Vente illégale
Discours haineux
Terrorisme
Autre
Vincent BLOCQUAUX
Voici un script de comportement que tu peux affecter à une liste. Tu dois donner à champ le nom de l'acteur (ici "liste réponses") quand tu cliques sur une ligne, le script "traitement" est appelé.
Vincent
global ligneClic, derniereLigne, champ
on mouseEnter me champ = "liste réponses" cursor(280) end
on mouseLeave me if ligneClic > 0 then set the forecolor of field champ to 255 set the forecolor of line ligneClic of field champ to 35 else set the forecolor of field champ to 255 end if
cursor(-1) end
on mouseWithin me if the mouseLine<> derniereLigne then set the forecolor of field champ to 255 set the forecolor of line the mouseLine of field champ to 35 derniereLigne = the mouseLine end if end
on mouseUp me traitement end
Voici un script de comportement que tu peux affecter à une liste.
Tu dois donner à champ le nom de l'acteur (ici "liste réponses")
quand tu cliques sur une ligne, le script "traitement" est appelé.
Vincent
global ligneClic, derniereLigne, champ
on mouseEnter me
champ = "liste réponses"
cursor(280)
end
on mouseLeave me
if ligneClic > 0 then
set the forecolor of field champ to 255
set the forecolor of line ligneClic of field champ to 35
else
set the forecolor of field champ to 255
end if
cursor(-1)
end
on mouseWithin me
if the mouseLine<> derniereLigne then
set the forecolor of field champ to 255
set the forecolor of line the mouseLine of field champ to 35
derniereLigne = the mouseLine
end if
end
Voici un script de comportement que tu peux affecter à une liste. Tu dois donner à champ le nom de l'acteur (ici "liste réponses") quand tu cliques sur une ligne, le script "traitement" est appelé.
Vincent
global ligneClic, derniereLigne, champ
on mouseEnter me champ = "liste réponses" cursor(280) end
on mouseLeave me if ligneClic > 0 then set the forecolor of field champ to 255 set the forecolor of line ligneClic of field champ to 35 else set the forecolor of field champ to 255 end if
cursor(-1) end
on mouseWithin me if the mouseLine<> derniereLigne then set the forecolor of field champ to 255 set the forecolor of line the mouseLine of field champ to 35 derniereLigne = the mouseLine end if end