English 中文(简体)
闪光对象的大小与屏幕屏幕大小不匹配
原标题:Flash object s size doesn t match the on screen size

我创造了一个小瓷砖 64x64 用于测试我的瓷砖引擎, 并被添加到循环中

var grass:Grass = new Grass();
grass.x = (x * TILE_SIZE);
grass.y = (y * TILE_SIZE);
grass.width = TILE_SIZE;
grass.height = TILE_SIZE;
container.addChild(grass);

public class Grass extends MovieClip {

public function Grass() {
    // constructor code
    this.width = 64;
    this.height = 64;
}
}

如果我追踪我对象的.width 和. scale 与代码匹配为 64x64 和 1 。 但当我在调试器中打印屏幕并在照片店中测量时,它们为 94x84, 我就能找出出错之处?

我错过了什么吗 谢谢

最佳回答

保证阶段缩放模式不是缩放 :

import flash.display.StageAlign;
import flash.display.StageScaleMode;

stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
问题回答

或许你的调试器会把你的闪光视频打到全屏, 从而拉开你的草原。 截图会有所帮助 。

这是行动标注3吗? 草类的申报在哪里? 可能有错误 。





相关问题
Disable button tooltip in AS3

I want to disable the tooltip on certain buttons. The tooltip manager seems to be an all or nothing solution. Is it possible to disable the tooltip for just one or two buttons?

Sorting twodimensional Array in AS3

So, i have a two-dimensional Array of ID s and vote count - voteArray[i][0] = ID, voteArray[i][1] = vote count I want the top 3 voted items to be displayed in different colors, so i have a 2nd Array -...

Virtual Tour using sketch up, ajax, flash technologies

I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

AS3 try/catch out of memory

I m loading a few huge images on my flex/as3 app, but I can t manage to catch the error when the flash player runs out of memory. Here is the what I was thinking might work (I use ???? because i dont ...

Red5 Security Tutorial

I am looking for a step by step tutorial on securing Red5 from intrusion. This seems to be a question that comes up alot in a google search, but is never really answered in a way that makes sense to ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

visible property of DisplayObject

For example I have a hierarchy of movie clips. mc1 is a child of mc, and mc2 is a child of mc1. Turns out that when I set mc1.visible = false; mc2.visible stays true. Is that supposed to happen?...

热门标签