Unless it went unnoticed: what kind of attack are you trying to prevent, how much are you ready to pay for it?
In reverse order; in order to have your server serve pages via HTTPS you need to purchase a certificate from some authorized body. This is not a free service + it expires. Serving pages using encrypted connection taxes your server by time and memory it is required to encode the data + the traffic (almost double the base size). It also makes embedding other people's content such as ads, images from other sites problematic to serve because not all ads providers will have ads served via both secure and insecure connection. This may be potentially a showstoper if you plan for your site to profit from displaying ads.
Kinds of attack: who are you protecting against whom? Are you afraid that Flash will somehow help expose your application logic to the potential attacker so that she will be able to exploit your system weak spots? For example, this could be possible if you use Flash to uploads things to your server, or allow, under some circumstances, to load server's code using it.
Or are you trying to protect users against another users, as in if one user can eavesdrop on the stuff sent by another user, it may potentially profit her?
There are also degrees and combinations of the above two.
Why do you need to pass user's name back to them? I would imagine they must already know it. Or did you by chance meant Flash should send the user name? In this case, again, what exactly is the danger? Is it the other users knowing what name is sent or the users themselves being able to send a "wrong" name? By "wrong" I mean several things at once: wrong - may be a name of another user, or, the name of the "proper" user, but sent in a way it would start another session rather than inside the already existing session (log in from another tab / browser).
Some additional info: while it is true that you would have to pay for the certificate, there's an advantage of using Flash over relying on bare browser's abilities. If your primary concern about security is less so to impress the prospects by having your entire site served over HTTPS, you could customary implement HTTPS in Flash, however, this requires a lot of work and understanding of the matter. SSL (the encryption used to serve pages over HTTPS) relies on the principle of bidirectional encoding using 2-part keys, such as, for example, RSA. The idea is that given a public key it is only possible to encrypt the data, but you need the private key to decrypt it. So it is safe to send your user the public key, which they can later use to encrypt the data they send. In such case it would be virtually impossible for anyone else to eavesdrop on the data being sent between your server and the user in the direction from user to server, and even though they might have the public key, they cant decrypt the data. But this will not prevent them from potentially knowing what information server sends to client - you should treat this as potentially always known and impossible to hide.