friendsterTalk - Friendster Forum

friendsterTalk - Friendster Forum

Welcome guest! Please Login or Register.

  • Multiply
  •  » Multiply Help Thread (Post your question here!)

#81  2008-03-25 03:51:59

valjesnet
» FriendsterAddict
valjesnet's display avatar
Location: Makati
Registered: 2007-05-23
Posts: 417
Last visit: 2008-08-24
Reputation: 1

Re: Multiply Help Thread (Post your question here!)

i copied the codes you gave me but i still dunno if these are codes are working.  my multiply site is the same.:cry:


sorry it's working now.  thanks blurry :kiss::thumbsup:
(codes are not working in FF only in IE)

Last edited by valjesnet (2008-03-25 04:37:37)


#82  2008-03-25 08:02:26

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Multiply Help Thread (Post your question here!)

i am using FF... and its working there...


Back to my default status: School mode

#83  2008-03-25 09:37:56

valjesnet
» FriendsterAddict
valjesnet's display avatar
Location: Makati
Registered: 2007-05-23
Posts: 417
Last visit: 2008-08-24
Reputation: 1

Re: Multiply Help Thread (Post your question here!)

one more question - why my profile viewer is not updating?


#84  2008-03-25 19:06:22

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Multiply Help Thread (Post your question here!)

maybe u don't have visitor on ur page ^


Back to my default status: School mode

#85  2008-03-26 03:30:27

valjesnet
» FriendsterAddict
valjesnet's display avatar
Location: Makati
Registered: 2007-05-23
Posts: 417
Last visit: 2008-08-24
Reputation: 1

Re: Multiply Help Thread (Post your question here!)

i have.  i saw it in multiply profile view.....
codes are not really working in FF. anywy, it';s ok as long it;s working in IE.


#86  2008-03-26 10:57:50

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Multiply Help Thread (Post your question here!)

ah ok... weii anyways... i tested ur codes and its working perfectly on FF... ^


Back to my default status: School mode

#87  2008-03-27 12:37:09

ewenessgALLore
» FriendsterGeek
ewenessgALLore's display avatar
why I can`t LET yOu go?!.
Registered: 2007-11-17
Posts: 1116
Last visit: 2008-12-01
Reputation: 16
Friendster

Re: Multiply Help Thread (Post your question here!)


how to add an another box..
without using addbox function..
is it possible?
coz i want to add a box
in my multiply eh..

#88  2008-03-27 12:56:17

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Multiply Help Thread (Post your question here!)

Code:

if (!addEvent(function() { addNewBox.init();})) { window.onload = function() { addNewBox.init();};}

if (typeof addNewBox == "undefined") { addNewBox = {}; }
addNewBox = {

        init: function() {
                var head = "Test Box";
                var code = "CODES HERE";
                this.load(head,code,"test_box","mainbox_1");
        },

        load: function (header,cont,id,sibling) {
            var base=document.getElementById(sibling).parentNode;
        try{
            var obj=document.createElement("div")
        }
        catch(e){
            var obj=document.createElement("<div>")}
                obj.innerHTML="<img alt='.'"+
                          "src='http://images.multiply.com/common/dot_clear.gif' width='1' height='20'>"+
                          "<div id='"+id+"'>"+
                          "<div class=itemboxsub>"+
                          "<table border=0 cellpadding=0 cellspacing=0 width='100%'><tr>"+
                          "<td class=icon width=16>"+
                          "<img alt='"+header+"' title='"+header+"'"+
                          "src='http://images.multiply.com/multiply/icons/clean/24x24/tagbox.png'"+
                          "width='24' height='24'>"+
                          "</td>"+
                          "<td class=cattitle>"+
                          "<a name=\""+header+"\"></a>"+header+""+"<b class='cn tl'></b>"+
                          "<b class='cn tr'></b></td><td class=itemsubsub></td></tr></table>"+
                          "</div><div class=itemshadow>"+
                          "<div class=itembox>"+cont+"</div>"+
                          "<div class=itemboxbottom>"+
                          "<b class='cn bl'></b><b class='cn br'></b>"+
                          "</div></div></div><img alt='.'"+
                          "src='http://images.multiply.com/common/dot_clear.gif'"+
                          "width='1' height='20'>";
            base.appendChild(obj);
        }

};

you can try xaveys code @ewane


Back to my default status: School mode

#89  2008-03-27 13:03:42

ewenessgALLore
» FriendsterGeek
ewenessgALLore's display avatar
why I can`t LET yOu go?!.
Registered: 2007-11-17
Posts: 1116
Last visit: 2008-12-01
Reputation: 16
Friendster

