事先得到任何帮助。 我在行动文件3上说一句话,我想要做的是使形象变得更糟。 基本上,将有一个电影院,作为集装箱,一个左侧和右侧。 当我点击左顿时,集装箱滑坡留下,反之亦然。
现在,我这样做的事情是,当我说左顿时,问题就在于集装箱停下来,而且随着我点击左顿,移动时间会持续太久。 但是,我想在集装箱末停泊或停泊,我不敢肯定如何这样做。
我在网上搜索了所有这些内容,但并没有发现任何有用之处,我发现的大多数内容确实复杂或严重依赖外部图书馆,我不想仅仅复制和重复我不理解的密码。 任何人都希望对如何在行动说明中实现这一点给予仔细的见解。 3. 。
这里是我迄今为止法典的复印件。
Thanks -Noob
//leftButton and rightButton are movieClips on the stage
leftButton.addEventListener(MouseEvent.MOUSE_DOWN, moveLeft);
rightButton.addEventListener(MouseEvent.MOUSE_DOWN, moveRight);
//NOTE: thumbContainer is a movieClip on the stage
//Make the mask;
var myMask:MovieClip = new MovieClip();
this.addChild(myMask);
myMask.graphics.beginFill(0x000000);
myMask.graphics.drawRect(6,138,534,144);
myMask.graphics.endFill();
thumbContainer.mask = myMask;
//thumbContainer moves left on button press
function moveLeft(evt:Event):void
{
thumbContainer.x -= myMask.width;
}
//thumbContainer moves right on button press
function moveRight(evt:Event):void
{
thumbContainer.x += myMask.width;
}