Hi
I made a menu by attaching movieclips and specifying the text as a variabel.
the main movieclip is called meny, then I attach the movieclips txt and pil (pil is norwegian for arrow) inside it, and specify the y pos. This works on my mac, but when I see it on a PC the text is down by aprox. 5-8 pixels.
Anybody know why?
my code is:
meny.attachMovie(“menyKnapp”, “meny_om”, 10, {_x:0, _y:0}); // the background of the button
meny.meny_om.attachMovie(“menyTxt”, “txt”, 11, {_x:0, _y:2}); // the text 
meny.meny_om.txt.meny_txt_fade.menyVar=“OM MUSEENE”; // the text value(variabel)
meny.meny_om.attachMovie(“menyPil”, “pil”, 12, {_x:65, _y:8.5}); // the arrow
thanks
Tommy