The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.34 / 5.00 31,296 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.07 / 5.00 10,082 ViewsAt 11/19/04 04:54 AM, sentme_mail wrote: hi,
how can i add html codes to a flash movie?
thanks
You put this action script into the button:
on(release){
getURL("http://www.inserturlyouwantittogoto.com", _blank);
}
The blank is important, because it opens the link up in a new new window, rather than the window the flash is in. Is this what you wanted?
Yeah. I'm not sure he ment a button html. Maybe he thinks that you can combine actionscript and html. :D If that's the case then no. I Mean don't try it. Just learn actionscript
i have a piece of html code which is provided for mailinglist and i need to paste this code into my flash movie for it to work.
how can i do it?
At 11/19/04 07:45 AM, sentme_mail wrote: i have a piece of html code which is provided for mailinglist and i need to paste this code into my flash movie for it to work.
how can i do it?
You can't just paste HTML into Flash.
Paste your HTML code here, lets see what you're talking about, because it's difficult to understand what you want due to vagueness
this is the code i am asked to paste
<--!-- Start franky.com Service Code -->
<--div align="center">
<--div style="padding:0px; border:1px solid #999999; width:235px; margin: 0px;background-color:#F2F4FA;">
<--form action="http://pub6.franky.com/elist/add.php" method="post" style="margin:0px;">
<--div style="background-color:#DBE0F5;padding:3px;font:12px arial;color:black;"><--b>Join the Mailing List<--/b><--/div>
<--div style="margin:10px; font: 11px arial; color: black; text-align:right;">
<--div style="margin-bottom:5px;">Enter your name and email address below:<--/div>
Name: <--input type="text" name="ename" size="25" maxlength="60" /><--br>
Email: <--input type="text" name="emailaddress" size="25" maxlength="100" /><--br>
<--input type="radio" name="action" value="join" checked style="border: 0px;"/>Subscribe
<--input type="radio" name="action" value="leave" style="border: 0px;" />Unsubscribe
<--input type="hidden" name="usernum" style="border: 0px solid black; height: 0px; width: 0px;" value="495123735" /><--input type="hidden" name="cpv" style="border: 0px solid black; height: 0px; width: 0px;" value="1" />
<--input type="submit" name="submit" value="GO" /><--/div>
<--div align="center" style="margin-bottom:5px;"><--a title="Free Mailing Lists from franky.com" href="http://www.franky.com"><--img src="http://assets.franky.com/cp/bn-elist.gif" alt="Free Mailing Lists from franky.com" border="0"><--/a><--/div><--/form>
<--/div><--/div>
<--!-- End franky.com Service Code -->
At 11/19/04 10:10 AM, sentme_mail wrote: this is the code i am asked to paste
You can't use that in Flash, you have to put it into an HTML page, using an HTML editor such as Dreamweaver or Front Page (or notepad). If you don't have a webpage, then you won't be able to use that code... it has absolutely nothing to do with Flash.
You can make a pop up window that would lead to your webpage using a button and this code:
on(release){
getURL("web address here", _blank);
}
This will leave the Flash movie on the screen. switch _blank with _self if you want the page to open in the flash movie itself instead ;)
There are very few HTML codes you can use in Flash, and, like already said, what you want to put in... won't go in.
From my experiments, I've gotten a href, b, u, i, and br to work.