• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

MouseEvent.MOUSE_WHEEL to move object on stage issue

Participant ,
Nov 11, 2019 Nov 11, 2019

Copy link to clipboard

Copied

I'm using the MouseEvent.MOUSE_WHEEL event to shift the .y position of a MC on stage.  This is working BUT I'm getting an bright yellow box that outlines the MC when the mosue wheel is activated. 

 

Note:  I'm publishing as a projector and I've tried on both OSX and Windows - the same result.  

 

Can anyone advise as to why my MC is outlined in Yellow?

 

Thanks in advance for your help!

 

stop();

stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

import flash.events.MouseEvent;

 

stage.addEventListener(MouseEvent.MOUSE_WHEEL, myMouseWheel);

 

function myMouseWheel(event:MouseEvent):void {

stage.focus = MovieClip(event.target);
if (box_mc.y >= -709 && box_mc.y < 97) 
{
box_mc.y -= event.delta;
}

else if (box_mc.y < 97) {
box_mc.y = 97;
}

else if (box_mc.y >= -709) 
{
box_mc.y = -709;
}

}

TOPICS
ActionScript

Views

266

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Nov 11, 2019 Nov 11, 2019

because you're setting focus on it.  if you don't want that, don't do that.

Votes

Translate

Translate
Community Expert ,
Nov 11, 2019 Nov 11, 2019

Copy link to clipboard

Copied

because you're setting focus on it.  if you don't want that, don't do that.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 13, 2019 Nov 13, 2019

Copy link to clipboard

Copied

LATEST

Great... thanks KGLAD.  I got that script from a tutorial and clearly didn't understand what  stage.focus was doing.  Thanks for the quick input!

 

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines