View Single Post
05/01/14, 01:32 PM   #2
Iyanga
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 183
Most control functions expect the object as first parameter.

So either
obj.SetWidth(obj, 100)
or
obj:SetWidth(100)
  Reply With Quote