A Flash Developer Resource Site

Results 1 to 1 of 1

Thread: [F8] onRollover play attached movie clip??

  1. #1
    Junior Member
    Join Date
    Aug 2007
    Posts
    25

    [F8] onRollover play attached movie clip??

    I'm trying to attach a movie clip and to play that movie clip on rollover. At this point the movie is being attached, but the rollover/rollout functions don't work!

    What am I missing here? See code below.
    Thanks in advance!
    PHP Code:
    onEnterFrame = function () {
        
    _root.attachMovie("menu","menu_mc",1, {_x:0,_y:200})
        
    menu_mc.onRollOver = function () {
            
    this.play();
            
    delete menu_mc.onEnterFrame;
        }
        
    menu_mc.onRollOut = function () {
            
    this.onEnterFrame = function() {
            
    menu_mc.prevFrame();
        }
        }

    Last edited by gtomescu; 09-03-2007 at 12:28 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center