The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.38 / 5.00 36,385 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.07 / 5.00 13,902 ViewsHi.
I can put links in my flash animations?
because I'm doing a cartoon and want the preloader saver if I can put my twitter my facebook and my website
Definitely.
Just call the getURL(url, window, method) command and you'll be fine.
Say, you want to link a button to your twitter, then create a Twitter button, and insert this:
on(release){
getURL("www.twitter.com", "_self", "POST");
} Slint approves of me! | "This is Newgrounds.com, not Disney.com" - WadeFulp
"Sit look rub panda" - Alan Davies
This might be a good time to ask, what does the third variable do?
And what do you put to open in a new tab? Can you even do that in as2?
TIA
At 5/17/11 08:01 AM, sandwich-eater wrote: This might be a good time to ask, what does the third variable do?
Specifies the method of sending. Since you're not sending anything here, you can omit it.
And what do you put to open in a new tab? Can you even do that in as2?
TIA
Of course you can, that's what the second argument is for. Just make it _blank instead of _self.