Ok so i figured out one problem which is now im getting the MemberNumber to pull in to my <object> and <embed> tag. I add to the allowScriptAccess param. 
But now i need help importing the number into my flash in order to imput the number into the URL's. This is my new HTML:
HTML Code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','200','height','192','src','menu','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','menu' ); //end AC code
</script>
<noscript>
<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
width="200"
height="192">
<param name="movie" value="menu.swf" />
<param name="quality" value="high" />
<param name="FlashVars" value="mn=<%=Session["MemberNumber"]%>">
<param name="allowScriptAccess" value="sameDomain" />
<embed src="menu.swf"
quality="high"
pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
type="application/x-shockwave-flash"
FlashVars="mn=<%=Session["MemberNumber"]%>"
allowScriptAccess="sameDomain"
width="200"
height="192">
</embed>
</object>
</noscript>
and my AS 3.0
Code:
var userURL:String = "https://www.domain.com/SwitchSec.aspx?mn=";
var MemberNumber:Number = this.loaderInfo.parameters.mn;
var userEndURL:String = "&path=Whatshot.aspx";
var userCompleteURL:String = userURL + MemberNumber + userEndURL;
testbutton_mc.addEventListener(MouseEvent.CLICK, testLink);
function testLink(e:MouseEvent):void{
navigateToURL(new URLRequest(userCompleteURL));
}
do any of you see whats wrong? it is saying that the variable mn=NaN?
Bookmarks