Hey there.
I’m just getting started working with SWF Address and found this helpful post about how to change the action script in the “buttons” movie clip to present more like a button by enabling a change color with a rollover. I was wondering if anyone could help augment this workaround to accommodate a change of font size as well?
I’m assuming it would utilize the setTextFormat command, but I’m so new to this that I’m not really sure how to set it up.
Here’s the original work-around posted by bozeman.
**this.deepLink = ‘/clinic/’;
this.onRelease = _parent.btnRelease;
mcbase = new Color(this);
orig = “0xFFFFFF”;
overSt = “0x980F08”;
prSt = “0xFFCC00”
this.onLoad = function() {
mcbase.setRGB(orig);
}
this.onRollOver = function() {
mcbase.setRGB(overSt);
}
this.onRollOut = function() {
mcbase.setRGB(orig);
}
this.onPress = function(){
mcbase.setRGB(prSt)
}**
Any help would be greatly appreciated.
Thanks.