Thread Tools Display Modes
02-05-10, 07:27 PM   #1
Chenq
A Murloc Raider
Join Date: Feb 2010
Posts: 7
Party Frames Resizing and Changes

Hello, I wonder how you rezise your party frames and change the padding on them. they are too close together atm
  Reply With Quote
02-05-10, 09:30 PM   #2
wurmfood
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 122
The size of the individual party member frames is governed by the layout function. Most likely it will be set through something like "self:SetAttribute['initial-height'] = something" and "self:SetAttribute['initial-width'] = somethingElse".

For the padding between them, look near the spawn section for the party frames. You'll probably see something like:
Code:
SetManyAttributes(
	'showRaid', false,
	'showSolo', false,
	'showParty', true,
	'showPlayer', false,
	'xOffset', x-offset,
	'yOffset', y-offset,
)
The offset parts determine the distance between the frames. Vertical offset is handled by the yOffset, while horizontal is handled by the xOffset.
  Reply With Quote

WoWInterface » Featured Projects » oUF (Otravi Unit Frames) » Party Frames Resizing and Changes


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off