well, i want to turn only the sounds off in certain mc's that are loaded up. isn't there just a simple "sound off" command without having to identify the object, etc.???
thanks
disfasia
ps. isn't today too beautiful a day to be inside????
yes, i am on a mac, mx only. i will do it again and put it in the same place. this is odd. i did upgrade to tiger recently...and boy was that a nightmare process!
i checked and rechecked the document and yes, it was saved as flash mx (not mx 2004). i don't know what is up. i redid it and reuploaded it. see if this helps.
No there are no flv's and the actionscript says it is as2. But I am figuring out that the scripting has to happen in the "button.as" file. Is there a script that I can use that will turn off these button sounds? Here is the script...
/*
Button.as
Base class for four frame buttons.
*/
class com.macromedia.flashvideogallery.Button extends MovieClip
{
var handlerClip:MovieClip;
var method:String;
function Button()
{
useHandCursor = false;
}
function setClickHandler(m:String, hc:MovieClip):Void
{
method = m;
handlerClip = hc;
}
function onRelease():Void
{
onRollOver();
handlerClip[method](this);
}
function onRollOver():Void
{
gotoAndStop(2);
}
function onDragOver():Void
{
onPress();
}
function onRollOut():Void
{
gotoAndStop(1);
}
function onDragOut():Void
{
onRollOut();
}
function onPress():Void
{
gotoAndStop(3);
}
function setEnabled(flag:Boolean):Void
{
enabled = flag;
_alpha = flag ? 100 : 50;
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.