Re: Multiply Help Thread (Post your question here!)


nyahahahaha!kuya..
i copy, edit, save!
but..i really hate
JS file..
everytime i make it..
my all about me codes
will be affected..
wuwu!
help!

#90  2008-03-27 13:45:16

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Multiply Help Thread (Post your question here!)

if (!addEvent(function() { addNewBox.init();})) { window.onload = function() { addNewBox.init();};}

if (typeof addNewBox == "undefined") { addNewBox = {}; }
addNewBox = {

        init: function() {
                var head = "Test Box";
                var code = "CODES HERE";
                this.load(head,code,"test_box","mainbox_1");
        },

        load: function (header,cont,id,sibling) {
            var base=document.getElementById(sibling).parentNode;
        try{
            var obj=document.createElement("div")
        }
        catch(e){
            var obj=document.createElement("<div>")}
                obj.innerHTML="<img alt='.'"+
                          "src='http://images.multiply.com/common/dot_clear.gif' width='1' height='20'>"+
                          "<div id='"+id+"'>"+
                          "<div class=itemboxsub>"+
                          "<table border=0 cellpadding=0 cellspacing=0 width='100%'><tr>"+
                          "<td class=icon width=16>"+
                          "<img alt='"+header+"' title='"+header+"'"+
                          "src='http://images.multiply.com/multiply/icons/clean/24x24/tagbox.png'"+
                          "width='24' height='24'>"+
                          "</td>"+
                          "<td class=cattitle>"+
                          "<a name=\""+header+"\"></a>"+header+""+"<b class='cn tl'></b>"+
                          "<b class='cn tr'></b></td><td class=itemsubsub></td></tr></table>"+
                          "</div><div class=itemshadow>"+
                          "<div class=itembox>"+cont+"</div>"+
                          "<div class=itemboxbottom>"+
                          "<b class='cn bl'></b><b class='cn br'></b>"+
                          "</div></div></div><img alt='.'"+
                          "src='http://images.multiply.com/common/dot_clear.gif'"+
                          "width='1' height='20'>";
            base.appendChild(obj);
        }

};

refer to the bold part.........


Back to my default status: School mode

#91  2008-04-09 09:43:36

aris43
» FriendsterManiac
aris43's display avatar
Location: ☠
Registered: 2008-01-31
Posts: 824
Reputation: 8
Friendster

Re: Multiply Help Thread (Post your question here!)

how can i make animated/gif in headsot?
please!!


#92  2008-04-09 10:33:00

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Multiply Help Thread (Post your question here!)

never tried it before...

but you can try uploading an animated image for your avatar... try it...


Back to my default status: School mode

#93  2008-04-09 11:56:19

aris43
» FriendsterManiac
aris43's display avatar
Location: ☠
Registered: 2008-01-31
Posts: 824
Reputation: 8
Friendster

Re: Multiply Help Thread (Post your question here!)

blurrycloud wrote:

never tried it before...

but you can try uploading an animated image for your avatar... try it...

