View Single Post
  #5  
Old 08-08-2013, 11:44 AM
Cubical Cubical is offline
Banned
Join Date: Feb 2007
Posts: 1,348
Cubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant future
Quote:
Originally Posted by Tim_Rocks View Post
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}; 
You can also store the x,y as
PHP Code:
position = { 1010 }; 
and width, height as
PHP Code:
 extent = { 4090 }; 
Alternatively you can do offset = "3 3"; but it's not a string so I don't do that.
Reply With Quote