Quote from
Gaev on October 29, 2021, 2:09 am
Did you mean "Browser space" or the "space occupied by your App" ? ... say your Browser is 1000 by 800 ... but you have defined the size of your App to be 800 by 500 ... then, to the best of my knowledge, your App can not draw outside the 800 by 500 boundary.
In order to have a Container cover the App space ...
SetVar "[myPage]" "nameOfYourPageGoesHere"
SetVar "[myContainer]" "nameOfYourContainerGoesHere"
GetObjectInfo "[myPage]" "width" [myPageWidth]
GetObjectInfo "[myPage]" "height" [myPageHeight]
...AlertBox "size" "[myPageWidth] ... [myPageHeight]" ""
SetObjectBounds "[myContainer]" "0px" "0px" [myPageWidth] [myPageHeight]
Did you mean "Browser space" or the "space occupied by your App" ? ... say your Browser is 1000 by 800 ... but you have defined the size of your App to be 800 by 500 ... then, to the best of my knowledge, your App can not draw outside the 800 by 500 boundary.
In order to have a Container cover the App space ...
SetVar "[myPage]" "nameOfYourPageGoesHere"
SetVar "[myContainer]" "nameOfYourContainerGoesHere"
GetObjectInfo "[myPage]" "width" [myPageWidth]
GetObjectInfo "[myPage]" "height" [myPageHeight]
...AlertBox "size" "[myPageWidth] ... [myPageHeight]" ""
SetObjectBounds "[myContainer]" "0px" "0px" [myPageWidth] [myPageHeight]
Deleted user has reacted to this post.