Jump to content

How do I attach a link to a flash a.swf button?


hometakes

Recommended Posts

  • 4 weeks later...

You could try to use loadMovie (), like...

this.createEmptyMovieClip ("my_button", 1);with (this.my_button){	loadMovie ("http://www.snubbyland.com/otherpics/logo.gif", this);	createEmptyMovieClip ("hit", 2);	hit.beginFill (0xFFFFFF, 0);	hit.lineTo (120, 0);	hit.lineTo (120, 80);	hit.lineTo (0, 80);	hit.endFill ();}

Now you can refference the button with an onPress function and add the getURL or something. Good luck :)(heres the onPress function if you aren't farmiliar)

hit.onPress = function () { /**/ }

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...