Quote:
Originally Posted by Tim_Rocks
I believe what you're looking for is this.offsety += 5; I had this issue once and I think that's how I fixed it. In 41 more days I'll be able to confirm this
Also, you can look here for more guidance.
GuiShowImgCtrl
|
You don't actually need this. in this situation since he is already within the scope of the object. I constantly see people do that for some reason.
Also this is more personal preference but i usually store it as an array in
PHP Code:
offset = { 3, 3 };
You can also store the x,y as
PHP Code:
position = { 10, 10 };
and width, height as
PHP Code:
extent = { 40, 90 };
Alternatively you can do offset = "3 3"; but it's not a string so I don't do that.