hi
lemme clarify a bit.
If you have 2 flash pages, page 1 being the flash login page and page 2 being the main flash site, then your solution is mtimdog's suggestion... serve page 1 if not logged in, serve page 2 if loged in.
My suggestion is for a single page that hosts the Flash site, and the log in being in that same swf as the main site.
now ofcourse everytime you load that Flash site, it starts at the login page right?
so before the timeline get's to the login page, stop it.. have an actionscript that calls a php script (eg. check_session.php)
that script will check for sessions and echo back true or false...
as soon as Flash gets the variable, flash should play according to the variable returned.. if false, got to login, if true, jump to frame XX (your main section)
Understand so far?
Tea