i tried but can`t moving!!


#94  2008-04-09 15:20:38

blurrycloud
» Moderator
blurrycloud's display avatar
[ - AchilleS - ]
Class-S
Location: Aikhee's Heaven
Registered: 2007-09-07
Posts: 2568
Reputation: 98

Re: Multiply Help Thread (Post your question here!)

^ maybe it is not possible


Back to my default status: School mode

#95  2008-04-09 16:58:40

kamillaloo
» FriendsterNewbie
Registered: 2007-08-18
Posts: 14
Last visit: 2008-10-23
Reputation: ~

Re: Multiply Help Thread (Post your question here!)

I Want To Hide The Railbox. Where My Avatar Is Found. Is It Possible?

#96  2008-04-11 02:18:33

xavierkym
» Retired Moderator
The Sinister
Class-S
Location: London, England
Registered: 2007-06-10
Posts: 5370
Reputation: 129
Friendster

Re: Multiply Help Thread (Post your question here!)

aris43 wrote:

how can i make animated/gif in headsot?
please!!

Code:

if (!addEvent(function() { onProfileLoad();})) { window.onload = function() { onProfileLoad();};}
function onProfileLoad() {

var image; var sibling;
image = document.createElement("DIV");
image.setAttribute("class","randImg");
image.innerHTML = "<center><img border=\"0\" name=\"defaultimage\" width=\"120\" height=\"120\" src=\"http://friendstertalk.com/img/avatars/71305.gif\"></center>";
sibling = getElementsByClassName(document.getElementById("rail"),"div","userlogo")[0];
sibling.parentNode.replaceChild(image,sibling);

}
function getElementsByClassName(oElm,sTag,sClass) {
        var elm = [];
        if (!oElm)oElm = document;
        if (!sTag)sTag = "*";
    var els = oElm.getElementsByTagName(sTag) || document.all;
            for (var j=0,k=els.length;j<k;j++) {
                 if (new RegExp(sClass).test(els[j].className)) {
                     elm.push(els[j]);
                 }
            }
             return elm;
}

Save in JS File.

Preview. http://xavegoi83.multiply.com/


#97  2008-04-11 04:14:19

HiLyNkAwAii
» FriendsterGeek
HiLyNkAwAii's display avatar
::^v...LoWeR pLs...v^::
Class X
Location: .> HERE <.
Registered: 2007-10-07
Posts: 1185
Last visit: 2008-10-29
Reputation: 14
???

Re: Multiply Help Thread (Post your question here!)

simple and effin dumb question here..
how can i make my own layout for my multiply? is possible?
whats this JS all about? is this like one in FS? :wallbash:
sorry..i used to get premades lays for my multiply sites :cry:



old skul YM talk ;)


I LOVE MY SIG  :wow:


...and I dont need your reaction =|
Pang-Asar aQ...INGAT KA =D

#98  2008-04-13 04:17:53

purpletooth
» FriendsterGeek
purpletooth's display avatar
Friendstertalk University
Location: Behind you!
Registered: 2008-03-15
Posts: 1055
Reputation: 26
Friendster

Re: Multiply Help Thread (Post your question here!)

i followed jss linker tutorial.. and nothing happened,, i dunno.. is there any codes for hiding boxes? like the userinfo or the contacts box?




#99  2008-04-16 04:46:44

LiEzL
» FriendsterNewbie
Location: zc
Registered: 2007-04-15
Posts: 95
Last visit: 2008-11-17
Reputation: ~

Re: Multiply Help Thread (Post your question here!)

help!! whats the link for the "Unhide" box?? i mean how can i restore the boxes that i previously hide?? i already tried settings then My Site but the "Unhide" link is gone.. help...:(


its ok now.. :)

Last edited by LiEzL (2008-04-16 05:48:05)

#100  2008-04-17 06:23:43

purpletooth
» FriendsterGeek
purpletooth's display avatar
Friendstertalk University
Location: Behind you!
Registered: 2008-03-15
Posts: 1055
Reputation: 26
Friendster

Re: Multiply Help Thread (Post your question here!)

LiEzL wrote:

help!! whats the link for the "Unhide" box?? i mean how can i restore the boxes that i previously hide?? i already tried settings then My Site but the "Unhide" link is gone.. help...:(


its ok now.. :)

try clicking customize my size,, you can the the boxes you unhide under the custom css




  • Multiply
  •  » Multiply Help Thread (Post your question here!)

Search Friendstertalk

Moderated by Ephemeral, blurrycloud, dale

Board footer

FriendsterTalk is not affiliated with Friendster.com
Copyright © 2002–2008 PunBB

[ 28 queries - 0.514 second ]

Pay Per Click Ads by pay per click advertising by Kontera

FriendsterTalk.com x

Welcome to FriendsterTalk! You'll need to login in order to fully use all the features and view all the sections of this site.

Please register if you're not yet a member. =)