View Single Post
07-19-20, 08:43 AM   #1
Zax
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 147
SetBackdropBorderColor removed in 9.0?

Hello,
While testing one of my addons on the PTR server, I got this error:
Code:
attempt to call method 'SetBackdropBorderColor' (a nil value)
It's in a frame script, from an XML document:
Code:
		<Scripts>
			<OnLoad>
				self.SetText=function(self,arg)
					self:SetBackdropBorderColor(0.5,0.5,0.5);
					self:SetBackdropColor(0.3,0.3,0.3,0.5);
				end;
			</OnLoad>
		</Scripts>
SetBackdropBorderColor is removed in Shadowlands? Is there an equivalent?

Thanks.
  Reply With Quote