Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im very new to actionscript 3 and I just cant seem to convert my old action script into the newest version (as3). I am trying to set my movie clips from alpha (transparent) to visible when the mouse is rolled over a button. Here is my old code.

//btnOver is a gaint button over my screen that is transparent

function btnOver(event:MouseEvent):void{
    button_overlay._visible = false;
on(rollOver){
    minutes_mc._visible = true;
    hours_mc._visible = true;
    seconds_mc._visible = true;
}
on(rollOut){
    minutes_mc._visible = false;
    hours_mc._visible = false;
    seconds_mc._visible = false;
}

Here is the rest (or whole) of my code in AS3.

import flash.events.MouseEvent;

var date:Date;
var theDate:Date = new Date(  );
var day = theDate.toLocaleDateString()
var time = theDate.toLocaleTimeString()


addEventListener(Event.ENTER_FRAME, refreshHour);
addEventListener(MouseEvent.ROLL_OVER, btnOver);


function refreshHour(event:Event):void{

    date = new Date();

    hour_mc.rotation = date.getHours()*30 + (date.getMinutes()/2);
    hours_mc.rotation = date.getHours()*30 + (date.getMinutes()/2);
    minutes_mc.rotation = date.getMinutes()*6 + (date.getSeconds()/10);
    minute_mc.rotation = date.getMinutes()*6 + (date.getSeconds()/10);
    seconds_mc.rotation = date.getSeconds()*6 + (date.getMilliseconds()/(1000/6));
    second_mc.rotation = date.getSeconds()*6 + (date.getMilliseconds()/(1000/6));
}

date_txt.text = day;

//btnOver is a gaint button over my screen that is transparent

function btnOver(event:MouseEvent):void{
    button_overlay._visible = false;
on(rollOver){
    minutes_mc._visible = true;
    hours_mc._visible = true;
    seconds_mc._visible = true;
}
on(rollOut){
    minutes_mc._visible = false;
    hours_mc._visible = false;
    seconds_mc._visible = false;
}

Basically Im making a flash watch that glows when you roll over it:)

Thanks Joe

share|improve this question

2 Answers

up vote 2 down vote accepted
const GLOW:GlowFilter = new GlowFilter(0xFF0000);

screen.addEventListener(MouseEvent.ROLL_OVER, _rollOver);
screen.addEventListener(MouseEvent.ROLL_OUT, _rollOut);

function _rollOver(e:Event):void
{
    watch.filters = [GLOW];
}

function _rollOut(e:Event):void
{
    watch.filters = [];
}
share|improve this answer
Nice I never though of doing it this way before. Sweet I might try this! – BillyRay Jan 24 '12 at 3:07

Here you'll want to use two functions, one for over and another for out. Example:

addEventListener(MouseEvent.ROLL_OVER, btnOver);
addEventListener(MouseEvent.ROLL_OUT, btnOut);

function btnOver(event:MouseEvent):void{
    // do everything here you want when the mouse goes over
    button_overlay._visible = true;
    minutes_mc._visible = true;
    hours_mc._visible = true;
    seconds_mc._visible = true;
}

function btnOut(event:MouseEvent):void{
    // do everything here you want when the mouse goes out
    button_overlay._visible = false;
    minutes_mc._visible = false;
    hours_mc._visible = false;
    seconds_mc._visible = false;
}
share|improve this answer
Thanks!!!! The only problem was that _visible needed to just be .visible Again Thank you! – BillyRay Jan 24 '12 at 2:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.