<style type="text/css">
Html, body {
Overflow:auto;
margin:0;
padding:0;
color:#000;
}
</style>
Overflow:auto;
스크롤바의 초기 출력 여부를 설정할 수 있다. auto인 경우 내부 페이지가 출력창보다 작으면 스크롤바가 표시되지 않는다.
margin:0;
padding:0;
내부 페이지의 기본 여백을 모두 없앤다.
this.root.stage.stageHeight
this.root.stage.stageWidth
Scene에서
x축 원점 좌표 = -(this.root.stage.stageWidth-[Document Properties 상의 Dimension;Width])/2;
y축 원점 좌표 = -(this.root.stage.stageHeight-[Document Properties 상의 Dimension;Width])/2;
MovieClip내에서
x축 원점 좌표 = -(this.root.stage.stageWidth/2 - this.x + this.width/2);
y축 원점 좌표 = -(this.root.stage.stageHeight/2 - this.y + this.height/2);
this.root.stage.stageWidth
Scene에서
x축 원점 좌표 = -(this.root.stage.stageWidth-[Document Properties 상의 Dimension;Width])/2;
y축 원점 좌표 = -(this.root.stage.stageHeight-[Document Properties 상의 Dimension;Width])/2;
MovieClip내에서
x축 원점 좌표 = -(this.root.stage.stageWidth/2 - this.x + this.width/2);
y축 원점 좌표 = -(this.root.stage.stageHeight/2 - this.y + this.height/2);
<!-- #include file = "../inc/strConn.asp" -->
이나
Response.Redirect "../index.asp"
와 같은 구문을 사용할 때 ASP error 0131 - "Disallowed Parent Path" 에러가 발생한다면..
http://support.microsoft.com/kb/332117
IIS 6.0에서는 기본적으로 부모 폴더의 사용이 불가능하도록 설정되어 있다.
속성 -> 홈 디렉토리 탭 -> 구성 버튼 -> 옵션 탭 -> 부모 경로 사용 체크
이나
Response.Redirect "../index.asp"
와 같은 구문을 사용할 때 ASP error 0131 - "Disallowed Parent Path" 에러가 발생한다면..
http://support.microsoft.com/kb/332117
IIS 6.0에서는 기본적으로 부모 폴더의 사용이 불가능하도록 설정되어 있다.
속성 -> 홈 디렉토리 탭 -> 구성 버튼 -> 옵션 탭 -> 부모 경로 사용 체크

Prev

