I have been following the instructions here:  
http://livedocs.adobe.com/flex/3/html/help.html?content=deep_linking_5.html#245869

to capture variable/value pairs from the query string.  My URL looks like this:

http://localhost:3000/bin\Mick.html?uid=louise&cid=amat

I have edited the auto-build HTML wrapper by adding 

<%
  String uid = (String)request.getParameter("uid");
  String cid = (String)request.getParameter("cid");
%>

between </head> and <body>, and by adding the FlashVars line:
...
} else if (hasRequestedVersion) {
        // if we've detected an acceptable version
        // embed the Flash Content SWF when all tests are passed
        AC_FL_RunContent(
                        "src", "Mick",
      "FlashVars", "&uid=<%=uid%>&cid=<%=cid%>"+"",
                        "width", "100%",
                        "height", "100%",
                        "align", "middle",
                        "id", "Mick",
                        "quality", "high",
                        "bgcolor", "#869ca7",
                        "name", "Mick",
                        "allowScriptAccess","sameDomain",
                        "type", "application/x-shockwave-flash",
                        "pluginspage", "http://www.adobe.com/go/getflashplayer";
        );
...

When I get into my application's applicationComplete handler, and look at the 
variable that is supposed to contain "louise", it has "<uid" instead; same for 
"<cid".  What am I doing wrong?

TIA.
LG

Reply via email to