i have a flash website i am making (from a template) but want to embed an icontact (email service) signup form onto one of the pages. how can i do this ?

i try rendering the text box as a dynamic text box and rendering as HTML but it doesnt work

<style type="text/css">
.link,
#SignUp .signupframe {
	color: #341135;
	font-family: Arial, Helvetica, sans-serif;
	}
	.link {
		text-decoration: none;
		}
	#SignUp .signupframe {
		border: 1px solid #343217;
		background: #FF00FF;
		}
</style>
<script type="text/javascript" src="http://app.icontact.com/icp/loadsignup.php/form.js?c=XXXXXXXXXXXXXXXXXX"></script>

It is not possible to embed and run scripts from within flash file. Dynamic textboxes support very few HTML tags (you can find full list here) and <script> tag is not supported and even if it was that would be just absurd since actionscript is used for programming purposes in Flash. :)

Of course there is a solution - you can achieve same functionality by using actionscript.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.