This is the code for FLASH only. If you were to try writing this in HTML it would break.
If you're coding it right in flash, select the button you designed and open the "Actions" window.
Enter this code:
Code:
on (release) {
getURL("http://www.summit-productions.ca", POST)
};
Make sure, that this code is on the button itself, not the frame, or it will give you an error. Also ensure that the URL is in quotes or it'll mess up the whole line.
If you've created an individual flash button and just want to wrap an HTML link around it use the following code:
HTML Code:
<a href="http://www.summit-productions.ca"><embed src="flashbutton.swf" /></a>
Flash can "Publish" the correct code for embedding an object.
Feel free to PM, or e-mail me if you need more help, or something here doesn't work.
Last edited by collyer_1; 03-28-2006 at 11:42 AM..
|