probleme menu dans flash via xml
Bonjour, à la communauté bravo pour vos explications.
Voici mon problème je suis en train de construire un site full flash j'ai integré un menu deroulant verticale via un fichier xml, mon problème est que mon menu déroulant déroule derriere une image donc pas visible, alors ce n'est pas un problème de opaque ou transparent puisque mon menu est intégré dans mon flash d'origine voici le site en question ce sera plus parlant.
Merci http://www.laurenadesigns.com
ps : voici aussi mon code xml
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
| <dropdown>
<settings
auto_center_x = "yes"
submenuScroll = "yes"
closeSubmenuWhenClick = "no"
>
</settings>
<menu cap="Accueil"
menu_load_movie="index2.html"
menu_load_movie_mctarget="_root.myMC"
>
</menu>
<menu cap="Housses chaises">
<submenu cap="Ceinturages"
menu_goto_frame = "frame-label/1"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Noeux"
menu_goto_frame = "frame-label/2"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Types de Chaises"
menu_goto_frame = "frame-label/3"
menu_goto_mctarget = "_root">
</submenu>
</menu>
<menu cap="Deco themes">
<submenu cap="Centres de Table"
menu_goto_frame = "frame-label/4"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Themes Marron blanc"
menu_goto_frame = "frame-label/5"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Themes Noir blanc"
menu_goto_frame = "frame-label/6"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Themes Marron fushia"
menu_goto_frame = "frame-label/7"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Themes Bleu beige"
menu_goto_frame = "frame-label/8"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Themes Marron vert anis"
menu_goto_frame = "frame-label/9"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Themes Orange vert anis fushia"
menu_goto_frame = "frame-label/10"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Themes Rouge orange or"
menu_goto_frame = "frame-label/11"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Themes Vert anis fushia"
menu_goto_frame = "frame-label/12"
menu_goto_mctarget = "_root">
</submenu>
</menu>
<menu cap="Deco design">
<submenu cap="Drages"
menu_goto_frame = "frame-label/13"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Coussin alliance livre d'or"
menu_goto_frame = "frame-label/14"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Houpa"
menu_goto_frame = "frame-label/15"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Deco lycra"
menu_goto_frame = "frame-label/16"
menu_goto_mctarget = "_root">
</submenu>
<submenu cap="Deco light"
menu_goto_frame = "frame-label/17"
menu_goto_mctarget = "_root">
</submenu>
</menu>
<menu cap="Partenaires">
<submenu cap="Partenaires"
menu_goto_frame = "frame-label/18"
menu_goto_mctarget = "_root">
</submenu>
</menu>
<menu cap="Contacts">
<submenu cap="Contacts"
menu_goto_frame = "frame-label/19"
menu_goto_mctarget = "_root">
</submenu>
</menu>
</dropdown> |
Je galère un peu merci.