Results 1 to 2 of 2
Thread: Anyone knows how to do this ?
-
May 4th, 2012, 12:56 PM #11Registered User
postsAnyone knows how to do this ?
Hi everybody,
I am very basic in flash so i wanted to know if somebody knows how to do this:
You pass the mouse over a spot and re-open another image..
http://www.pipa.be/en/pigeons-for-sa...l-auction-en/1
* after you click on the link you have to click on the image to open it
Please help me..
thanks in advance
-
May 7th, 2012, 04:07 PM #2
something like this should work
Code:for (i=1; i<7; i++) { this["mc"+i].linkId = "image"+i; this["mc"+i].onRollOver = function() { attachImage(this.linkId, this); }; } function attachImage(tar, targetMC) { var mc:MovieClip = this.attachMovie(tar, tar, this.getNextHighestDepth()); mc._x = targetMC._x; mc._y = targetMC._y; mc.onRollOut = function() { this.removeMovieClip(); }; }

Reply With Quote

Bookmarks