View Single Post
Old 06-18-2012, 03:44 PM   PM User | #1
MrLFenner
New to the CF scene

 
Join Date: Jun 2012
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
MrLFenner is an unknown quantity at this point
AS Concatenate input box

Hi all, I currently have this code working on a site so that a user can input their username, it gets added to http://dida.wildern.org/ and then the user is redirected to that particular webpage.

Please could you advise on how to EITHER, allow this code to work in a Flash Movie (that will be published to the web) OR a suitable alternative written in actionscript.

Thanks

Code:
<script type="text/javascript"><!--
function gohere() {
    var url="http://dida.wildern.org/";
    var addon=document.getElementById('AddMe').value;
    window.parent.location.href=url+addon+"/";
}
//--></script>

<div>
      <form id="form" action="javascript:gohere();">
        View a user's DiDA page:
        <input type="text" id="AddMe" format="a" maxlength="20" size="8" />

        <input type="submit" value="Go" />
      </form>
    </div>
MrLFenner is offline   Reply With Quote