Shoutbox

Move Display Picture box - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Skinning (/forumdisplay.php?fid=41)
+----- Thread: Move Display Picture box (/showthread.php?tid=81450)

Move Display Picture box by Basilis on 02-04-2008 at 09:01 PM

Does anyone know how the DP box can be moved from the left to the right?
Also, can the PSM and the Nickname be moved to the left? Thanks


RE: Move Display Picture box by warmth on 02-05-2008 at 04:28 PM

search for the align string and just editing it from left to rigth you will have the behavior you want ;)!!!


RE: Move Display Picture box by Basilis on 02-05-2008 at 08:38 PM

I tried changing to right all the "left" I found in the style 923 but nothing happened.Any ideas?


RE: Move Display Picture box by warmth on 02-05-2008 at 09:54 PM

quote:
Originally posted by Basilis
I tried changing to right all the "left" I found in the style 923 but nothing happened.Any ideas?
maybe you did some changes in the way things are displayed like changing layout=borderlayout() to layout=filllayout() and now layoutpos=left or layoutpos=right are the same cause you don't actually have a place to define what is left and what is right... maybe some of us must check you def file...
RE: Move Display Picture box by Basilis on 02-05-2008 at 10:02 PM

Actually, I tried from the style file. Anyway, can you try it by yourself and attach the definition file?


RE: Move Display Picture box by Basilis on 02-12-2008 at 07:48 PM

Everything  tried to move the box to the right failed. In order not to make a new thread I have another question on this subject. Can I move the box a bit lower? I still need help to move the box to the right, if anyone found a solution.


RE: Move Display Picture box by warmth on 02-12-2008 at 07:54 PM

I remember that I already did it... but I can't find the files... if you can wait like 2 weeks... I could dedicate to help you with...


RE: Move Display Picture box by Basilis on 02-12-2008 at 09:03 PM

You did it in your 8.1  messenger skin?


RE: Move Display Picture box by Keikonium on 02-13-2008 at 12:13 AM

Is this basically what you want?

[Image: dpboxrightside.jpg]


RE: Move Display Picture box by Basilis on 02-13-2008 at 11:50 AM

Yes.Could you please send me the definition?


RE: Move Display Picture box by Keikonium on 02-13-2008 at 02:06 PM

My def. file is heavily modified, so it would probably do you no good. But the line I changed is:

code:
<element layoutpos=left layout=verticalflowlayout(0,2,2,0) padding=rect(8,3,4,0)>

I changed the whole line to:
code:
<element layoutpos=right layout=borderlayout() padding=rect(10,0,0,0)>

The padding should probably be left as the original, mine just moves it over from the left side of the window :P.

Hopefully that helps :).
RE: Move Display Picture box by Basilis on 02-13-2008 at 02:08 PM

I will try it and tell you .Thanks


RE: Move Display Picture box by warmth on 02-13-2008 at 06:35 PM

quote:
Originally posted by Keikonium
I changed the whole line to:
code:
<element layoutpos=right layout=borderlayout() padding=rect(10,0,0,0)>

basically what I told you to do basilis :P...

RE: Move Display Picture box by Basilis on 02-13-2008 at 08:11 PM

Thanks guys. I got it how I wanted it.


RE: Move Display Picture box by ryxdp on 02-16-2008 at 05:34 AM

Hmm..I've got the DP Container on the right, but what elements are the PSM and Display name?


RE: Move Display Picture box by warmth on 02-16-2008 at 04:00 PM

ID=Atom(ai201) is the whole set (DP, PSM and DN)... inside this set there are other sets... one of them is PSM and DN set container... you can align it changing:

code:
<element layoutpos=client layout=borderlayout() padding=rect(0,11,12,0)>

to

code:
<element layoutpos=right layout=borderlayout() padding=rect(0,11,12,0)>

but now if you want to set then aligned to right to individualy... you will need more code modifications...