View Single Post
  #7  
Unread 06-06-2010, 04:16 AM
Ray's Avatar
Ray Ray is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Dec 2009
Location: The Netherlands
Posts: 22
Quote:
I'm also having trouble with this skin.

My element ID: <Element ID="ToolbarField" X="171" Y="568" Width="1366" Height="768"> <!-- Resolution 1680 x 1050 -->

Any ideas would be greatly appreciated
Which resolution are you using? 1680x1050? Then you should use:
Code:
<Element ID="ToolbarField" X="328" Y="824" Width="1024" Height="200"> <!-- Resolution 1680 x 1050 -->
since JappMe uses the formulas to calculate:
X = (1680-1024)/2 = 128
Y = 1050-200= 850

From your line, I'd guess you are using: 1366x768. If so, use:
Code:
<Element ID="ToolbarField" X="171" Y="568" Width="1024" Height="200"> <!-- Resolution 1366 x 768 -->
And for your information:
X = (1366-1024)/2 = 171
Y = 768-200= 568

If you use another screen resolution; use the formula or reply here your screen resolution.

Ps. better remove that screenshot Zakiwis, it contains Vent details with password. Not convenient to post that...
Reply With Quote