Re: [Flashcoders] Multiple query strings in a single URL

2008-05-15 Thread John R. Sweeney Jr
on 5/15/08 1:32 AM, Jason Van Cleave at [EMAIL PROTECTED] wrote: Thank you Jason. The inclusion of the & in the string and the plus instead of the comma was the ticket. For my current need this solution is perfect, but I will look into the SWFObject 1.5 for future reference. It looks promising.

Re: [Flashcoders] Multiple query strings in a single URL

2008-05-14 Thread Jason Van Cleave
I think "FlashVars", 'whichSection=' + querySt('page'),'loggedin='+querySt('login')); needs to be "FlashVars", 'whichSection=' + querySt('page')+'&loggedin='+querySt('login'); You may want to check out SWFObject 1.5 that would make this much more readable ie: var so = new SWFObject("your.swf",

[Flashcoders] Multiple query strings in a single URL

2008-05-14 Thread John R. Sweeney Jr
Howdy all, I currently have a app that pulls a single variable from the URL I.e. = index.html?page=2 I pass that info into my program with FlashVars using: -- function querySt(ji) { hu = window.location.search.substring(1); gy = hu.split("&"); for (i=0