kvarga
11-22-2005, 03:36 PM
Hello,
I am trying to extend the Button component that comes with Flash 8. I
had been successful until I tried to change the font size of the label
and extend the onPress, onRelease and onReleaseOutside.
1. Font Size - here is my action script that I am using.
[Inspectable(defaultValue=24)]
public function set fontSize(fsize:Number)
{
this.setStyle("fontSize",fsize);
}
2. How do you extend an event? When I do the following the event stops
firing.
function onPress = function()
{
// my code
}
Any help on either of these issue would be appreciated.
Thanks,
Kevin
I am trying to extend the Button component that comes with Flash 8. I
had been successful until I tried to change the font size of the label
and extend the onPress, onRelease and onReleaseOutside.
1. Font Size - here is my action script that I am using.
[Inspectable(defaultValue=24)]
public function set fontSize(fsize:Number)
{
this.setStyle("fontSize",fsize);
}
2. How do you extend an event? When I do the following the event stops
firing.
function onPress = function()
{
// my code
}
Any help on either of these issue would be appreciated.
Thanks,
Kevin