UI components problem

I’ve made a .swf file with a button and some other UI components and sent this to a friend. He opened this file (I think with flash player 6) and just couldn’t see the buttons and the other stuff. Why?

[AS]
if (yourFriend.hisPlayer.version < “Flashplayer 6 r65”) {
hisPlayer.supportAS2 = false;
yourFriend.ableToSeeComponents = false;
}
[/AS]
:wink: :slight_smile: :smiley:

If his flashplayer version is lower than version r65, his player don’t support actionscript 2.0.
Actionscript 2.0 is required for the MX2004 components.

i imagined that the matter was something about the player… Thanks!!!