flash q
flash q
Out of context: Reply #1
- Started
- Last post
- 2 Responses
- ********0
First download Joey Lotts Proxy class:
http://www.person13.com/download…
from
http://www.person13.com/articles…then use this code:
// Joey Lotts Delegate equivalent
import ascb.util.Proxy;var link:MovieClip = this["subBtn"+i];
link.onRollOver = Proxy.create(this, linkOver, link);function linkOver(mc:MovieClip):Void
{
var trgtClip:MovieClip = mc.sub.fill
var col: Color = new Color(trgtClip);
col.setRGB(0x252D39);
}
//
This is AS2 code, easy to change to AS1Hope this helps