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>