在没有看到更多代码的情况下,我会说您需要设置 clipAndEnableScrolling。
clipAndEnableScrolling="true"
尝试将其添加到您的视频所在的组(Group、HGroup 或 VGroup)。
根据我现在的理解进行编辑...:
当电影的右边缘接触屏幕的右边缘时,您将需要创建第二部电影并将其添加到舞台上,并在第一部电影的确定 x 和第一部电影的 y 处。我会说这样的话...
onMoveOfFirstMovie():void
{
if(firstMovie.x + firstMovie.width > movieContainer.width)
{
if(secondMovie doesnt exist)
{
//create second movie if it isnt already on stage and set it's play position to the play position of first movie
}
secondMovie.y = firstMovie.y;
secondMovie.x = firstMovie.x + firstMovie.width - movieContainer.width;
}
}
非常粗略的代码,但它应该是正确的。