Hi, is it possible to add links to the buttons?
- Has been a member for 3-4 years
- Author had a File in an Envato Bundle
- Interviewed on the Envato Notes blog
- Exclusive Author
- Author was Featured
- Sold between 10 000 and 50 000 dollars
- Bought between 1 and 9 items
- United States
- Referred between 50 and 99 users
Yes, of course mrtamas, but please note that it is within the Flash file (AS3), not XML . Thanks.
hey i need some help with link buttons
we have this code function butnClick(event:MouseEvent):void { if (event.target.num 0) { // For the 1st button: // Add your button click actions here } else if (event.target.num 1) { // For the 2nd button: // Add your button click actions here } else if (event.target.num == 2) { // For the 3rd button: // Add your button click actions here }
ca you give me an example how i link let’s say http://google.com for the first button.
Regards.
still not working….do i have to upload it on my web ‘couse is not working and i have insert your code ….when i click a button it doesn’t do anything.
Hey, I am trying to put this on top of the carbon background of my site. Is there a way I can make the background transparent? I am trying to make this fit but just dont want any background…
I trired ‘wmode’, ‘transparent’ but it is not working. Is there a way in flash to make your stage tranparent. so the effect will blast over my site. Kinda like a transparent layer?
Little more help Christian, I want to do something like “gotoAndPlay(“frame label”) for a movie clip with the instance name content.
When I add content.gotoAndPlay I get an access of undefined property error. If I add it inside the paraenthesis I get an expecting identifier before my frame label error.
function butnClick(event:MouseEvent):void { if (event.target.num 0) { content.gotoAndPlay("home"); } Yields access of undefined property error
function butnClick(event:MouseEvent):void { if (event.target.num 0) { gotoAndPlay(content.”home”); }
Yields expecting identifier before home error.
Any help would be appreciated.
Well the second one is just incorrect actionscript, you cannot write that; first one is saying it can’t identify content – you sure you have the write path? Is there a movieclip with an instance name of ‘content’ in the same movieclip as the button and does it have a frame label of “home” within it? If you are still having trouble, please email me your files.
Sorry I left the == off when I typed the function the first time.
But no the movieclip with the instance name content is a separate movie clip on the stage with the buttons.
I tried adding parent and root but neither of them worked either.
Can I use this item in dreamweaver?
Do it works with dreamweaver?
I didn’t know much with flash.
If i purchase this item, can you change contents for me so that i can just put it in the dreamweaver and works?
I have only 4 webpage to link, i think it is some simple to you.

Sure.
if (event.target.num == 0) {
navigateToURL(new URLRequest(“http://google.com”), “_blank”);
}