Link to home
Start Free TrialLog in
Avatar of TrinityAssembly
TrinityAssembly

asked on

Flash Links

in flash how do i link a picture to inlarge it or make it link to a website
Avatar of Tom Ray
Tom Ray
Flag of United States of America image

make your picture into movie clip or a button and use the following code:

on(release){
      getURL("http://www.yourwebsite.com");
}
to make it linke to other site :

1 - sellect it with ur mouse
2 - press F8 to convert it to sempol "chose movieclip" ... this will convert it to a movieclip
3 - sellect it with ur mouse again and press F7 to open action panel
4 - put this code on the action panel

on(release){
      getURL("http://www.hotmail.com");
}

FLAASHER
to enlarge it make the same steps ansd on stp 4 put this code :

on (press, release) {
      this._width=200;
      this._height=200;
}

this will make its width 200 pxl and hieght 200 pxls   ..... u can put the numbers u want instade
also u can use on press OR onrlease or both of them


FLAASHER
ASKER CERTIFIED SOLUTION
Avatar of FLAASHER
FLAASHER
Flag of Saudi Arabia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial