How to Make a Link in Flash CS4

February 7, 2010

Flash video tuts

This was a highly requested tutorial by many different people. I said I would do it in another video, and here it is.

ACTIONS:
instanceNameHere.addEventListener(MouseE vent.CLICK, mouseClick);
function mouseClick
{
var request = new URLRequest(“link goes here”);
navigateToURL(request,”_blank”);
}

, , , , , ,

One Response to “How to Make a Link in Flash CS4”

  1. Luna_Small Says:

    Thanks a million for the tutorial!! You saved my day!
    BTW, there’s some missing part in the action script you provided.

    unstanceNamehere.addEventListener(MouseEvent.CLICK,mouseClick);
    function mouseClick(event:MouseEvent):void
    {
    var request = new URLRequest(“linkGoeshere”);
    navigateToURL(request,”_blank”);
    }

    Again, thanks!

Leave a Reply