Home » questions » help with flash!?

help with flash!?

2006-07-31 23:50:30, Category: Programming & Design
i have a clip that animates local news on http://www.cyclonsolutions.com/beta there is 4 things i can edit up down over and hit. I can't get any actionscript for anything to get me to be able to load a page please help

Answers

  1. rightmark_web

    On 2006-08-01 00:51:15


    Use a button and name the instence of the button (e.g. myButton_btn) then use the following actionscript to link to an page on an external site (e.g. xxx = www.linkedsite.co.uk/file.htm), the second parament (_blank") is the target attribute normally used in HTML myButton_btn.onRelease = function() { getURL("http://xxxx","_blank"); }